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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
| {
| "metadata": {
| "version": 4.5,
| "type": "Object",
| "generator": "Object3D.toJSON"
| },
| "geometries": [
| {
| "uuid": "BD58CFF2-3DB1-4C60-B386-D941DE03566E",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-1306.61865234375,818.955078125,-1754.5272216796875,-1287.467529296875,835.0247802734375,-1754.5272216796875,-1283.1263427734375,827.505615234375,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1283.1263427734375,827.505615234375,-1754.5272216796875,-1281.61865234375,818.955078125,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1302.2774658203125,843.5753173828125,-1754.5272216796875,-1294.11865234375,840.6057739257812,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1294.11865234375,840.6057739257812,-1754.5272216796875,-1287.467529296875,835.0247802734375,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1319.11865234375,840.6057739257812,-1754.5272216796875,-1310.9598388671875,843.5753173828125,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1310.9598388671875,843.5753173828125,-1754.5272216796875,-1302.2774658203125,843.5753173828125,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1330.1109619140625,827.505615234375,-1754.5272216796875,-1325.769775390625,835.0247802734375,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1325.769775390625,835.0247802734375,-1754.5272216796875,-1319.11865234375,840.6057739257812,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1330.1109619140625,810.4047241210938,-1754.5272216796875,-1331.61865234375,818.955078125,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1331.61865234375,818.955078125,-1754.5272216796875,-1330.1109619140625,827.505615234375,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1319.11865234375,797.3045043945312,-1754.5272216796875,-1325.769775390625,802.8853759765625,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1325.769775390625,802.8853759765625,-1754.5272216796875,-1330.1109619140625,810.4047241210938,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1302.2774658203125,794.3350219726562,-1754.5272216796875,-1310.9598388671875,794.3350219726562,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1310.9598388671875,794.3350219726562,-1754.5272216796875,-1319.11865234375,797.3045043945312,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1287.467529296875,802.8853759765625,-1754.5272216796875,-1294.11865234375,797.3045043945312,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1294.11865234375,797.3045043945312,-1754.5272216796875,-1302.2774658203125,794.3350219726562,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1281.61865234375,818.955078125,-1754.5272216796875,-1283.1263427734375,810.4046020507812,-1754.5272216796875,-1306.61865234375,818.955078125,-1754.5272216796875,-1283.1263427734375,810.4046020507812,-1754.5272216796875,-1287.467529296875,802.8853759765625,-1754.5272216796875,-1281.61865234375,818.955078125,-1754.5272216796875,-1283.1263427734375,827.505615234375,-1754.5272216796875,-1283.1263427734375,827.505615234375,-1486.895263671875,-1281.61865234375,818.955078125,-1754.5272216796875,-1283.1263427734375,827.505615234375,-1486.895263671875,-1281.61865234375,818.955078125,-1486.895263671875,-1283.1263427734375,827.505615234375,-1754.5272216796875,-1287.467529296875,835.0247802734375,-1754.5272216796875,-1287.467529296875,835.0247802734375,-1486.895263671875,-1283.1263427734375,827.505615234375,-1754.5272216796875,-1287.467529296875,835.0247802734375,-1486.895263671875,-1283.1263427734375,827.505615234375,-1486.895263671875,-1287.467529296875,835.0247802734375,-1754.5272216796875,-1294.11865234375,840.6057739257812,-1754.5272216796875,-1294.11865234375,840.605712890625,-1486.895263671875,-1287.467529296875,835.0247802734375,-1754.5272216796875,-1294.11865234375,840.605712890625,-1486.895263671875,-1287.467529296875,835.0247802734375,-1486.895263671875,-1294.11865234375,840.6057739257812,-1754.5272216796875,-1302.2774658203125,843.5753173828125,-1754.5272216796875,-1302.2774658203125,843.5753173828125,-1486.895263671875,-1294.11865234375,840.6057739257812,-1754.5272216796875,-1302.2774658203125,843.5753173828125,-1486.895263671875,-1294.11865234375,840.605712890625,-1486.895263671875,-1302.2774658203125,843.5753173828125,-1754.5272216796875,-1310.9598388671875,843.5753173828125,-1754.5272216796875,-1310.9598388671875,843.5753173828125,-1486.895263671875,-1302.2774658203125,843.5753173828125,-1754.5272216796875,-1310.9598388671875,843.5753173828125,-1486.895263671875,-1302.2774658203125,843.5753173828125,-1486.895263671875,-1310.9598388671875,843.5753173828125,-1754.5272216796875,-1319.11865234375,840.6057739257812,-1754.5272216796875,-1319.11865234375,840.605712890625,-1486.895263671875,-1310.9598388671875,843.5753173828125,-1754.5272216796875,-1319.11865234375,840.605712890625,-1486.895263671875,-1310.9598388671875,843.5753173828125,-1486.895263671875,-1319.11865234375,840.6057739257812,-1754.5272216796875,-1325.769775390625,835.0247802734375,-1754.5272216796875,-1325.769775390625,835.0247802734375,-1486.895263671875,-1319.11865234375,840.6057739257812,-1754.5272216796875,-1325.769775390625,835.0247802734375,-1486.895263671875,-1319.11865234375,840.605712890625,-1486.895263671875,-1325.769775390625,835.0247802734375,-1754.5272216796875,-1330.1109619140625,827.505615234375,-1754.5272216796875,-1330.1109619140625,827.505615234375,-1486.895263671875,-1325.769775390625,835.0247802734375,-1754.5272216796875,-1330.1109619140625,827.505615234375,-1486.895263671875,-1325.769775390625,835.0247802734375,-1486.895263671875,-1330.1109619140625,827.505615234375,-1754.5272216796875,-1331.61865234375,818.955078125,-1754.5272216796875,-1331.61865234375,818.955078125,-1486.895263671875,-1330.1109619140625,827.505615234375,-1754.5272216796875,-1331.61865234375,818.955078125,-1486.895263671875,-1330.1109619140625,827.505615234375,-1486.895263671875,-1331.61865234375,818.955078125,-1754.5272216796875,-1330.1109619140625,810.4047241210938,-1754.5272216796875,-1330.1109619140625,810.4046020507812,-1486.895263671875,-1331.61865234375,818.955078125,-1754.5272216796875,-1330.1109619140625,810.4046020507812,-1486.895263671875,-1331.61865234375,818.955078125,-1486.895263671875,-1330.1109619140625,810.4047241210938,-1754.5272216796875,-1325.769775390625,802.8853759765625,-1754.5272216796875,-1325.769775390625,802.8853759765625,-1486.895263671875,-1330.1109619140625,810.4047241210938,-1754.5272216796875,-1325.769775390625,802.8853759765625,-1486.895263671875,-1330.1109619140625,810.4046020507812,-1486.895263671875,-1325.769775390625,802.8853759765625,-1754.5272216796875,-1319.11865234375,797.3045043945312,-1754.5272216796875,-1319.11865234375,797.3043823242188,-1486.895263671875,-1325.769775390625,802.8853759765625,-1754.5272216796875,-1319.11865234375,797.3043823242188,-1486.895263671875,-1325.769775390625,802.8853759765625,-1486.895263671875,-1319.11865234375,797.3045043945312,-1754.5272216796875,-1310.9598388671875,794.3350219726562,-1754.5272216796875,-1310.9598388671875,794.3348999023438,-1486.895263671875,-1319.11865234375,797.3045043945312,-1754.5272216796875,-1310.9598388671875,794.3348999023438,-1486.895263671875,-1319.11865234375,797.3043823242188,-1486.895263671875,-1310.9598388671875,794.3350219726562,-1754.5272216796875,-1302.2774658203125,794.3350219726562,-1754.5272216796875,-1302.2774658203125,794.3348999023438,-1486.895263671875,-1310.9598388671875,794.3350219726562,-1754.5272216796875,-1302.2774658203125,794.3348999023438,-1486.895263671875,-1310.9598388671875,794.3348999023438,-1486.895263671875,-1302.2774658203125,794.3350219726562,-1754.5272216796875,-1294.11865234375,797.3045043945312,-1754.5272216796875,-1294.11865234375,797.3043823242188,-1486.895263671875,-1302.2774658203125,794.3350219726562,-1754.5272216796875,-1294.11865234375,797.3043823242188,-1486.895263671875,-1302.2774658203125,794.3348999023438,-1486.895263671875,-1294.11865234375,797.3045043945312,-1754.5272216796875,-1287.467529296875,802.8853759765625,-1754.5272216796875,-1287.467529296875,802.8853759765625,-1486.895263671875,-1294.11865234375,797.3045043945312,-1754.5272216796875,-1287.467529296875,802.8853759765625,-1486.895263671875,-1294.11865234375,797.3043823242188,-1486.895263671875,-1287.467529296875,802.8853759765625,-1754.5272216796875,-1283.1263427734375,810.4046020507812,-1754.5272216796875,-1283.1263427734375,810.4046020507812,-1486.895263671875,-1287.467529296875,802.8853759765625,-1754.5272216796875,-1283.1263427734375,810.4046020507812,-1486.895263671875,-1287.467529296875,802.8853759765625,-1486.895263671875,-1283.1263427734375,810.4046020507812,-1754.5272216796875,-1281.61865234375,818.955078125,-1754.5272216796875,-1281.61865234375,818.955078125,-1486.895263671875,-1283.1263427734375,810.4046020507812,-1754.5272216796875,-1281.61865234375,818.955078125,-1486.895263671875,-1283.1263427734375,810.4046020507812,-1486.895263671875,-1281.61865234375,818.955078125,-1486.895263671875,-1283.1263427734375,827.505615234375,-1486.895263671875,-1283.1263427734375,827.505615234375,-1219.263427734375,-1281.61865234375,818.955078125,-1486.895263671875,-1283.1263427734375,827.505615234375,-1219.263427734375,-1281.61865234375,818.955078125,-1219.263427734375,-1283.1263427734375,827.505615234375,-1486.895263671875,-1287.467529296875,835.0247802734375,-1486.895263671875,-1287.467529296875,835.0247192382812,-1219.263427734375,-1283.1263427734375,827.505615234375,-1486.895263671875,-1287.467529296875,835.0247192382812,-1219.263427734375,-1283.1263427734375,827.505615234375,-1219.263427734375,-1287.467529296875,835.0247802734375,-1486.895263671875,-1294.11865234375,840.605712890625,-1486.895263671875,-1294.11865234375,840.605712890625,-1219.263427734375,-1287.467529296875,835.0247802734375,-1486.895263671875,-1294.11865234375,840.605712890625,-1219.263427734375,-1287.467529296875,835.0247192382812,-1219.263427734375,-1294.11865234375,840.605712890625,-1486.895263671875,-1302.2774658203125,843.5753173828125,-1486.895263671875,-1302.2774658203125,843.5753173828125,-1219.263427734375,-1294.11865234375,840.605712890625,-1486.895263671875,-1302.2774658203125,843.5753173828125,-1219.263427734375,-1294.11865234375,840.605712890625,-1219.263427734375,-1302.2774658203125,843.5753173828125,-1486.895263671875,-1310.9598388671875,843.5753173828125,-1486.895263671875,-1310.9598388671875,843.5753173828125,-1219.263427734375,-1302.2774658203125,843.5753173828125,-1486.895263671875,-1310.9598388671875,843.5753173828125,-1219.263427734375,-1302.2774658203125,843.5753173828125,-1219.263427734375,-1310.9598388671875,843.5753173828125,-1486.895263671875,-1319.11865234375,840.605712890625,-1486.895263671875,-1319.11865234375,840.605712890625,-1219.263427734375,-1310.9598388671875,843.5753173828125,-1486.895263671875,-1319.11865234375,840.605712890625,-1219.263427734375,-1310.9598388671875,843.5753173828125,-1219.263427734375,-1319.11865234375,840.605712890625,-1486.895263671875,-1325.769775390625,835.0247802734375,-1486.895263671875,-1325.769775390625,835.0247192382812,-1219.263427734375,-1319.11865234375,840.605712890625,-1486.895263671875,-1325.769775390625,835.0247192382812,-1219.263427734375,-1319.11865234375,840.605712890625,-1219.263427734375,-1325.769775390625,835.0247802734375,-1486.895263671875,-1330.1109619140625,827.505615234375,-1486.895263671875,-1330.1109619140625,827.505615234375,-1219.263427734375,-1325.769775390625,835.0247802734375,-1486.895263671875,-1330.1109619140625,827.505615234375,-1219.263427734375,-1325.769775390625,835.0247192382812,-1219.263427734375,-1330.1109619140625,827.505615234375,-1486.895263671875,-1331.61865234375,818.955078125,-1486.895263671875,-1331.61865234375,818.955078125,-1219.263427734375,-1330.1109619140625,827.505615234375,-1486.895263671875,-1331.61865234375,818.955078125,-1219.263427734375,-1330.1109619140625,827.505615234375,-1219.263427734375,-1331.61865234375,818.955078125,-1486.895263671875,-1330.1109619140625,810.4046020507812,-1486.895263671875,-1330.1109619140625,810.4044799804688,-1219.263427734375,-1331.61865234375,818.955078125,-1486.895263671875,-1330.1109619140625,810.4044799804688,-1219.263427734375,-1331.61865234375,818.955078125,-1219.263427734375,-1330.1109619140625,810.4046020507812,-1486.895263671875,-1325.769775390625,802.8853759765625,-1486.895263671875,-1325.769775390625,802.8853759765625,-1219.263427734375,-1330.1109619140625,810.4046020507812,-1486.895263671875,-1325.769775390625,802.8853759765625,-1219.263427734375,-1330.1109619140625,810.4044799804688,-1219.263427734375,-1325.769775390625,802.8853759765625,-1486.895263671875,-1319.11865234375,797.3043823242188,-1486.895263671875,-1319.11865234375,797.3043823242188,-1219.263427734375,-1325.769775390625,802.8853759765625,-1486.895263671875,-1319.11865234375,797.3043823242188,-1219.263427734375,-1325.769775390625,802.8853759765625,-1219.263427734375,-1319.11865234375,797.3043823242188,-1486.895263671875,-1310.9598388671875,794.3348999023438,-1486.895263671875,-1310.9598388671875,794.3347778320312,-1219.263427734375,-1319.11865234375,797.3043823242188,-1486.895263671875,-1310.9598388671875,794.3347778320312,-1219.263427734375,-1319.11865234375,797.3043823242188,-1219.263427734375,-1310.9598388671875,794.3348999023438,-1486.895263671875,-1302.2774658203125,794.3348999023438,-1486.895263671875,-1302.2774658203125,794.3347778320312,-1219.263427734375,-1310.9598388671875,794.3348999023438,-1486.895263671875,-1302.2774658203125,794.3347778320312,-1219.263427734375,-1310.9598388671875,794.3347778320312,-1219.263427734375,-1302.2774658203125,794.3348999023438,-1486.895263671875,-1294.11865234375,797.3043823242188,-1486.895263671875,-1294.11865234375,797.3043823242188,-1219.263427734375,-1302.2774658203125,794.3348999023438,-1486.895263671875,-1294.11865234375,797.3043823242188,-1219.263427734375,-1302.2774658203125,794.3347778320312,-1219.263427734375,-1294.11865234375,797.3043823242188,-1486.895263671875,-1287.467529296875,802.8853759765625,-1486.895263671875,-1287.467529296875,802.8853759765625,-1219.263427734375,-1294.11865234375,797.3043823242188,-1486.895263671875,-1287.467529296875,802.8853759765625,-1219.263427734375,-1294.11865234375,797.3043823242188,-1219.263427734375,-1287.467529296875,802.8853759765625,-1486.895263671875,-1283.1263427734375,810.4046020507812,-1486.895263671875,-1283.1263427734375,810.4044799804688,-1219.263427734375,-1287.467529296875,802.8853759765625,-1486.895263671875,-1283.1263427734375,810.4044799804688,-1219.263427734375,-1287.467529296875,802.8853759765625,-1219.263427734375,-1283.1263427734375,810.4046020507812,-1486.895263671875,-1281.61865234375,818.955078125,-1486.895263671875,-1281.61865234375,818.955078125,-1219.263427734375,-1283.1263427734375,810.4046020507812,-1486.895263671875,-1281.61865234375,818.955078125,-1219.263427734375,-1283.1263427734375,810.4044799804688,-1219.263427734375,-1281.61865234375,818.955078125,-1219.263427734375,-1283.1263427734375,827.505615234375,-1219.263427734375,-1283.1263427734375,827.5054931640625,-951.6314697265625,-1281.61865234375,818.955078125,-1219.263427734375,-1283.1263427734375,827.5054931640625,-951.6314697265625,-1281.61865234375,818.9550170898438,-951.6314697265625,-1283.1263427734375,827.505615234375,-1219.263427734375,-1287.467529296875,835.0247192382812,-1219.263427734375,-1287.467529296875,835.0247192382812,-951.6314697265625,-1283.1263427734375,827.505615234375,-1219.263427734375,-1287.467529296875,835.0247192382812,-951.6314697265625,-1283.1263427734375,827.5054931640625,-951.6314697265625,-1287.467529296875,835.0247192382812,-1219.263427734375,-1294.11865234375,840.605712890625,-1219.263427734375,-1294.11865234375,840.605712890625,-951.6314697265625,-1287.467529296875,835.0247192382812,-1219.263427734375,-1294.11865234375,840.605712890625,-951.6314697265625,-1287.467529296875,835.0247192382812,-951.6314697265625,-1294.11865234375,840.605712890625,-1219.263427734375,-1302.2774658203125,843.5753173828125,-1219.263427734375,-1302.2774658203125,843.5751953125,-951.6314697265625,-1294.11865234375,840.605712890625,-1219.263427734375,-1302.2774658203125,843.5751953125,-951.6314697265625,-1294.11865234375,840.605712890625,-951.6314697265625,-1302.2774658203125,843.5753173828125,-1219.263427734375,-1310.9598388671875,843.5753173828125,-1219.263427734375,-1310.9598388671875,843.5751953125,-951.6314697265625,-1302.2774658203125,843.5753173828125,-1219.263427734375,-1310.9598388671875,843.5751953125,-951.6314697265625,-1302.2774658203125,843.5751953125,-951.6314697265625,-1310.9598388671875,843.5753173828125,-1219.263427734375,-1319.11865234375,840.605712890625,-1219.263427734375,-1319.11865234375,840.605712890625,-951.6314697265625,-1310.9598388671875,843.5753173828125,-1219.263427734375,-1319.11865234375,840.605712890625,-951.6314697265625,-1310.9598388671875,843.5751953125,-951.6314697265625,-1319.11865234375,840.605712890625,-1219.263427734375,-1325.769775390625,835.0247192382812,-1219.263427734375,-1325.769775390625,835.0247192382812,-951.6314697265625,-1319.11865234375,840.605712890625,-1219.263427734375,-1325.769775390625,835.0247192382812,-951.6314697265625,-1319.11865234375,840.605712890625,-951.6314697265625,-1325.769775390625,835.0247192382812,-1219.263427734375,-1330.1109619140625,827.505615234375,-1219.263427734375,-1330.1109619140625,827.5054931640625,-951.6314697265625,-1325.769775390625,835.0247192382812,-1219.263427734375,-1330.1109619140625,827.5054931640625,-951.6314697265625,-1325.769775390625,835.0247192382812,-951.6314697265625,-1330.1109619140625,827.505615234375,-1219.263427734375,-1331.61865234375,818.955078125,-1219.263427734375,-1331.61865234375,818.9550170898438,-951.6314697265625,-1330.1109619140625,827.505615234375,-1219.263427734375,-1331.61865234375,818.9550170898438,-951.6314697265625,-1330.1109619140625,827.5054931640625,-951.6314697265625,-1331.61865234375,818.955078125,-1219.263427734375,-1330.1109619140625,810.4044799804688,-1219.263427734375,-1330.1109619140625,810.4044799804688,-951.6314697265625,-1331.61865234375,818.955078125,-1219.263427734375,-1330.1109619140625,810.4044799804688,-951.6314697265625,-1331.61865234375,818.9550170898438,-951.6314697265625,-1330.1109619140625,810.4044799804688,-1219.263427734375,-1325.769775390625,802.8853759765625,-1219.263427734375,-1325.769775390625,802.8853149414062,-951.6314697265625,-1330.1109619140625,810.4044799804688,-1219.263427734375,-1325.769775390625,802.8853149414062,-951.6314697265625,-1330.1109619140625,810.4044799804688,-951.6314697265625,-1325.769775390625,802.8853759765625,-1219.263427734375,-1319.11865234375,797.3043823242188,-1219.263427734375,-1319.11865234375,797.3043823242188,-951.6314697265625,-1325.769775390625,802.8853759765625,-1219.263427734375,-1319.11865234375,797.3043823242188,-951.6314697265625,-1325.769775390625,802.8853149414062,-951.6314697265625,-1319.11865234375,797.3043823242188,-1219.263427734375,-1310.9598388671875,794.3347778320312,-1219.263427734375,-1310.9598388671875,794.3347778320312,-951.6314697265625,-1319.11865234375,797.3043823242188,-1219.263427734375,-1310.9598388671875,794.3347778320312,-951.6314697265625,-1319.11865234375,797.3043823242188,-951.6314697265625,-1310.9598388671875,794.3347778320312,-1219.263427734375,-1302.2774658203125,794.3347778320312,-1219.263427734375,-1302.2774658203125,794.3347778320312,-951.6314697265625,-1310.9598388671875,794.3347778320312,-1219.263427734375,-1302.2774658203125,794.3347778320312,-951.6314697265625,-1310.9598388671875,794.3347778320312,-951.6314697265625,-1302.2774658203125,794.3347778320312,-1219.263427734375,-1294.11865234375,797.3043823242188,-1219.263427734375,-1294.11865234375,797.3043823242188,-951.6314697265625,-1302.2774658203125,794.3347778320312,-1219.263427734375,-1294.11865234375,797.3043823242188,-951.6314697265625,-1302.2774658203125,794.3347778320312,-951.6314697265625,-1294.11865234375,797.3043823242188,-1219.263427734375,-1287.467529296875,802.8853759765625,-1219.263427734375,-1287.467529296875,802.8853149414062,-951.6314697265625,-1294.11865234375,797.3043823242188,-1219.263427734375,-1287.467529296875,802.8853149414062,-951.6314697265625,-1294.11865234375,797.3043823242188,-951.6314697265625,-1287.467529296875,802.8853759765625,-1219.263427734375,-1283.1263427734375,810.4044799804688,-1219.263427734375,-1283.1263427734375,810.4044799804688,-951.6314697265625,-1287.467529296875,802.8853759765625,-1219.263427734375,-1283.1263427734375,810.4044799804688,-951.6314697265625,-1287.467529296875,802.8853149414062,-951.6314697265625,-1283.1263427734375,810.4044799804688,-1219.263427734375,-1281.61865234375,818.955078125,-1219.263427734375,-1281.61865234375,818.9550170898438,-951.6314697265625,-1283.1263427734375,810.4044799804688,-1219.263427734375,-1281.61865234375,818.9550170898438,-951.6314697265625,-1283.1263427734375,810.4044799804688,-951.6314697265625,-1281.61865234375,818.9550170898438,-951.6314697265625,-1283.1263427734375,827.5054931640625,-951.6314697265625,-1283.1263427734375,827.5054931640625,-683.9995727539062,-1281.61865234375,818.9550170898438,-951.6314697265625,-1283.1263427734375,827.5054931640625,-683.9995727539062,-1281.61865234375,818.9550170898438,-683.9995727539062,-1283.1263427734375,827.5054931640625,-951.6314697265625,-1287.467529296875,835.0247192382812,-951.6314697265625,-1287.467529296875,835.0247192382812,-683.9995727539062,-1283.1263427734375,827.5054931640625,-951.6314697265625,-1287.467529296875,835.0247192382812,-683.9995727539062,-1283.1263427734375,827.5054931640625,-683.9995727539062,-1287.467529296875,835.0247192382812,-951.6314697265625,-1294.11865234375,840.605712890625,-951.6314697265625,-1294.11865234375,840.6055908203125,-683.9995727539062,-1287.467529296875,835.0247192382812,-951.6314697265625,-1294.11865234375,840.6055908203125,-683.9995727539062,-1287.467529296875,835.0247192382812,-683.9995727539062,-1294.11865234375,840.605712890625,-951.6314697265625,-1302.2774658203125,843.5751953125,-951.6314697265625,-1302.2774658203125,843.5750732421875,-683.9995727539062,-1294.11865234375,840.605712890625,-951.6314697265625,-1302.2774658203125,843.5750732421875,-683.9995727539062,-1294.11865234375,840.6055908203125,-683.9995727539062,-1302.2774658203125,843.5751953125,-951.6314697265625,-1310.9598388671875,843.5751953125,-951.6314697265625,-1310.9598388671875,843.5750732421875,-683.9995727539062,-1302.2774658203125,843.5751953125,-951.6314697265625,-1310.9598388671875,843.5750732421875,-683.9995727539062,-1302.2774658203125,843.5750732421875,-683.9995727539062,-1310.9598388671875,843.5751953125,-951.6314697265625,-1319.11865234375,840.605712890625,-951.6314697265625,-1319.11865234375,840.6055908203125,-683.9995727539062,-1310.9598388671875,843.5751953125,-951.6314697265625,-1319.11865234375,840.6055908203125,-683.9995727539062,-1310.9598388671875,843.5750732421875,-683.9995727539062,-1319.11865234375,840.605712890625,-951.6314697265625,-1325.769775390625,835.0247192382812,-951.6314697265625,-1325.769775390625,835.0247192382812,-683.9995727539062,-1319.11865234375,840.605712890625,-951.6314697265625,-1325.769775390625,835.0247192382812,-683.9995727539062,-1319.11865234375,840.6055908203125,-683.9995727539062,-1325.769775390625,835.0247192382812,-951.6314697265625,-1330.1109619140625,827.5054931640625,-951.6314697265625,-1330.1109619140625,827.5054931640625,-683.9995727539062,-1325.769775390625,835.0247192382812,-951.6314697265625,-1330.1109619140625,827.5054931640625,-683.9995727539062,-1325.769775390625,835.0247192382812,-683.9995727539062,-1330.1109619140625,827.5054931640625,-951.6314697265625,-1331.61865234375,818.9550170898438,-951.6314697265625,-1331.61865234375,818.9550170898438,-683.9995727539062,-1330.1109619140625,827.5054931640625,-951.6314697265625,-1331.61865234375,818.9550170898438,-683.9995727539062,-1330.1109619140625,827.5054931640625,-683.9995727539062,-1331.61865234375,818.9550170898438,-951.6314697265625,-1330.1109619140625,810.4044799804688,-951.6314697265625,-1330.1109619140625,810.4044799804688,-683.9995727539062,-1331.61865234375,818.9550170898438,-951.6314697265625,-1330.1109619140625,810.4044799804688,-683.9995727539062,-1331.61865234375,818.9550170898438,-683.9995727539062,-1330.1109619140625,810.4044799804688,-951.6314697265625,-1325.769775390625,802.8853149414062,-951.6314697265625,-1325.769775390625,802.8853149414062,-683.9995727539062,-1330.1109619140625,810.4044799804688,-951.6314697265625,-1325.769775390625,802.8853149414062,-683.9995727539062,-1330.1109619140625,810.4044799804688,-683.9995727539062,-1325.769775390625,802.8853149414062,-951.6314697265625,-1319.11865234375,797.3043823242188,-951.6314697265625,-1319.11865234375,797.3043212890625,-683.9995727539062,-1325.769775390625,802.8853149414062,-951.6314697265625,-1319.11865234375,797.3043212890625,-683.9995727539062,-1325.769775390625,802.8853149414062,-683.9995727539062,-1319.11865234375,797.3043823242188,-951.6314697265625,-1310.9598388671875,794.3347778320312,-951.6314697265625,-1310.9598388671875,794.3347778320312,-683.9995727539062,-1319.11865234375,797.3043823242188,-951.6314697265625,-1310.9598388671875,794.3347778320312,-683.9995727539062,-1319.11865234375,797.3043212890625,-683.9995727539062,-1310.9598388671875,794.3347778320312,-951.6314697265625,-1302.2774658203125,794.3347778320312,-951.6314697265625,-1302.2774658203125,794.3347778320312,-683.9995727539062,-1310.9598388671875,794.3347778320312,-951.6314697265625,-1302.2774658203125,794.3347778320312,-683.9995727539062,-1310.9598388671875,794.3347778320312,-683.9995727539062,-1302.2774658203125,794.3347778320312,-951.6314697265625,-1294.11865234375,797.3043823242188,-951.6314697265625,-1294.11865234375,797.3043212890625,-683.9995727539062,-1302.2774658203125,794.3347778320312,-951.6314697265625,-1294.11865234375,797.3043212890625,-683.9995727539062,-1302.2774658203125,794.3347778320312,-683.9995727539062,-1294.11865234375,797.3043823242188,-951.6314697265625,-1287.467529296875,802.8853149414062,-951.6314697265625,-1287.467529296875,802.8853149414062,-683.9995727539062,-1294.11865234375,797.3043823242188,-951.6314697265625,-1287.467529296875,802.8853149414062,-683.9995727539062,-1294.11865234375,797.3043212890625,-683.9995727539062,-1287.467529296875,802.8853149414062,-951.6314697265625,-1283.1263427734375,810.4044799804688,-951.6314697265625,-1283.1263427734375,810.4044189453125,-683.9995727539062,-1287.467529296875,802.8853149414062,-951.6314697265625,-1283.1263427734375,810.4044189453125,-683.9995727539062,-1287.467529296875,802.8853149414062,-683.9995727539062,-1283.1263427734375,810.4044799804688,-951.6314697265625,-1281.61865234375,818.9550170898438,-951.6314697265625,-1281.61865234375,818.9550170898438,-683.9995727539062,-1283.1263427734375,810.4044799804688,-951.6314697265625,-1281.61865234375,818.9550170898438,-683.9995727539062,-1283.1263427734375,810.4044189453125,-683.9995727539062,-1281.61865234375,818.9550170898438,-683.9995727539062,-1283.1263427734375,827.5054931640625,-683.9995727539062,-1283.1263427734375,827.50537109375,-416.3677062988281,-1281.61865234375,818.9550170898438,-683.9995727539062,-1283.1263427734375,827.50537109375,-416.3677062988281,-1281.61865234375,818.9548950195312,-416.3677062988281,-1283.1263427734375,827.5054931640625,-683.9995727539062,-1287.467529296875,835.0247192382812,-683.9995727539062,-1287.467529296875,835.0245971679688,-416.3677062988281,-1283.1263427734375,827.5054931640625,-683.9995727539062,-1287.467529296875,835.0245971679688,-416.3677062988281,-1283.1263427734375,827.50537109375,-416.3677062988281,-1287.467529296875,835.0247192382812,-683.9995727539062,-1294.11865234375,840.6055908203125,-683.9995727539062,-1294.11865234375,840.6055297851562,-416.3677062988281,-1287.467529296875,835.0247192382812,-683.9995727539062,-1294.11865234375,840.6055297851562,-416.3677062988281,-1287.467529296875,835.0245971679688,-416.3677062988281,-1294.11865234375,840.6055908203125,-683.9995727539062,-1302.2774658203125,843.5750732421875,-683.9995727539062,-1302.2774658203125,843.5750732421875,-416.3677062988281,-1294.11865234375,840.6055908203125,-683.9995727539062,-1302.2774658203125,843.5750732421875,-416.3677062988281,-1294.11865234375,840.6055297851562,-416.3677062988281,-1302.2774658203125,843.5750732421875,-683.9995727539062,-1310.9598388671875,843.5750732421875,-683.9995727539062,-1310.9598388671875,843.5750732421875,-416.3677062988281,-1302.2774658203125,843.5750732421875,-683.9995727539062,-1310.9598388671875,843.5750732421875,-416.3677062988281,-1302.2774658203125,843.5750732421875,-416.3677062988281,-1310.9598388671875,843.5750732421875,-683.9995727539062,-1319.11865234375,840.6055908203125,-683.9995727539062,-1319.11865234375,840.6055297851562,-416.3677062988281,-1310.9598388671875,843.5750732421875,-683.9995727539062,-1319.11865234375,840.6055297851562,-416.3677062988281,-1310.9598388671875,843.5750732421875,-416.3677062988281,-1319.11865234375,840.6055908203125,-683.9995727539062,-1325.769775390625,835.0247192382812,-683.9995727539062,-1325.769775390625,835.0245971679688,-416.3677062988281,-1319.11865234375,840.6055908203125,-683.9995727539062,-1325.769775390625,835.0245971679688,-416.3677062988281,-1319.11865234375,840.6055297851562,-416.3677062988281,-1325.769775390625,835.0247192382812,-683.9995727539062,-1330.1109619140625,827.5054931640625,-683.9995727539062,-1330.1109619140625,827.50537109375,-416.3677062988281,-1325.769775390625,835.0247192382812,-683.9995727539062,-1330.1109619140625,827.50537109375,-416.3677062988281,-1325.769775390625,835.0245971679688,-416.3677062988281,-1330.1109619140625,827.5054931640625,-683.9995727539062,-1331.61865234375,818.9550170898438,-683.9995727539062,-1331.61865234375,818.9548950195312,-416.3677062988281,-1330.1109619140625,827.5054931640625,-683.9995727539062,-1331.61865234375,818.9548950195312,-416.3677062988281,-1330.1109619140625,827.50537109375,-416.3677062988281,-1331.61865234375,818.9550170898438,-683.9995727539062,-1330.1109619140625,810.4044799804688,-683.9995727539062,-1330.1109619140625,810.4044189453125,-416.3677062988281,-1331.61865234375,818.9550170898438,-683.9995727539062,-1330.1109619140625,810.4044189453125,-416.3677062988281,-1331.61865234375,818.9548950195312,-416.3677062988281,-1330.1109619140625,810.4044799804688,-683.9995727539062,-1325.769775390625,802.8853149414062,-683.9995727539062,-1325.769775390625,802.8853149414062,-416.3677062988281,-1330.1109619140625,810.4044799804688,-683.9995727539062,-1325.769775390625,802.8853149414062,-416.3677062988281,-1330.1109619140625,810.4044189453125,-416.3677062988281,-1325.769775390625,802.8853149414062,-683.9995727539062,-1319.11865234375,797.3043212890625,-683.9995727539062,-1319.11865234375,797.3043212890625,-416.3677062988281,-1325.769775390625,802.8853149414062,-683.9995727539062,-1319.11865234375,797.3043212890625,-416.3677062988281,-1325.769775390625,802.8853149414062,-416.3677062988281,-1319.11865234375,797.3043212890625,-683.9995727539062,-1310.9598388671875,794.3347778320312,-683.9995727539062,-1310.9598388671875,794.334716796875,-416.3677062988281,-1319.11865234375,797.3043212890625,-683.9995727539062,-1310.9598388671875,794.334716796875,-416.3677062988281,-1319.11865234375,797.3043212890625,-416.3677062988281,-1310.9598388671875,794.3347778320312,-683.9995727539062,-1302.2774658203125,794.3347778320312,-683.9995727539062,-1302.2774658203125,794.334716796875,-416.3677062988281,-1310.9598388671875,794.3347778320312,-683.9995727539062,-1302.2774658203125,794.334716796875,-416.3677062988281,-1310.9598388671875,794.334716796875,-416.3677062988281,-1302.2774658203125,794.3347778320312,-683.9995727539062,-1294.11865234375,797.3043212890625,-683.9995727539062,-1294.11865234375,797.3043212890625,-416.3677062988281,-1302.2774658203125,794.3347778320312,-683.9995727539062,-1294.11865234375,797.3043212890625,-416.3677062988281,-1302.2774658203125,794.334716796875,-416.3677062988281,-1294.11865234375,797.3043212890625,-683.9995727539062,-1287.467529296875,802.8853149414062,-683.9995727539062,-1287.467529296875,802.8851928710938,-416.3677062988281,-1294.11865234375,797.3043212890625,-683.9995727539062,-1287.467529296875,802.8851928710938,-416.3677062988281,-1294.11865234375,797.3043212890625,-416.3677062988281,-1287.467529296875,802.8853149414062,-683.9995727539062,-1283.1263427734375,810.4044189453125,-683.9995727539062,-1283.1263427734375,810.4044189453125,-416.3677062988281,-1287.467529296875,802.8853149414062,-683.9995727539062,-1283.1263427734375,810.4044189453125,-416.3677062988281,-1287.467529296875,802.8851928710938,-416.3677062988281,-1283.1263427734375,810.4044189453125,-683.9995727539062,-1281.61865234375,818.9550170898438,-683.9995727539062,-1281.61865234375,818.9548950195312,-416.3677062988281,-1283.1263427734375,810.4044189453125,-683.9995727539062,-1281.61865234375,818.9548950195312,-416.3677062988281,-1283.1263427734375,810.4044189453125,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1283.1263427734375,810.4044189453125,-416.3677062988281,-1281.61865234375,818.9548950195312,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1281.61865234375,818.9548950195312,-416.3677062988281,-1283.1263427734375,827.50537109375,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1283.1263427734375,827.50537109375,-416.3677062988281,-1287.467529296875,835.0245971679688,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1287.467529296875,835.0245971679688,-416.3677062988281,-1294.11865234375,840.6055297851562,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1294.11865234375,840.6055297851562,-416.3677062988281,-1302.2774658203125,843.5750732421875,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1302.2774658203125,843.5750732421875,-416.3677062988281,-1310.9598388671875,843.5750732421875,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1310.9598388671875,843.5750732421875,-416.3677062988281,-1319.11865234375,840.6055297851562,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1319.11865234375,840.6055297851562,-416.3677062988281,-1325.769775390625,835.0245971679688,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1325.769775390625,835.0245971679688,-416.3677062988281,-1330.1109619140625,827.50537109375,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1330.1109619140625,827.50537109375,-416.3677062988281,-1331.61865234375,818.9548950195312,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1331.61865234375,818.9548950195312,-416.3677062988281,-1330.1109619140625,810.4044189453125,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1330.1109619140625,810.4044189453125,-416.3677062988281,-1325.769775390625,802.8853149414062,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1325.769775390625,802.8853149414062,-416.3677062988281,-1319.11865234375,797.3043212890625,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1319.11865234375,797.3043212890625,-416.3677062988281,-1310.9598388671875,794.334716796875,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1310.9598388671875,794.334716796875,-416.3677062988281,-1302.2774658203125,794.334716796875,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1302.2774658203125,794.334716796875,-416.3677062988281,-1294.11865234375,797.3043212890625,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1294.11865234375,797.3043212890625,-416.3677062988281,-1287.467529296875,802.8851928710938,-416.3677062988281,-1306.61865234375,818.9548950195312,-416.3677062988281,-1287.467529296875,802.8851928710938,-416.3677062988281,-1283.1263427734375,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-1306.61865234375,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466581371704
| }
| }
| },
| {
| "uuid": "20DF0A70-09B9-4B90-BD93-6A8D2D5BE1E6",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-1206.61865234375,818.955078125,-1754.5272216796875,-1187.467529296875,835.0247802734375,-1754.5272216796875,-1183.1263427734375,827.505615234375,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1183.1263427734375,827.505615234375,-1754.5272216796875,-1181.61865234375,818.955078125,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1202.2774658203125,843.5753173828125,-1754.5272216796875,-1194.11865234375,840.6057739257812,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1194.11865234375,840.6057739257812,-1754.5272216796875,-1187.467529296875,835.0247802734375,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1219.11865234375,840.6057739257812,-1754.5272216796875,-1210.9598388671875,843.5753173828125,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1210.9598388671875,843.5753173828125,-1754.5272216796875,-1202.2774658203125,843.5753173828125,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1230.1109619140625,827.505615234375,-1754.5272216796875,-1225.769775390625,835.0247802734375,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1225.769775390625,835.0247802734375,-1754.5272216796875,-1219.11865234375,840.6057739257812,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1230.1109619140625,810.4047241210938,-1754.5272216796875,-1231.61865234375,818.955078125,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1231.61865234375,818.955078125,-1754.5272216796875,-1230.1109619140625,827.505615234375,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1219.11865234375,797.3045043945312,-1754.5272216796875,-1225.769775390625,802.8853759765625,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1225.769775390625,802.8853759765625,-1754.5272216796875,-1230.1109619140625,810.4047241210938,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1202.2774658203125,794.3350219726562,-1754.5272216796875,-1210.9598388671875,794.3350219726562,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1210.9598388671875,794.3350219726562,-1754.5272216796875,-1219.11865234375,797.3045043945312,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1187.467529296875,802.8853759765625,-1754.5272216796875,-1194.11865234375,797.3045043945312,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1194.11865234375,797.3045043945312,-1754.5272216796875,-1202.2774658203125,794.3350219726562,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1181.61865234375,818.955078125,-1754.5272216796875,-1183.1263427734375,810.4046020507812,-1754.5272216796875,-1206.61865234375,818.955078125,-1754.5272216796875,-1183.1263427734375,810.4046020507812,-1754.5272216796875,-1187.467529296875,802.8853759765625,-1754.5272216796875,-1181.61865234375,818.955078125,-1754.5272216796875,-1183.1263427734375,827.505615234375,-1754.5272216796875,-1183.1263427734375,827.505615234375,-1486.895263671875,-1181.61865234375,818.955078125,-1754.5272216796875,-1183.1263427734375,827.505615234375,-1486.895263671875,-1181.61865234375,818.955078125,-1486.895263671875,-1183.1263427734375,827.505615234375,-1754.5272216796875,-1187.467529296875,835.0247802734375,-1754.5272216796875,-1187.467529296875,835.0247802734375,-1486.895263671875,-1183.1263427734375,827.505615234375,-1754.5272216796875,-1187.467529296875,835.0247802734375,-1486.895263671875,-1183.1263427734375,827.505615234375,-1486.895263671875,-1187.467529296875,835.0247802734375,-1754.5272216796875,-1194.11865234375,840.6057739257812,-1754.5272216796875,-1194.11865234375,840.605712890625,-1486.895263671875,-1187.467529296875,835.0247802734375,-1754.5272216796875,-1194.11865234375,840.605712890625,-1486.895263671875,-1187.467529296875,835.0247802734375,-1486.895263671875,-1194.11865234375,840.6057739257812,-1754.5272216796875,-1202.2774658203125,843.5753173828125,-1754.5272216796875,-1202.2774658203125,843.5753173828125,-1486.895263671875,-1194.11865234375,840.6057739257812,-1754.5272216796875,-1202.2774658203125,843.5753173828125,-1486.895263671875,-1194.11865234375,840.605712890625,-1486.895263671875,-1202.2774658203125,843.5753173828125,-1754.5272216796875,-1210.9598388671875,843.5753173828125,-1754.5272216796875,-1210.9598388671875,843.5753173828125,-1486.895263671875,-1202.2774658203125,843.5753173828125,-1754.5272216796875,-1210.9598388671875,843.5753173828125,-1486.895263671875,-1202.2774658203125,843.5753173828125,-1486.895263671875,-1210.9598388671875,843.5753173828125,-1754.5272216796875,-1219.11865234375,840.6057739257812,-1754.5272216796875,-1219.11865234375,840.605712890625,-1486.895263671875,-1210.9598388671875,843.5753173828125,-1754.5272216796875,-1219.11865234375,840.605712890625,-1486.895263671875,-1210.9598388671875,843.5753173828125,-1486.895263671875,-1219.11865234375,840.6057739257812,-1754.5272216796875,-1225.769775390625,835.0247802734375,-1754.5272216796875,-1225.769775390625,835.0247802734375,-1486.895263671875,-1219.11865234375,840.6057739257812,-1754.5272216796875,-1225.769775390625,835.0247802734375,-1486.895263671875,-1219.11865234375,840.605712890625,-1486.895263671875,-1225.769775390625,835.0247802734375,-1754.5272216796875,-1230.1109619140625,827.505615234375,-1754.5272216796875,-1230.1109619140625,827.505615234375,-1486.895263671875,-1225.769775390625,835.0247802734375,-1754.5272216796875,-1230.1109619140625,827.505615234375,-1486.895263671875,-1225.769775390625,835.0247802734375,-1486.895263671875,-1230.1109619140625,827.505615234375,-1754.5272216796875,-1231.61865234375,818.955078125,-1754.5272216796875,-1231.61865234375,818.955078125,-1486.895263671875,-1230.1109619140625,827.505615234375,-1754.5272216796875,-1231.61865234375,818.955078125,-1486.895263671875,-1230.1109619140625,827.505615234375,-1486.895263671875,-1231.61865234375,818.955078125,-1754.5272216796875,-1230.1109619140625,810.4047241210938,-1754.5272216796875,-1230.1109619140625,810.4046020507812,-1486.895263671875,-1231.61865234375,818.955078125,-1754.5272216796875,-1230.1109619140625,810.4046020507812,-1486.895263671875,-1231.61865234375,818.955078125,-1486.895263671875,-1230.1109619140625,810.4047241210938,-1754.5272216796875,-1225.769775390625,802.8853759765625,-1754.5272216796875,-1225.769775390625,802.8853759765625,-1486.895263671875,-1230.1109619140625,810.4047241210938,-1754.5272216796875,-1225.769775390625,802.8853759765625,-1486.895263671875,-1230.1109619140625,810.4046020507812,-1486.895263671875,-1225.769775390625,802.8853759765625,-1754.5272216796875,-1219.11865234375,797.3045043945312,-1754.5272216796875,-1219.11865234375,797.3043823242188,-1486.895263671875,-1225.769775390625,802.8853759765625,-1754.5272216796875,-1219.11865234375,797.3043823242188,-1486.895263671875,-1225.769775390625,802.8853759765625,-1486.895263671875,-1219.11865234375,797.3045043945312,-1754.5272216796875,-1210.9598388671875,794.3350219726562,-1754.5272216796875,-1210.9598388671875,794.3348999023438,-1486.895263671875,-1219.11865234375,797.3045043945312,-1754.5272216796875,-1210.9598388671875,794.3348999023438,-1486.895263671875,-1219.11865234375,797.3043823242188,-1486.895263671875,-1210.9598388671875,794.3350219726562,-1754.5272216796875,-1202.2774658203125,794.3350219726562,-1754.5272216796875,-1202.2774658203125,794.3348999023438,-1486.895263671875,-1210.9598388671875,794.3350219726562,-1754.5272216796875,-1202.2774658203125,794.3348999023438,-1486.895263671875,-1210.9598388671875,794.3348999023438,-1486.895263671875,-1202.2774658203125,794.3350219726562,-1754.5272216796875,-1194.11865234375,797.3045043945312,-1754.5272216796875,-1194.11865234375,797.3043823242188,-1486.895263671875,-1202.2774658203125,794.3350219726562,-1754.5272216796875,-1194.11865234375,797.3043823242188,-1486.895263671875,-1202.2774658203125,794.3348999023438,-1486.895263671875,-1194.11865234375,797.3045043945312,-1754.5272216796875,-1187.467529296875,802.8853759765625,-1754.5272216796875,-1187.467529296875,802.8853759765625,-1486.895263671875,-1194.11865234375,797.3045043945312,-1754.5272216796875,-1187.467529296875,802.8853759765625,-1486.895263671875,-1194.11865234375,797.3043823242188,-1486.895263671875,-1187.467529296875,802.8853759765625,-1754.5272216796875,-1183.1263427734375,810.4046020507812,-1754.5272216796875,-1183.1263427734375,810.4046020507812,-1486.895263671875,-1187.467529296875,802.8853759765625,-1754.5272216796875,-1183.1263427734375,810.4046020507812,-1486.895263671875,-1187.467529296875,802.8853759765625,-1486.895263671875,-1183.1263427734375,810.4046020507812,-1754.5272216796875,-1181.61865234375,818.955078125,-1754.5272216796875,-1181.61865234375,818.955078125,-1486.895263671875,-1183.1263427734375,810.4046020507812,-1754.5272216796875,-1181.61865234375,818.955078125,-1486.895263671875,-1183.1263427734375,810.4046020507812,-1486.895263671875,-1181.61865234375,818.955078125,-1486.895263671875,-1183.1263427734375,827.505615234375,-1486.895263671875,-1183.1263427734375,827.505615234375,-1219.263427734375,-1181.61865234375,818.955078125,-1486.895263671875,-1183.1263427734375,827.505615234375,-1219.263427734375,-1181.61865234375,818.955078125,-1219.263427734375,-1183.1263427734375,827.505615234375,-1486.895263671875,-1187.467529296875,835.0247802734375,-1486.895263671875,-1187.467529296875,835.0247192382812,-1219.263427734375,-1183.1263427734375,827.505615234375,-1486.895263671875,-1187.467529296875,835.0247192382812,-1219.263427734375,-1183.1263427734375,827.505615234375,-1219.263427734375,-1187.467529296875,835.0247802734375,-1486.895263671875,-1194.11865234375,840.605712890625,-1486.895263671875,-1194.11865234375,840.605712890625,-1219.263427734375,-1187.467529296875,835.0247802734375,-1486.895263671875,-1194.11865234375,840.605712890625,-1219.263427734375,-1187.467529296875,835.0247192382812,-1219.263427734375,-1194.11865234375,840.605712890625,-1486.895263671875,-1202.2774658203125,843.5753173828125,-1486.895263671875,-1202.2774658203125,843.5753173828125,-1219.263427734375,-1194.11865234375,840.605712890625,-1486.895263671875,-1202.2774658203125,843.5753173828125,-1219.263427734375,-1194.11865234375,840.605712890625,-1219.263427734375,-1202.2774658203125,843.5753173828125,-1486.895263671875,-1210.9598388671875,843.5753173828125,-1486.895263671875,-1210.9598388671875,843.5753173828125,-1219.263427734375,-1202.2774658203125,843.5753173828125,-1486.895263671875,-1210.9598388671875,843.5753173828125,-1219.263427734375,-1202.2774658203125,843.5753173828125,-1219.263427734375,-1210.9598388671875,843.5753173828125,-1486.895263671875,-1219.11865234375,840.605712890625,-1486.895263671875,-1219.11865234375,840.605712890625,-1219.263427734375,-1210.9598388671875,843.5753173828125,-1486.895263671875,-1219.11865234375,840.605712890625,-1219.263427734375,-1210.9598388671875,843.5753173828125,-1219.263427734375,-1219.11865234375,840.605712890625,-1486.895263671875,-1225.769775390625,835.0247802734375,-1486.895263671875,-1225.769775390625,835.0247192382812,-1219.263427734375,-1219.11865234375,840.605712890625,-1486.895263671875,-1225.769775390625,835.0247192382812,-1219.263427734375,-1219.11865234375,840.605712890625,-1219.263427734375,-1225.769775390625,835.0247802734375,-1486.895263671875,-1230.1109619140625,827.505615234375,-1486.895263671875,-1230.1109619140625,827.505615234375,-1219.263427734375,-1225.769775390625,835.0247802734375,-1486.895263671875,-1230.1109619140625,827.505615234375,-1219.263427734375,-1225.769775390625,835.0247192382812,-1219.263427734375,-1230.1109619140625,827.505615234375,-1486.895263671875,-1231.61865234375,818.955078125,-1486.895263671875,-1231.61865234375,818.955078125,-1219.263427734375,-1230.1109619140625,827.505615234375,-1486.895263671875,-1231.61865234375,818.955078125,-1219.263427734375,-1230.1109619140625,827.505615234375,-1219.263427734375,-1231.61865234375,818.955078125,-1486.895263671875,-1230.1109619140625,810.4046020507812,-1486.895263671875,-1230.1109619140625,810.4044799804688,-1219.263427734375,-1231.61865234375,818.955078125,-1486.895263671875,-1230.1109619140625,810.4044799804688,-1219.263427734375,-1231.61865234375,818.955078125,-1219.263427734375,-1230.1109619140625,810.4046020507812,-1486.895263671875,-1225.769775390625,802.8853759765625,-1486.895263671875,-1225.769775390625,802.8853759765625,-1219.263427734375,-1230.1109619140625,810.4046020507812,-1486.895263671875,-1225.769775390625,802.8853759765625,-1219.263427734375,-1230.1109619140625,810.4044799804688,-1219.263427734375,-1225.769775390625,802.8853759765625,-1486.895263671875,-1219.11865234375,797.3043823242188,-1486.895263671875,-1219.11865234375,797.3043823242188,-1219.263427734375,-1225.769775390625,802.8853759765625,-1486.895263671875,-1219.11865234375,797.3043823242188,-1219.263427734375,-1225.769775390625,802.8853759765625,-1219.263427734375,-1219.11865234375,797.3043823242188,-1486.895263671875,-1210.9598388671875,794.3348999023438,-1486.895263671875,-1210.9598388671875,794.3347778320312,-1219.263427734375,-1219.11865234375,797.3043823242188,-1486.895263671875,-1210.9598388671875,794.3347778320312,-1219.263427734375,-1219.11865234375,797.3043823242188,-1219.263427734375,-1210.9598388671875,794.3348999023438,-1486.895263671875,-1202.2774658203125,794.3348999023438,-1486.895263671875,-1202.2774658203125,794.3347778320312,-1219.263427734375,-1210.9598388671875,794.3348999023438,-1486.895263671875,-1202.2774658203125,794.3347778320312,-1219.263427734375,-1210.9598388671875,794.3347778320312,-1219.263427734375,-1202.2774658203125,794.3348999023438,-1486.895263671875,-1194.11865234375,797.3043823242188,-1486.895263671875,-1194.11865234375,797.3043823242188,-1219.263427734375,-1202.2774658203125,794.3348999023438,-1486.895263671875,-1194.11865234375,797.3043823242188,-1219.263427734375,-1202.2774658203125,794.3347778320312,-1219.263427734375,-1194.11865234375,797.3043823242188,-1486.895263671875,-1187.467529296875,802.8853759765625,-1486.895263671875,-1187.467529296875,802.8853759765625,-1219.263427734375,-1194.11865234375,797.3043823242188,-1486.895263671875,-1187.467529296875,802.8853759765625,-1219.263427734375,-1194.11865234375,797.3043823242188,-1219.263427734375,-1187.467529296875,802.8853759765625,-1486.895263671875,-1183.1263427734375,810.4046020507812,-1486.895263671875,-1183.1263427734375,810.4044799804688,-1219.263427734375,-1187.467529296875,802.8853759765625,-1486.895263671875,-1183.1263427734375,810.4044799804688,-1219.263427734375,-1187.467529296875,802.8853759765625,-1219.263427734375,-1183.1263427734375,810.4046020507812,-1486.895263671875,-1181.61865234375,818.955078125,-1486.895263671875,-1181.61865234375,818.955078125,-1219.263427734375,-1183.1263427734375,810.4046020507812,-1486.895263671875,-1181.61865234375,818.955078125,-1219.263427734375,-1183.1263427734375,810.4044799804688,-1219.263427734375,-1181.61865234375,818.955078125,-1219.263427734375,-1183.1263427734375,827.505615234375,-1219.263427734375,-1183.1263427734375,827.5054931640625,-951.6314697265625,-1181.61865234375,818.955078125,-1219.263427734375,-1183.1263427734375,827.5054931640625,-951.6314697265625,-1181.61865234375,818.9550170898438,-951.6314697265625,-1183.1263427734375,827.505615234375,-1219.263427734375,-1187.467529296875,835.0247192382812,-1219.263427734375,-1187.467529296875,835.0247192382812,-951.6314697265625,-1183.1263427734375,827.505615234375,-1219.263427734375,-1187.467529296875,835.0247192382812,-951.6314697265625,-1183.1263427734375,827.5054931640625,-951.6314697265625,-1187.467529296875,835.0247192382812,-1219.263427734375,-1194.11865234375,840.605712890625,-1219.263427734375,-1194.11865234375,840.605712890625,-951.6314697265625,-1187.467529296875,835.0247192382812,-1219.263427734375,-1194.11865234375,840.605712890625,-951.6314697265625,-1187.467529296875,835.0247192382812,-951.6314697265625,-1194.11865234375,840.605712890625,-1219.263427734375,-1202.2774658203125,843.5753173828125,-1219.263427734375,-1202.2774658203125,843.5751953125,-951.6314697265625,-1194.11865234375,840.605712890625,-1219.263427734375,-1202.2774658203125,843.5751953125,-951.6314697265625,-1194.11865234375,840.605712890625,-951.6314697265625,-1202.2774658203125,843.5753173828125,-1219.263427734375,-1210.9598388671875,843.5753173828125,-1219.263427734375,-1210.9598388671875,843.5751953125,-951.6314697265625,-1202.2774658203125,843.5753173828125,-1219.263427734375,-1210.9598388671875,843.5751953125,-951.6314697265625,-1202.2774658203125,843.5751953125,-951.6314697265625,-1210.9598388671875,843.5753173828125,-1219.263427734375,-1219.11865234375,840.605712890625,-1219.263427734375,-1219.11865234375,840.605712890625,-951.6314697265625,-1210.9598388671875,843.5753173828125,-1219.263427734375,-1219.11865234375,840.605712890625,-951.6314697265625,-1210.9598388671875,843.5751953125,-951.6314697265625,-1219.11865234375,840.605712890625,-1219.263427734375,-1225.769775390625,835.0247192382812,-1219.263427734375,-1225.769775390625,835.0247192382812,-951.6314697265625,-1219.11865234375,840.605712890625,-1219.263427734375,-1225.769775390625,835.0247192382812,-951.6314697265625,-1219.11865234375,840.605712890625,-951.6314697265625,-1225.769775390625,835.0247192382812,-1219.263427734375,-1230.1109619140625,827.505615234375,-1219.263427734375,-1230.1109619140625,827.5054931640625,-951.6314697265625,-1225.769775390625,835.0247192382812,-1219.263427734375,-1230.1109619140625,827.5054931640625,-951.6314697265625,-1225.769775390625,835.0247192382812,-951.6314697265625,-1230.1109619140625,827.505615234375,-1219.263427734375,-1231.61865234375,818.955078125,-1219.263427734375,-1231.61865234375,818.9550170898438,-951.6314697265625,-1230.1109619140625,827.505615234375,-1219.263427734375,-1231.61865234375,818.9550170898438,-951.6314697265625,-1230.1109619140625,827.5054931640625,-951.6314697265625,-1231.61865234375,818.955078125,-1219.263427734375,-1230.1109619140625,810.4044799804688,-1219.263427734375,-1230.1109619140625,810.4044799804688,-951.6314697265625,-1231.61865234375,818.955078125,-1219.263427734375,-1230.1109619140625,810.4044799804688,-951.6314697265625,-1231.61865234375,818.9550170898438,-951.6314697265625,-1230.1109619140625,810.4044799804688,-1219.263427734375,-1225.769775390625,802.8853759765625,-1219.263427734375,-1225.769775390625,802.8853149414062,-951.6314697265625,-1230.1109619140625,810.4044799804688,-1219.263427734375,-1225.769775390625,802.8853149414062,-951.6314697265625,-1230.1109619140625,810.4044799804688,-951.6314697265625,-1225.769775390625,802.8853759765625,-1219.263427734375,-1219.11865234375,797.3043823242188,-1219.263427734375,-1219.11865234375,797.3043823242188,-951.6314697265625,-1225.769775390625,802.8853759765625,-1219.263427734375,-1219.11865234375,797.3043823242188,-951.6314697265625,-1225.769775390625,802.8853149414062,-951.6314697265625,-1219.11865234375,797.3043823242188,-1219.263427734375,-1210.9598388671875,794.3347778320312,-1219.263427734375,-1210.9598388671875,794.3347778320312,-951.6314697265625,-1219.11865234375,797.3043823242188,-1219.263427734375,-1210.9598388671875,794.3347778320312,-951.6314697265625,-1219.11865234375,797.3043823242188,-951.6314697265625,-1210.9598388671875,794.3347778320312,-1219.263427734375,-1202.2774658203125,794.3347778320312,-1219.263427734375,-1202.2774658203125,794.3347778320312,-951.6314697265625,-1210.9598388671875,794.3347778320312,-1219.263427734375,-1202.2774658203125,794.3347778320312,-951.6314697265625,-1210.9598388671875,794.3347778320312,-951.6314697265625,-1202.2774658203125,794.3347778320312,-1219.263427734375,-1194.11865234375,797.3043823242188,-1219.263427734375,-1194.11865234375,797.3043823242188,-951.6314697265625,-1202.2774658203125,794.3347778320312,-1219.263427734375,-1194.11865234375,797.3043823242188,-951.6314697265625,-1202.2774658203125,794.3347778320312,-951.6314697265625,-1194.11865234375,797.3043823242188,-1219.263427734375,-1187.467529296875,802.8853759765625,-1219.263427734375,-1187.467529296875,802.8853149414062,-951.6314697265625,-1194.11865234375,797.3043823242188,-1219.263427734375,-1187.467529296875,802.8853149414062,-951.6314697265625,-1194.11865234375,797.3043823242188,-951.6314697265625,-1187.467529296875,802.8853759765625,-1219.263427734375,-1183.1263427734375,810.4044799804688,-1219.263427734375,-1183.1263427734375,810.4044799804688,-951.6314697265625,-1187.467529296875,802.8853759765625,-1219.263427734375,-1183.1263427734375,810.4044799804688,-951.6314697265625,-1187.467529296875,802.8853149414062,-951.6314697265625,-1183.1263427734375,810.4044799804688,-1219.263427734375,-1181.61865234375,818.955078125,-1219.263427734375,-1181.61865234375,818.9550170898438,-951.6314697265625,-1183.1263427734375,810.4044799804688,-1219.263427734375,-1181.61865234375,818.9550170898438,-951.6314697265625,-1183.1263427734375,810.4044799804688,-951.6314697265625,-1181.61865234375,818.9550170898438,-951.6314697265625,-1183.1263427734375,827.5054931640625,-951.6314697265625,-1183.1263427734375,827.5054931640625,-683.9995727539062,-1181.61865234375,818.9550170898438,-951.6314697265625,-1183.1263427734375,827.5054931640625,-683.9995727539062,-1181.61865234375,818.9550170898438,-683.9995727539062,-1183.1263427734375,827.5054931640625,-951.6314697265625,-1187.467529296875,835.0247192382812,-951.6314697265625,-1187.467529296875,835.0247192382812,-683.9995727539062,-1183.1263427734375,827.5054931640625,-951.6314697265625,-1187.467529296875,835.0247192382812,-683.9995727539062,-1183.1263427734375,827.5054931640625,-683.9995727539062,-1187.467529296875,835.0247192382812,-951.6314697265625,-1194.11865234375,840.605712890625,-951.6314697265625,-1194.11865234375,840.6055908203125,-683.9995727539062,-1187.467529296875,835.0247192382812,-951.6314697265625,-1194.11865234375,840.6055908203125,-683.9995727539062,-1187.467529296875,835.0247192382812,-683.9995727539062,-1194.11865234375,840.605712890625,-951.6314697265625,-1202.2774658203125,843.5751953125,-951.6314697265625,-1202.2774658203125,843.5750732421875,-683.9995727539062,-1194.11865234375,840.605712890625,-951.6314697265625,-1202.2774658203125,843.5750732421875,-683.9995727539062,-1194.11865234375,840.6055908203125,-683.9995727539062,-1202.2774658203125,843.5751953125,-951.6314697265625,-1210.9598388671875,843.5751953125,-951.6314697265625,-1210.9598388671875,843.5750732421875,-683.9995727539062,-1202.2774658203125,843.5751953125,-951.6314697265625,-1210.9598388671875,843.5750732421875,-683.9995727539062,-1202.2774658203125,843.5750732421875,-683.9995727539062,-1210.9598388671875,843.5751953125,-951.6314697265625,-1219.11865234375,840.605712890625,-951.6314697265625,-1219.11865234375,840.6055908203125,-683.9995727539062,-1210.9598388671875,843.5751953125,-951.6314697265625,-1219.11865234375,840.6055908203125,-683.9995727539062,-1210.9598388671875,843.5750732421875,-683.9995727539062,-1219.11865234375,840.605712890625,-951.6314697265625,-1225.769775390625,835.0247192382812,-951.6314697265625,-1225.769775390625,835.0247192382812,-683.9995727539062,-1219.11865234375,840.605712890625,-951.6314697265625,-1225.769775390625,835.0247192382812,-683.9995727539062,-1219.11865234375,840.6055908203125,-683.9995727539062,-1225.769775390625,835.0247192382812,-951.6314697265625,-1230.1109619140625,827.5054931640625,-951.6314697265625,-1230.1109619140625,827.5054931640625,-683.9995727539062,-1225.769775390625,835.0247192382812,-951.6314697265625,-1230.1109619140625,827.5054931640625,-683.9995727539062,-1225.769775390625,835.0247192382812,-683.9995727539062,-1230.1109619140625,827.5054931640625,-951.6314697265625,-1231.61865234375,818.9550170898438,-951.6314697265625,-1231.61865234375,818.9550170898438,-683.9995727539062,-1230.1109619140625,827.5054931640625,-951.6314697265625,-1231.61865234375,818.9550170898438,-683.9995727539062,-1230.1109619140625,827.5054931640625,-683.9995727539062,-1231.61865234375,818.9550170898438,-951.6314697265625,-1230.1109619140625,810.4044799804688,-951.6314697265625,-1230.1109619140625,810.4044799804688,-683.9995727539062,-1231.61865234375,818.9550170898438,-951.6314697265625,-1230.1109619140625,810.4044799804688,-683.9995727539062,-1231.61865234375,818.9550170898438,-683.9995727539062,-1230.1109619140625,810.4044799804688,-951.6314697265625,-1225.769775390625,802.8853149414062,-951.6314697265625,-1225.769775390625,802.8853149414062,-683.9995727539062,-1230.1109619140625,810.4044799804688,-951.6314697265625,-1225.769775390625,802.8853149414062,-683.9995727539062,-1230.1109619140625,810.4044799804688,-683.9995727539062,-1225.769775390625,802.8853149414062,-951.6314697265625,-1219.11865234375,797.3043823242188,-951.6314697265625,-1219.11865234375,797.3043212890625,-683.9995727539062,-1225.769775390625,802.8853149414062,-951.6314697265625,-1219.11865234375,797.3043212890625,-683.9995727539062,-1225.769775390625,802.8853149414062,-683.9995727539062,-1219.11865234375,797.3043823242188,-951.6314697265625,-1210.9598388671875,794.3347778320312,-951.6314697265625,-1210.9598388671875,794.3347778320312,-683.9995727539062,-1219.11865234375,797.3043823242188,-951.6314697265625,-1210.9598388671875,794.3347778320312,-683.9995727539062,-1219.11865234375,797.3043212890625,-683.9995727539062,-1210.9598388671875,794.3347778320312,-951.6314697265625,-1202.2774658203125,794.3347778320312,-951.6314697265625,-1202.2774658203125,794.3347778320312,-683.9995727539062,-1210.9598388671875,794.3347778320312,-951.6314697265625,-1202.2774658203125,794.3347778320312,-683.9995727539062,-1210.9598388671875,794.3347778320312,-683.9995727539062,-1202.2774658203125,794.3347778320312,-951.6314697265625,-1194.11865234375,797.3043823242188,-951.6314697265625,-1194.11865234375,797.3043212890625,-683.9995727539062,-1202.2774658203125,794.3347778320312,-951.6314697265625,-1194.11865234375,797.3043212890625,-683.9995727539062,-1202.2774658203125,794.3347778320312,-683.9995727539062,-1194.11865234375,797.3043823242188,-951.6314697265625,-1187.467529296875,802.8853149414062,-951.6314697265625,-1187.467529296875,802.8853149414062,-683.9995727539062,-1194.11865234375,797.3043823242188,-951.6314697265625,-1187.467529296875,802.8853149414062,-683.9995727539062,-1194.11865234375,797.3043212890625,-683.9995727539062,-1187.467529296875,802.8853149414062,-951.6314697265625,-1183.1263427734375,810.4044799804688,-951.6314697265625,-1183.1263427734375,810.4044189453125,-683.9995727539062,-1187.467529296875,802.8853149414062,-951.6314697265625,-1183.1263427734375,810.4044189453125,-683.9995727539062,-1187.467529296875,802.8853149414062,-683.9995727539062,-1183.1263427734375,810.4044799804688,-951.6314697265625,-1181.61865234375,818.9550170898438,-951.6314697265625,-1181.61865234375,818.9550170898438,-683.9995727539062,-1183.1263427734375,810.4044799804688,-951.6314697265625,-1181.61865234375,818.9550170898438,-683.9995727539062,-1183.1263427734375,810.4044189453125,-683.9995727539062,-1181.61865234375,818.9550170898438,-683.9995727539062,-1183.1263427734375,827.5054931640625,-683.9995727539062,-1183.1263427734375,827.50537109375,-416.3677062988281,-1181.61865234375,818.9550170898438,-683.9995727539062,-1183.1263427734375,827.50537109375,-416.3677062988281,-1181.61865234375,818.9548950195312,-416.3677062988281,-1183.1263427734375,827.5054931640625,-683.9995727539062,-1187.467529296875,835.0247192382812,-683.9995727539062,-1187.467529296875,835.0245971679688,-416.3677062988281,-1183.1263427734375,827.5054931640625,-683.9995727539062,-1187.467529296875,835.0245971679688,-416.3677062988281,-1183.1263427734375,827.50537109375,-416.3677062988281,-1187.467529296875,835.0247192382812,-683.9995727539062,-1194.11865234375,840.6055908203125,-683.9995727539062,-1194.11865234375,840.6055297851562,-416.3677062988281,-1187.467529296875,835.0247192382812,-683.9995727539062,-1194.11865234375,840.6055297851562,-416.3677062988281,-1187.467529296875,835.0245971679688,-416.3677062988281,-1194.11865234375,840.6055908203125,-683.9995727539062,-1202.2774658203125,843.5750732421875,-683.9995727539062,-1202.2774658203125,843.5750732421875,-416.3677062988281,-1194.11865234375,840.6055908203125,-683.9995727539062,-1202.2774658203125,843.5750732421875,-416.3677062988281,-1194.11865234375,840.6055297851562,-416.3677062988281,-1202.2774658203125,843.5750732421875,-683.9995727539062,-1210.9598388671875,843.5750732421875,-683.9995727539062,-1210.9598388671875,843.5750732421875,-416.3677062988281,-1202.2774658203125,843.5750732421875,-683.9995727539062,-1210.9598388671875,843.5750732421875,-416.3677062988281,-1202.2774658203125,843.5750732421875,-416.3677062988281,-1210.9598388671875,843.5750732421875,-683.9995727539062,-1219.11865234375,840.6055908203125,-683.9995727539062,-1219.11865234375,840.6055297851562,-416.3677062988281,-1210.9598388671875,843.5750732421875,-683.9995727539062,-1219.11865234375,840.6055297851562,-416.3677062988281,-1210.9598388671875,843.5750732421875,-416.3677062988281,-1219.11865234375,840.6055908203125,-683.9995727539062,-1225.769775390625,835.0247192382812,-683.9995727539062,-1225.769775390625,835.0245971679688,-416.3677062988281,-1219.11865234375,840.6055908203125,-683.9995727539062,-1225.769775390625,835.0245971679688,-416.3677062988281,-1219.11865234375,840.6055297851562,-416.3677062988281,-1225.769775390625,835.0247192382812,-683.9995727539062,-1230.1109619140625,827.5054931640625,-683.9995727539062,-1230.1109619140625,827.50537109375,-416.3677062988281,-1225.769775390625,835.0247192382812,-683.9995727539062,-1230.1109619140625,827.50537109375,-416.3677062988281,-1225.769775390625,835.0245971679688,-416.3677062988281,-1230.1109619140625,827.5054931640625,-683.9995727539062,-1231.61865234375,818.9550170898438,-683.9995727539062,-1231.61865234375,818.9548950195312,-416.3677062988281,-1230.1109619140625,827.5054931640625,-683.9995727539062,-1231.61865234375,818.9548950195312,-416.3677062988281,-1230.1109619140625,827.50537109375,-416.3677062988281,-1231.61865234375,818.9550170898438,-683.9995727539062,-1230.1109619140625,810.4044799804688,-683.9995727539062,-1230.1109619140625,810.4044189453125,-416.3677062988281,-1231.61865234375,818.9550170898438,-683.9995727539062,-1230.1109619140625,810.4044189453125,-416.3677062988281,-1231.61865234375,818.9548950195312,-416.3677062988281,-1230.1109619140625,810.4044799804688,-683.9995727539062,-1225.769775390625,802.8853149414062,-683.9995727539062,-1225.769775390625,802.8853149414062,-416.3677062988281,-1230.1109619140625,810.4044799804688,-683.9995727539062,-1225.769775390625,802.8853149414062,-416.3677062988281,-1230.1109619140625,810.4044189453125,-416.3677062988281,-1225.769775390625,802.8853149414062,-683.9995727539062,-1219.11865234375,797.3043212890625,-683.9995727539062,-1219.11865234375,797.3043212890625,-416.3677062988281,-1225.769775390625,802.8853149414062,-683.9995727539062,-1219.11865234375,797.3043212890625,-416.3677062988281,-1225.769775390625,802.8853149414062,-416.3677062988281,-1219.11865234375,797.3043212890625,-683.9995727539062,-1210.9598388671875,794.3347778320312,-683.9995727539062,-1210.9598388671875,794.334716796875,-416.3677062988281,-1219.11865234375,797.3043212890625,-683.9995727539062,-1210.9598388671875,794.334716796875,-416.3677062988281,-1219.11865234375,797.3043212890625,-416.3677062988281,-1210.9598388671875,794.3347778320312,-683.9995727539062,-1202.2774658203125,794.3347778320312,-683.9995727539062,-1202.2774658203125,794.334716796875,-416.3677062988281,-1210.9598388671875,794.3347778320312,-683.9995727539062,-1202.2774658203125,794.334716796875,-416.3677062988281,-1210.9598388671875,794.334716796875,-416.3677062988281,-1202.2774658203125,794.3347778320312,-683.9995727539062,-1194.11865234375,797.3043212890625,-683.9995727539062,-1194.11865234375,797.3043212890625,-416.3677062988281,-1202.2774658203125,794.3347778320312,-683.9995727539062,-1194.11865234375,797.3043212890625,-416.3677062988281,-1202.2774658203125,794.334716796875,-416.3677062988281,-1194.11865234375,797.3043212890625,-683.9995727539062,-1187.467529296875,802.8853149414062,-683.9995727539062,-1187.467529296875,802.8851928710938,-416.3677062988281,-1194.11865234375,797.3043212890625,-683.9995727539062,-1187.467529296875,802.8851928710938,-416.3677062988281,-1194.11865234375,797.3043212890625,-416.3677062988281,-1187.467529296875,802.8853149414062,-683.9995727539062,-1183.1263427734375,810.4044189453125,-683.9995727539062,-1183.1263427734375,810.4044189453125,-416.3677062988281,-1187.467529296875,802.8853149414062,-683.9995727539062,-1183.1263427734375,810.4044189453125,-416.3677062988281,-1187.467529296875,802.8851928710938,-416.3677062988281,-1183.1263427734375,810.4044189453125,-683.9995727539062,-1181.61865234375,818.9550170898438,-683.9995727539062,-1181.61865234375,818.9548950195312,-416.3677062988281,-1183.1263427734375,810.4044189453125,-683.9995727539062,-1181.61865234375,818.9548950195312,-416.3677062988281,-1183.1263427734375,810.4044189453125,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1183.1263427734375,810.4044189453125,-416.3677062988281,-1181.61865234375,818.9548950195312,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1181.61865234375,818.9548950195312,-416.3677062988281,-1183.1263427734375,827.50537109375,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1183.1263427734375,827.50537109375,-416.3677062988281,-1187.467529296875,835.0245971679688,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1187.467529296875,835.0245971679688,-416.3677062988281,-1194.11865234375,840.6055297851562,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1194.11865234375,840.6055297851562,-416.3677062988281,-1202.2774658203125,843.5750732421875,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1202.2774658203125,843.5750732421875,-416.3677062988281,-1210.9598388671875,843.5750732421875,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1210.9598388671875,843.5750732421875,-416.3677062988281,-1219.11865234375,840.6055297851562,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1219.11865234375,840.6055297851562,-416.3677062988281,-1225.769775390625,835.0245971679688,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1225.769775390625,835.0245971679688,-416.3677062988281,-1230.1109619140625,827.50537109375,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1230.1109619140625,827.50537109375,-416.3677062988281,-1231.61865234375,818.9548950195312,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1231.61865234375,818.9548950195312,-416.3677062988281,-1230.1109619140625,810.4044189453125,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1230.1109619140625,810.4044189453125,-416.3677062988281,-1225.769775390625,802.8853149414062,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1225.769775390625,802.8853149414062,-416.3677062988281,-1219.11865234375,797.3043212890625,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1219.11865234375,797.3043212890625,-416.3677062988281,-1210.9598388671875,794.334716796875,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1210.9598388671875,794.334716796875,-416.3677062988281,-1202.2774658203125,794.334716796875,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1202.2774658203125,794.334716796875,-416.3677062988281,-1194.11865234375,797.3043212890625,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1194.11865234375,797.3043212890625,-416.3677062988281,-1187.467529296875,802.8851928710938,-416.3677062988281,-1206.61865234375,818.9548950195312,-416.3677062988281,-1187.467529296875,802.8851928710938,-416.3677062988281,-1183.1263427734375,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-1206.61865234375,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466581371704
| }
| }
| },
| {
| "uuid": "038D040E-8DA2-411D-8D74-DDC8E577FB81",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-1106.61865234375,818.955078125,-1754.5272216796875,-1087.467529296875,835.0247802734375,-1754.5272216796875,-1083.1263427734375,827.505615234375,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1083.1263427734375,827.505615234375,-1754.5272216796875,-1081.61865234375,818.955078125,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1102.2774658203125,843.5753173828125,-1754.5272216796875,-1094.11865234375,840.6057739257812,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1094.11865234375,840.6057739257812,-1754.5272216796875,-1087.467529296875,835.0247802734375,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1119.11865234375,840.6057739257812,-1754.5272216796875,-1110.9598388671875,843.5753173828125,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1110.9598388671875,843.5753173828125,-1754.5272216796875,-1102.2774658203125,843.5753173828125,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1130.1109619140625,827.505615234375,-1754.5272216796875,-1125.769775390625,835.0247802734375,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1125.769775390625,835.0247802734375,-1754.5272216796875,-1119.11865234375,840.6057739257812,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1130.1109619140625,810.4047241210938,-1754.5272216796875,-1131.61865234375,818.955078125,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1131.61865234375,818.955078125,-1754.5272216796875,-1130.1109619140625,827.505615234375,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1119.11865234375,797.3045043945312,-1754.5272216796875,-1125.769775390625,802.8853759765625,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1125.769775390625,802.8853759765625,-1754.5272216796875,-1130.1109619140625,810.4047241210938,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1102.2774658203125,794.3350219726562,-1754.5272216796875,-1110.9598388671875,794.3350219726562,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1110.9598388671875,794.3350219726562,-1754.5272216796875,-1119.11865234375,797.3045043945312,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1087.467529296875,802.8853759765625,-1754.5272216796875,-1094.11865234375,797.3045043945312,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1094.11865234375,797.3045043945312,-1754.5272216796875,-1102.2774658203125,794.3350219726562,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1081.61865234375,818.955078125,-1754.5272216796875,-1083.1263427734375,810.4046020507812,-1754.5272216796875,-1106.61865234375,818.955078125,-1754.5272216796875,-1083.1263427734375,810.4046020507812,-1754.5272216796875,-1087.467529296875,802.8853759765625,-1754.5272216796875,-1081.61865234375,818.955078125,-1754.5272216796875,-1083.1263427734375,827.505615234375,-1754.5272216796875,-1083.1263427734375,827.505615234375,-1486.895263671875,-1081.61865234375,818.955078125,-1754.5272216796875,-1083.1263427734375,827.505615234375,-1486.895263671875,-1081.61865234375,818.955078125,-1486.895263671875,-1083.1263427734375,827.505615234375,-1754.5272216796875,-1087.467529296875,835.0247802734375,-1754.5272216796875,-1087.467529296875,835.0247802734375,-1486.895263671875,-1083.1263427734375,827.505615234375,-1754.5272216796875,-1087.467529296875,835.0247802734375,-1486.895263671875,-1083.1263427734375,827.505615234375,-1486.895263671875,-1087.467529296875,835.0247802734375,-1754.5272216796875,-1094.11865234375,840.6057739257812,-1754.5272216796875,-1094.11865234375,840.605712890625,-1486.895263671875,-1087.467529296875,835.0247802734375,-1754.5272216796875,-1094.11865234375,840.605712890625,-1486.895263671875,-1087.467529296875,835.0247802734375,-1486.895263671875,-1094.11865234375,840.6057739257812,-1754.5272216796875,-1102.2774658203125,843.5753173828125,-1754.5272216796875,-1102.2774658203125,843.5753173828125,-1486.895263671875,-1094.11865234375,840.6057739257812,-1754.5272216796875,-1102.2774658203125,843.5753173828125,-1486.895263671875,-1094.11865234375,840.605712890625,-1486.895263671875,-1102.2774658203125,843.5753173828125,-1754.5272216796875,-1110.9598388671875,843.5753173828125,-1754.5272216796875,-1110.9598388671875,843.5753173828125,-1486.895263671875,-1102.2774658203125,843.5753173828125,-1754.5272216796875,-1110.9598388671875,843.5753173828125,-1486.895263671875,-1102.2774658203125,843.5753173828125,-1486.895263671875,-1110.9598388671875,843.5753173828125,-1754.5272216796875,-1119.11865234375,840.6057739257812,-1754.5272216796875,-1119.11865234375,840.605712890625,-1486.895263671875,-1110.9598388671875,843.5753173828125,-1754.5272216796875,-1119.11865234375,840.605712890625,-1486.895263671875,-1110.9598388671875,843.5753173828125,-1486.895263671875,-1119.11865234375,840.6057739257812,-1754.5272216796875,-1125.769775390625,835.0247802734375,-1754.5272216796875,-1125.769775390625,835.0247802734375,-1486.895263671875,-1119.11865234375,840.6057739257812,-1754.5272216796875,-1125.769775390625,835.0247802734375,-1486.895263671875,-1119.11865234375,840.605712890625,-1486.895263671875,-1125.769775390625,835.0247802734375,-1754.5272216796875,-1130.1109619140625,827.505615234375,-1754.5272216796875,-1130.1109619140625,827.505615234375,-1486.895263671875,-1125.769775390625,835.0247802734375,-1754.5272216796875,-1130.1109619140625,827.505615234375,-1486.895263671875,-1125.769775390625,835.0247802734375,-1486.895263671875,-1130.1109619140625,827.505615234375,-1754.5272216796875,-1131.61865234375,818.955078125,-1754.5272216796875,-1131.61865234375,818.955078125,-1486.895263671875,-1130.1109619140625,827.505615234375,-1754.5272216796875,-1131.61865234375,818.955078125,-1486.895263671875,-1130.1109619140625,827.505615234375,-1486.895263671875,-1131.61865234375,818.955078125,-1754.5272216796875,-1130.1109619140625,810.4047241210938,-1754.5272216796875,-1130.1109619140625,810.4046020507812,-1486.895263671875,-1131.61865234375,818.955078125,-1754.5272216796875,-1130.1109619140625,810.4046020507812,-1486.895263671875,-1131.61865234375,818.955078125,-1486.895263671875,-1130.1109619140625,810.4047241210938,-1754.5272216796875,-1125.769775390625,802.8853759765625,-1754.5272216796875,-1125.769775390625,802.8853759765625,-1486.895263671875,-1130.1109619140625,810.4047241210938,-1754.5272216796875,-1125.769775390625,802.8853759765625,-1486.895263671875,-1130.1109619140625,810.4046020507812,-1486.895263671875,-1125.769775390625,802.8853759765625,-1754.5272216796875,-1119.11865234375,797.3045043945312,-1754.5272216796875,-1119.11865234375,797.3043823242188,-1486.895263671875,-1125.769775390625,802.8853759765625,-1754.5272216796875,-1119.11865234375,797.3043823242188,-1486.895263671875,-1125.769775390625,802.8853759765625,-1486.895263671875,-1119.11865234375,797.3045043945312,-1754.5272216796875,-1110.9598388671875,794.3350219726562,-1754.5272216796875,-1110.9598388671875,794.3348999023438,-1486.895263671875,-1119.11865234375,797.3045043945312,-1754.5272216796875,-1110.9598388671875,794.3348999023438,-1486.895263671875,-1119.11865234375,797.3043823242188,-1486.895263671875,-1110.9598388671875,794.3350219726562,-1754.5272216796875,-1102.2774658203125,794.3350219726562,-1754.5272216796875,-1102.2774658203125,794.3348999023438,-1486.895263671875,-1110.9598388671875,794.3350219726562,-1754.5272216796875,-1102.2774658203125,794.3348999023438,-1486.895263671875,-1110.9598388671875,794.3348999023438,-1486.895263671875,-1102.2774658203125,794.3350219726562,-1754.5272216796875,-1094.11865234375,797.3045043945312,-1754.5272216796875,-1094.11865234375,797.3043823242188,-1486.895263671875,-1102.2774658203125,794.3350219726562,-1754.5272216796875,-1094.11865234375,797.3043823242188,-1486.895263671875,-1102.2774658203125,794.3348999023438,-1486.895263671875,-1094.11865234375,797.3045043945312,-1754.5272216796875,-1087.467529296875,802.8853759765625,-1754.5272216796875,-1087.467529296875,802.8853759765625,-1486.895263671875,-1094.11865234375,797.3045043945312,-1754.5272216796875,-1087.467529296875,802.8853759765625,-1486.895263671875,-1094.11865234375,797.3043823242188,-1486.895263671875,-1087.467529296875,802.8853759765625,-1754.5272216796875,-1083.1263427734375,810.4046020507812,-1754.5272216796875,-1083.1263427734375,810.4046020507812,-1486.895263671875,-1087.467529296875,802.8853759765625,-1754.5272216796875,-1083.1263427734375,810.4046020507812,-1486.895263671875,-1087.467529296875,802.8853759765625,-1486.895263671875,-1083.1263427734375,810.4046020507812,-1754.5272216796875,-1081.61865234375,818.955078125,-1754.5272216796875,-1081.61865234375,818.955078125,-1486.895263671875,-1083.1263427734375,810.4046020507812,-1754.5272216796875,-1081.61865234375,818.955078125,-1486.895263671875,-1083.1263427734375,810.4046020507812,-1486.895263671875,-1081.61865234375,818.955078125,-1486.895263671875,-1083.1263427734375,827.505615234375,-1486.895263671875,-1083.1263427734375,827.505615234375,-1219.263427734375,-1081.61865234375,818.955078125,-1486.895263671875,-1083.1263427734375,827.505615234375,-1219.263427734375,-1081.61865234375,818.955078125,-1219.263427734375,-1083.1263427734375,827.505615234375,-1486.895263671875,-1087.467529296875,835.0247802734375,-1486.895263671875,-1087.467529296875,835.0247192382812,-1219.263427734375,-1083.1263427734375,827.505615234375,-1486.895263671875,-1087.467529296875,835.0247192382812,-1219.263427734375,-1083.1263427734375,827.505615234375,-1219.263427734375,-1087.467529296875,835.0247802734375,-1486.895263671875,-1094.11865234375,840.605712890625,-1486.895263671875,-1094.11865234375,840.605712890625,-1219.263427734375,-1087.467529296875,835.0247802734375,-1486.895263671875,-1094.11865234375,840.605712890625,-1219.263427734375,-1087.467529296875,835.0247192382812,-1219.263427734375,-1094.11865234375,840.605712890625,-1486.895263671875,-1102.2774658203125,843.5753173828125,-1486.895263671875,-1102.2774658203125,843.5753173828125,-1219.263427734375,-1094.11865234375,840.605712890625,-1486.895263671875,-1102.2774658203125,843.5753173828125,-1219.263427734375,-1094.11865234375,840.605712890625,-1219.263427734375,-1102.2774658203125,843.5753173828125,-1486.895263671875,-1110.9598388671875,843.5753173828125,-1486.895263671875,-1110.9598388671875,843.5753173828125,-1219.263427734375,-1102.2774658203125,843.5753173828125,-1486.895263671875,-1110.9598388671875,843.5753173828125,-1219.263427734375,-1102.2774658203125,843.5753173828125,-1219.263427734375,-1110.9598388671875,843.5753173828125,-1486.895263671875,-1119.11865234375,840.605712890625,-1486.895263671875,-1119.11865234375,840.605712890625,-1219.263427734375,-1110.9598388671875,843.5753173828125,-1486.895263671875,-1119.11865234375,840.605712890625,-1219.263427734375,-1110.9598388671875,843.5753173828125,-1219.263427734375,-1119.11865234375,840.605712890625,-1486.895263671875,-1125.769775390625,835.0247802734375,-1486.895263671875,-1125.769775390625,835.0247192382812,-1219.263427734375,-1119.11865234375,840.605712890625,-1486.895263671875,-1125.769775390625,835.0247192382812,-1219.263427734375,-1119.11865234375,840.605712890625,-1219.263427734375,-1125.769775390625,835.0247802734375,-1486.895263671875,-1130.1109619140625,827.505615234375,-1486.895263671875,-1130.1109619140625,827.505615234375,-1219.263427734375,-1125.769775390625,835.0247802734375,-1486.895263671875,-1130.1109619140625,827.505615234375,-1219.263427734375,-1125.769775390625,835.0247192382812,-1219.263427734375,-1130.1109619140625,827.505615234375,-1486.895263671875,-1131.61865234375,818.955078125,-1486.895263671875,-1131.61865234375,818.955078125,-1219.263427734375,-1130.1109619140625,827.505615234375,-1486.895263671875,-1131.61865234375,818.955078125,-1219.263427734375,-1130.1109619140625,827.505615234375,-1219.263427734375,-1131.61865234375,818.955078125,-1486.895263671875,-1130.1109619140625,810.4046020507812,-1486.895263671875,-1130.1109619140625,810.4044799804688,-1219.263427734375,-1131.61865234375,818.955078125,-1486.895263671875,-1130.1109619140625,810.4044799804688,-1219.263427734375,-1131.61865234375,818.955078125,-1219.263427734375,-1130.1109619140625,810.4046020507812,-1486.895263671875,-1125.769775390625,802.8853759765625,-1486.895263671875,-1125.769775390625,802.8853759765625,-1219.263427734375,-1130.1109619140625,810.4046020507812,-1486.895263671875,-1125.769775390625,802.8853759765625,-1219.263427734375,-1130.1109619140625,810.4044799804688,-1219.263427734375,-1125.769775390625,802.8853759765625,-1486.895263671875,-1119.11865234375,797.3043823242188,-1486.895263671875,-1119.11865234375,797.3043823242188,-1219.263427734375,-1125.769775390625,802.8853759765625,-1486.895263671875,-1119.11865234375,797.3043823242188,-1219.263427734375,-1125.769775390625,802.8853759765625,-1219.263427734375,-1119.11865234375,797.3043823242188,-1486.895263671875,-1110.9598388671875,794.3348999023438,-1486.895263671875,-1110.9598388671875,794.3347778320312,-1219.263427734375,-1119.11865234375,797.3043823242188,-1486.895263671875,-1110.9598388671875,794.3347778320312,-1219.263427734375,-1119.11865234375,797.3043823242188,-1219.263427734375,-1110.9598388671875,794.3348999023438,-1486.895263671875,-1102.2774658203125,794.3348999023438,-1486.895263671875,-1102.2774658203125,794.3347778320312,-1219.263427734375,-1110.9598388671875,794.3348999023438,-1486.895263671875,-1102.2774658203125,794.3347778320312,-1219.263427734375,-1110.9598388671875,794.3347778320312,-1219.263427734375,-1102.2774658203125,794.3348999023438,-1486.895263671875,-1094.11865234375,797.3043823242188,-1486.895263671875,-1094.11865234375,797.3043823242188,-1219.263427734375,-1102.2774658203125,794.3348999023438,-1486.895263671875,-1094.11865234375,797.3043823242188,-1219.263427734375,-1102.2774658203125,794.3347778320312,-1219.263427734375,-1094.11865234375,797.3043823242188,-1486.895263671875,-1087.467529296875,802.8853759765625,-1486.895263671875,-1087.467529296875,802.8853759765625,-1219.263427734375,-1094.11865234375,797.3043823242188,-1486.895263671875,-1087.467529296875,802.8853759765625,-1219.263427734375,-1094.11865234375,797.3043823242188,-1219.263427734375,-1087.467529296875,802.8853759765625,-1486.895263671875,-1083.1263427734375,810.4046020507812,-1486.895263671875,-1083.1263427734375,810.4044799804688,-1219.263427734375,-1087.467529296875,802.8853759765625,-1486.895263671875,-1083.1263427734375,810.4044799804688,-1219.263427734375,-1087.467529296875,802.8853759765625,-1219.263427734375,-1083.1263427734375,810.4046020507812,-1486.895263671875,-1081.61865234375,818.955078125,-1486.895263671875,-1081.61865234375,818.955078125,-1219.263427734375,-1083.1263427734375,810.4046020507812,-1486.895263671875,-1081.61865234375,818.955078125,-1219.263427734375,-1083.1263427734375,810.4044799804688,-1219.263427734375,-1081.61865234375,818.955078125,-1219.263427734375,-1083.1263427734375,827.505615234375,-1219.263427734375,-1083.1263427734375,827.5054931640625,-951.6314697265625,-1081.61865234375,818.955078125,-1219.263427734375,-1083.1263427734375,827.5054931640625,-951.6314697265625,-1081.61865234375,818.9550170898438,-951.6314697265625,-1083.1263427734375,827.505615234375,-1219.263427734375,-1087.467529296875,835.0247192382812,-1219.263427734375,-1087.467529296875,835.0247192382812,-951.6314697265625,-1083.1263427734375,827.505615234375,-1219.263427734375,-1087.467529296875,835.0247192382812,-951.6314697265625,-1083.1263427734375,827.5054931640625,-951.6314697265625,-1087.467529296875,835.0247192382812,-1219.263427734375,-1094.11865234375,840.605712890625,-1219.263427734375,-1094.11865234375,840.605712890625,-951.6314697265625,-1087.467529296875,835.0247192382812,-1219.263427734375,-1094.11865234375,840.605712890625,-951.6314697265625,-1087.467529296875,835.0247192382812,-951.6314697265625,-1094.11865234375,840.605712890625,-1219.263427734375,-1102.2774658203125,843.5753173828125,-1219.263427734375,-1102.2774658203125,843.5751953125,-951.6314697265625,-1094.11865234375,840.605712890625,-1219.263427734375,-1102.2774658203125,843.5751953125,-951.6314697265625,-1094.11865234375,840.605712890625,-951.6314697265625,-1102.2774658203125,843.5753173828125,-1219.263427734375,-1110.9598388671875,843.5753173828125,-1219.263427734375,-1110.9598388671875,843.5751953125,-951.6314697265625,-1102.2774658203125,843.5753173828125,-1219.263427734375,-1110.9598388671875,843.5751953125,-951.6314697265625,-1102.2774658203125,843.5751953125,-951.6314697265625,-1110.9598388671875,843.5753173828125,-1219.263427734375,-1119.11865234375,840.605712890625,-1219.263427734375,-1119.11865234375,840.605712890625,-951.6314697265625,-1110.9598388671875,843.5753173828125,-1219.263427734375,-1119.11865234375,840.605712890625,-951.6314697265625,-1110.9598388671875,843.5751953125,-951.6314697265625,-1119.11865234375,840.605712890625,-1219.263427734375,-1125.769775390625,835.0247192382812,-1219.263427734375,-1125.769775390625,835.0247192382812,-951.6314697265625,-1119.11865234375,840.605712890625,-1219.263427734375,-1125.769775390625,835.0247192382812,-951.6314697265625,-1119.11865234375,840.605712890625,-951.6314697265625,-1125.769775390625,835.0247192382812,-1219.263427734375,-1130.1109619140625,827.505615234375,-1219.263427734375,-1130.1109619140625,827.5054931640625,-951.6314697265625,-1125.769775390625,835.0247192382812,-1219.263427734375,-1130.1109619140625,827.5054931640625,-951.6314697265625,-1125.769775390625,835.0247192382812,-951.6314697265625,-1130.1109619140625,827.505615234375,-1219.263427734375,-1131.61865234375,818.955078125,-1219.263427734375,-1131.61865234375,818.9550170898438,-951.6314697265625,-1130.1109619140625,827.505615234375,-1219.263427734375,-1131.61865234375,818.9550170898438,-951.6314697265625,-1130.1109619140625,827.5054931640625,-951.6314697265625,-1131.61865234375,818.955078125,-1219.263427734375,-1130.1109619140625,810.4044799804688,-1219.263427734375,-1130.1109619140625,810.4044799804688,-951.6314697265625,-1131.61865234375,818.955078125,-1219.263427734375,-1130.1109619140625,810.4044799804688,-951.6314697265625,-1131.61865234375,818.9550170898438,-951.6314697265625,-1130.1109619140625,810.4044799804688,-1219.263427734375,-1125.769775390625,802.8853759765625,-1219.263427734375,-1125.769775390625,802.8853149414062,-951.6314697265625,-1130.1109619140625,810.4044799804688,-1219.263427734375,-1125.769775390625,802.8853149414062,-951.6314697265625,-1130.1109619140625,810.4044799804688,-951.6314697265625,-1125.769775390625,802.8853759765625,-1219.263427734375,-1119.11865234375,797.3043823242188,-1219.263427734375,-1119.11865234375,797.3043823242188,-951.6314697265625,-1125.769775390625,802.8853759765625,-1219.263427734375,-1119.11865234375,797.3043823242188,-951.6314697265625,-1125.769775390625,802.8853149414062,-951.6314697265625,-1119.11865234375,797.3043823242188,-1219.263427734375,-1110.9598388671875,794.3347778320312,-1219.263427734375,-1110.9598388671875,794.3347778320312,-951.6314697265625,-1119.11865234375,797.3043823242188,-1219.263427734375,-1110.9598388671875,794.3347778320312,-951.6314697265625,-1119.11865234375,797.3043823242188,-951.6314697265625,-1110.9598388671875,794.3347778320312,-1219.263427734375,-1102.2774658203125,794.3347778320312,-1219.263427734375,-1102.2774658203125,794.3347778320312,-951.6314697265625,-1110.9598388671875,794.3347778320312,-1219.263427734375,-1102.2774658203125,794.3347778320312,-951.6314697265625,-1110.9598388671875,794.3347778320312,-951.6314697265625,-1102.2774658203125,794.3347778320312,-1219.263427734375,-1094.11865234375,797.3043823242188,-1219.263427734375,-1094.11865234375,797.3043823242188,-951.6314697265625,-1102.2774658203125,794.3347778320312,-1219.263427734375,-1094.11865234375,797.3043823242188,-951.6314697265625,-1102.2774658203125,794.3347778320312,-951.6314697265625,-1094.11865234375,797.3043823242188,-1219.263427734375,-1087.467529296875,802.8853759765625,-1219.263427734375,-1087.467529296875,802.8853149414062,-951.6314697265625,-1094.11865234375,797.3043823242188,-1219.263427734375,-1087.467529296875,802.8853149414062,-951.6314697265625,-1094.11865234375,797.3043823242188,-951.6314697265625,-1087.467529296875,802.8853759765625,-1219.263427734375,-1083.1263427734375,810.4044799804688,-1219.263427734375,-1083.1263427734375,810.4044799804688,-951.6314697265625,-1087.467529296875,802.8853759765625,-1219.263427734375,-1083.1263427734375,810.4044799804688,-951.6314697265625,-1087.467529296875,802.8853149414062,-951.6314697265625,-1083.1263427734375,810.4044799804688,-1219.263427734375,-1081.61865234375,818.955078125,-1219.263427734375,-1081.61865234375,818.9550170898438,-951.6314697265625,-1083.1263427734375,810.4044799804688,-1219.263427734375,-1081.61865234375,818.9550170898438,-951.6314697265625,-1083.1263427734375,810.4044799804688,-951.6314697265625,-1081.61865234375,818.9550170898438,-951.6314697265625,-1083.1263427734375,827.5054931640625,-951.6314697265625,-1083.1263427734375,827.5054931640625,-683.9995727539062,-1081.61865234375,818.9550170898438,-951.6314697265625,-1083.1263427734375,827.5054931640625,-683.9995727539062,-1081.61865234375,818.9550170898438,-683.9995727539062,-1083.1263427734375,827.5054931640625,-951.6314697265625,-1087.467529296875,835.0247192382812,-951.6314697265625,-1087.467529296875,835.0247192382812,-683.9995727539062,-1083.1263427734375,827.5054931640625,-951.6314697265625,-1087.467529296875,835.0247192382812,-683.9995727539062,-1083.1263427734375,827.5054931640625,-683.9995727539062,-1087.467529296875,835.0247192382812,-951.6314697265625,-1094.11865234375,840.605712890625,-951.6314697265625,-1094.11865234375,840.6055908203125,-683.9995727539062,-1087.467529296875,835.0247192382812,-951.6314697265625,-1094.11865234375,840.6055908203125,-683.9995727539062,-1087.467529296875,835.0247192382812,-683.9995727539062,-1094.11865234375,840.605712890625,-951.6314697265625,-1102.2774658203125,843.5751953125,-951.6314697265625,-1102.2774658203125,843.5750732421875,-683.9995727539062,-1094.11865234375,840.605712890625,-951.6314697265625,-1102.2774658203125,843.5750732421875,-683.9995727539062,-1094.11865234375,840.6055908203125,-683.9995727539062,-1102.2774658203125,843.5751953125,-951.6314697265625,-1110.9598388671875,843.5751953125,-951.6314697265625,-1110.9598388671875,843.5750732421875,-683.9995727539062,-1102.2774658203125,843.5751953125,-951.6314697265625,-1110.9598388671875,843.5750732421875,-683.9995727539062,-1102.2774658203125,843.5750732421875,-683.9995727539062,-1110.9598388671875,843.5751953125,-951.6314697265625,-1119.11865234375,840.605712890625,-951.6314697265625,-1119.11865234375,840.6055908203125,-683.9995727539062,-1110.9598388671875,843.5751953125,-951.6314697265625,-1119.11865234375,840.6055908203125,-683.9995727539062,-1110.9598388671875,843.5750732421875,-683.9995727539062,-1119.11865234375,840.605712890625,-951.6314697265625,-1125.769775390625,835.0247192382812,-951.6314697265625,-1125.769775390625,835.0247192382812,-683.9995727539062,-1119.11865234375,840.605712890625,-951.6314697265625,-1125.769775390625,835.0247192382812,-683.9995727539062,-1119.11865234375,840.6055908203125,-683.9995727539062,-1125.769775390625,835.0247192382812,-951.6314697265625,-1130.1109619140625,827.5054931640625,-951.6314697265625,-1130.1109619140625,827.5054931640625,-683.9995727539062,-1125.769775390625,835.0247192382812,-951.6314697265625,-1130.1109619140625,827.5054931640625,-683.9995727539062,-1125.769775390625,835.0247192382812,-683.9995727539062,-1130.1109619140625,827.5054931640625,-951.6314697265625,-1131.61865234375,818.9550170898438,-951.6314697265625,-1131.61865234375,818.9550170898438,-683.9995727539062,-1130.1109619140625,827.5054931640625,-951.6314697265625,-1131.61865234375,818.9550170898438,-683.9995727539062,-1130.1109619140625,827.5054931640625,-683.9995727539062,-1131.61865234375,818.9550170898438,-951.6314697265625,-1130.1109619140625,810.4044799804688,-951.6314697265625,-1130.1109619140625,810.4044799804688,-683.9995727539062,-1131.61865234375,818.9550170898438,-951.6314697265625,-1130.1109619140625,810.4044799804688,-683.9995727539062,-1131.61865234375,818.9550170898438,-683.9995727539062,-1130.1109619140625,810.4044799804688,-951.6314697265625,-1125.769775390625,802.8853149414062,-951.6314697265625,-1125.769775390625,802.8853149414062,-683.9995727539062,-1130.1109619140625,810.4044799804688,-951.6314697265625,-1125.769775390625,802.8853149414062,-683.9995727539062,-1130.1109619140625,810.4044799804688,-683.9995727539062,-1125.769775390625,802.8853149414062,-951.6314697265625,-1119.11865234375,797.3043823242188,-951.6314697265625,-1119.11865234375,797.3043212890625,-683.9995727539062,-1125.769775390625,802.8853149414062,-951.6314697265625,-1119.11865234375,797.3043212890625,-683.9995727539062,-1125.769775390625,802.8853149414062,-683.9995727539062,-1119.11865234375,797.3043823242188,-951.6314697265625,-1110.9598388671875,794.3347778320312,-951.6314697265625,-1110.9598388671875,794.3347778320312,-683.9995727539062,-1119.11865234375,797.3043823242188,-951.6314697265625,-1110.9598388671875,794.3347778320312,-683.9995727539062,-1119.11865234375,797.3043212890625,-683.9995727539062,-1110.9598388671875,794.3347778320312,-951.6314697265625,-1102.2774658203125,794.3347778320312,-951.6314697265625,-1102.2774658203125,794.3347778320312,-683.9995727539062,-1110.9598388671875,794.3347778320312,-951.6314697265625,-1102.2774658203125,794.3347778320312,-683.9995727539062,-1110.9598388671875,794.3347778320312,-683.9995727539062,-1102.2774658203125,794.3347778320312,-951.6314697265625,-1094.11865234375,797.3043823242188,-951.6314697265625,-1094.11865234375,797.3043212890625,-683.9995727539062,-1102.2774658203125,794.3347778320312,-951.6314697265625,-1094.11865234375,797.3043212890625,-683.9995727539062,-1102.2774658203125,794.3347778320312,-683.9995727539062,-1094.11865234375,797.3043823242188,-951.6314697265625,-1087.467529296875,802.8853149414062,-951.6314697265625,-1087.467529296875,802.8853149414062,-683.9995727539062,-1094.11865234375,797.3043823242188,-951.6314697265625,-1087.467529296875,802.8853149414062,-683.9995727539062,-1094.11865234375,797.3043212890625,-683.9995727539062,-1087.467529296875,802.8853149414062,-951.6314697265625,-1083.1263427734375,810.4044799804688,-951.6314697265625,-1083.1263427734375,810.4044189453125,-683.9995727539062,-1087.467529296875,802.8853149414062,-951.6314697265625,-1083.1263427734375,810.4044189453125,-683.9995727539062,-1087.467529296875,802.8853149414062,-683.9995727539062,-1083.1263427734375,810.4044799804688,-951.6314697265625,-1081.61865234375,818.9550170898438,-951.6314697265625,-1081.61865234375,818.9550170898438,-683.9995727539062,-1083.1263427734375,810.4044799804688,-951.6314697265625,-1081.61865234375,818.9550170898438,-683.9995727539062,-1083.1263427734375,810.4044189453125,-683.9995727539062,-1081.61865234375,818.9550170898438,-683.9995727539062,-1083.1263427734375,827.5054931640625,-683.9995727539062,-1083.1263427734375,827.50537109375,-416.3677062988281,-1081.61865234375,818.9550170898438,-683.9995727539062,-1083.1263427734375,827.50537109375,-416.3677062988281,-1081.61865234375,818.9548950195312,-416.3677062988281,-1083.1263427734375,827.5054931640625,-683.9995727539062,-1087.467529296875,835.0247192382812,-683.9995727539062,-1087.467529296875,835.0245971679688,-416.3677062988281,-1083.1263427734375,827.5054931640625,-683.9995727539062,-1087.467529296875,835.0245971679688,-416.3677062988281,-1083.1263427734375,827.50537109375,-416.3677062988281,-1087.467529296875,835.0247192382812,-683.9995727539062,-1094.11865234375,840.6055908203125,-683.9995727539062,-1094.11865234375,840.6055297851562,-416.3677062988281,-1087.467529296875,835.0247192382812,-683.9995727539062,-1094.11865234375,840.6055297851562,-416.3677062988281,-1087.467529296875,835.0245971679688,-416.3677062988281,-1094.11865234375,840.6055908203125,-683.9995727539062,-1102.2774658203125,843.5750732421875,-683.9995727539062,-1102.2774658203125,843.5750732421875,-416.3677062988281,-1094.11865234375,840.6055908203125,-683.9995727539062,-1102.2774658203125,843.5750732421875,-416.3677062988281,-1094.11865234375,840.6055297851562,-416.3677062988281,-1102.2774658203125,843.5750732421875,-683.9995727539062,-1110.9598388671875,843.5750732421875,-683.9995727539062,-1110.9598388671875,843.5750732421875,-416.3677062988281,-1102.2774658203125,843.5750732421875,-683.9995727539062,-1110.9598388671875,843.5750732421875,-416.3677062988281,-1102.2774658203125,843.5750732421875,-416.3677062988281,-1110.9598388671875,843.5750732421875,-683.9995727539062,-1119.11865234375,840.6055908203125,-683.9995727539062,-1119.11865234375,840.6055297851562,-416.3677062988281,-1110.9598388671875,843.5750732421875,-683.9995727539062,-1119.11865234375,840.6055297851562,-416.3677062988281,-1110.9598388671875,843.5750732421875,-416.3677062988281,-1119.11865234375,840.6055908203125,-683.9995727539062,-1125.769775390625,835.0247192382812,-683.9995727539062,-1125.769775390625,835.0245971679688,-416.3677062988281,-1119.11865234375,840.6055908203125,-683.9995727539062,-1125.769775390625,835.0245971679688,-416.3677062988281,-1119.11865234375,840.6055297851562,-416.3677062988281,-1125.769775390625,835.0247192382812,-683.9995727539062,-1130.1109619140625,827.5054931640625,-683.9995727539062,-1130.1109619140625,827.50537109375,-416.3677062988281,-1125.769775390625,835.0247192382812,-683.9995727539062,-1130.1109619140625,827.50537109375,-416.3677062988281,-1125.769775390625,835.0245971679688,-416.3677062988281,-1130.1109619140625,827.5054931640625,-683.9995727539062,-1131.61865234375,818.9550170898438,-683.9995727539062,-1131.61865234375,818.9548950195312,-416.3677062988281,-1130.1109619140625,827.5054931640625,-683.9995727539062,-1131.61865234375,818.9548950195312,-416.3677062988281,-1130.1109619140625,827.50537109375,-416.3677062988281,-1131.61865234375,818.9550170898438,-683.9995727539062,-1130.1109619140625,810.4044799804688,-683.9995727539062,-1130.1109619140625,810.4044189453125,-416.3677062988281,-1131.61865234375,818.9550170898438,-683.9995727539062,-1130.1109619140625,810.4044189453125,-416.3677062988281,-1131.61865234375,818.9548950195312,-416.3677062988281,-1130.1109619140625,810.4044799804688,-683.9995727539062,-1125.769775390625,802.8853149414062,-683.9995727539062,-1125.769775390625,802.8853149414062,-416.3677062988281,-1130.1109619140625,810.4044799804688,-683.9995727539062,-1125.769775390625,802.8853149414062,-416.3677062988281,-1130.1109619140625,810.4044189453125,-416.3677062988281,-1125.769775390625,802.8853149414062,-683.9995727539062,-1119.11865234375,797.3043212890625,-683.9995727539062,-1119.11865234375,797.3043212890625,-416.3677062988281,-1125.769775390625,802.8853149414062,-683.9995727539062,-1119.11865234375,797.3043212890625,-416.3677062988281,-1125.769775390625,802.8853149414062,-416.3677062988281,-1119.11865234375,797.3043212890625,-683.9995727539062,-1110.9598388671875,794.3347778320312,-683.9995727539062,-1110.9598388671875,794.334716796875,-416.3677062988281,-1119.11865234375,797.3043212890625,-683.9995727539062,-1110.9598388671875,794.334716796875,-416.3677062988281,-1119.11865234375,797.3043212890625,-416.3677062988281,-1110.9598388671875,794.3347778320312,-683.9995727539062,-1102.2774658203125,794.3347778320312,-683.9995727539062,-1102.2774658203125,794.334716796875,-416.3677062988281,-1110.9598388671875,794.3347778320312,-683.9995727539062,-1102.2774658203125,794.334716796875,-416.3677062988281,-1110.9598388671875,794.334716796875,-416.3677062988281,-1102.2774658203125,794.3347778320312,-683.9995727539062,-1094.11865234375,797.3043212890625,-683.9995727539062,-1094.11865234375,797.3043212890625,-416.3677062988281,-1102.2774658203125,794.3347778320312,-683.9995727539062,-1094.11865234375,797.3043212890625,-416.3677062988281,-1102.2774658203125,794.334716796875,-416.3677062988281,-1094.11865234375,797.3043212890625,-683.9995727539062,-1087.467529296875,802.8853149414062,-683.9995727539062,-1087.467529296875,802.8851928710938,-416.3677062988281,-1094.11865234375,797.3043212890625,-683.9995727539062,-1087.467529296875,802.8851928710938,-416.3677062988281,-1094.11865234375,797.3043212890625,-416.3677062988281,-1087.467529296875,802.8853149414062,-683.9995727539062,-1083.1263427734375,810.4044189453125,-683.9995727539062,-1083.1263427734375,810.4044189453125,-416.3677062988281,-1087.467529296875,802.8853149414062,-683.9995727539062,-1083.1263427734375,810.4044189453125,-416.3677062988281,-1087.467529296875,802.8851928710938,-416.3677062988281,-1083.1263427734375,810.4044189453125,-683.9995727539062,-1081.61865234375,818.9550170898438,-683.9995727539062,-1081.61865234375,818.9548950195312,-416.3677062988281,-1083.1263427734375,810.4044189453125,-683.9995727539062,-1081.61865234375,818.9548950195312,-416.3677062988281,-1083.1263427734375,810.4044189453125,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1083.1263427734375,810.4044189453125,-416.3677062988281,-1081.61865234375,818.9548950195312,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1081.61865234375,818.9548950195312,-416.3677062988281,-1083.1263427734375,827.50537109375,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1083.1263427734375,827.50537109375,-416.3677062988281,-1087.467529296875,835.0245971679688,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1087.467529296875,835.0245971679688,-416.3677062988281,-1094.11865234375,840.6055297851562,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1094.11865234375,840.6055297851562,-416.3677062988281,-1102.2774658203125,843.5750732421875,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1102.2774658203125,843.5750732421875,-416.3677062988281,-1110.9598388671875,843.5750732421875,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1110.9598388671875,843.5750732421875,-416.3677062988281,-1119.11865234375,840.6055297851562,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1119.11865234375,840.6055297851562,-416.3677062988281,-1125.769775390625,835.0245971679688,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1125.769775390625,835.0245971679688,-416.3677062988281,-1130.1109619140625,827.50537109375,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1130.1109619140625,827.50537109375,-416.3677062988281,-1131.61865234375,818.9548950195312,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1131.61865234375,818.9548950195312,-416.3677062988281,-1130.1109619140625,810.4044189453125,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1130.1109619140625,810.4044189453125,-416.3677062988281,-1125.769775390625,802.8853149414062,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1125.769775390625,802.8853149414062,-416.3677062988281,-1119.11865234375,797.3043212890625,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1119.11865234375,797.3043212890625,-416.3677062988281,-1110.9598388671875,794.334716796875,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1110.9598388671875,794.334716796875,-416.3677062988281,-1102.2774658203125,794.334716796875,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1102.2774658203125,794.334716796875,-416.3677062988281,-1094.11865234375,797.3043212890625,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1094.11865234375,797.3043212890625,-416.3677062988281,-1087.467529296875,802.8851928710938,-416.3677062988281,-1106.61865234375,818.9548950195312,-416.3677062988281,-1087.467529296875,802.8851928710938,-416.3677062988281,-1083.1263427734375,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-1106.61865234375,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466581371704
| }
| }
| },
| {
| "uuid": "D7A50567-976E-4B9E-BCD2-664E0D891304",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-1006.6187133789062,818.955078125,-1754.5272216796875,-987.467529296875,835.0247802734375,-1754.5272216796875,-983.1262817382812,827.505615234375,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-983.1262817382812,827.505615234375,-1754.5272216796875,-981.6187133789062,818.955078125,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-1002.2775268554688,843.5753173828125,-1754.5272216796875,-994.1187133789062,840.6057739257812,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-994.1187133789062,840.6057739257812,-1754.5272216796875,-987.467529296875,835.0247802734375,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-1019.1187133789062,840.6057739257812,-1754.5272216796875,-1010.9597778320312,843.5753173828125,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-1010.9597778320312,843.5753173828125,-1754.5272216796875,-1002.2775268554688,843.5753173828125,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-1030.1109619140625,827.505615234375,-1754.5272216796875,-1025.769775390625,835.0247802734375,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-1025.769775390625,835.0247802734375,-1754.5272216796875,-1019.1187133789062,840.6057739257812,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-1030.1109619140625,810.4047241210938,-1754.5272216796875,-1031.61865234375,818.955078125,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-1031.61865234375,818.955078125,-1754.5272216796875,-1030.1109619140625,827.505615234375,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-1019.1187133789062,797.3045043945312,-1754.5272216796875,-1025.769775390625,802.8853759765625,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-1025.769775390625,802.8853759765625,-1754.5272216796875,-1030.1109619140625,810.4047241210938,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-1002.2775268554688,794.3350219726562,-1754.5272216796875,-1010.9597778320312,794.3350219726562,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-1010.9597778320312,794.3350219726562,-1754.5272216796875,-1019.1187133789062,797.3045043945312,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-987.467529296875,802.8853759765625,-1754.5272216796875,-994.1187133789062,797.3045043945312,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-994.1187133789062,797.3045043945312,-1754.5272216796875,-1002.2775268554688,794.3350219726562,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-981.6187133789062,818.955078125,-1754.5272216796875,-983.1262817382812,810.4046020507812,-1754.5272216796875,-1006.6187133789062,818.955078125,-1754.5272216796875,-983.1262817382812,810.4046020507812,-1754.5272216796875,-987.467529296875,802.8853759765625,-1754.5272216796875,-981.6187133789062,818.955078125,-1754.5272216796875,-983.1262817382812,827.505615234375,-1754.5272216796875,-983.1262817382812,827.505615234375,-1486.895263671875,-981.6187133789062,818.955078125,-1754.5272216796875,-983.1262817382812,827.505615234375,-1486.895263671875,-981.6187133789062,818.955078125,-1486.895263671875,-983.1262817382812,827.505615234375,-1754.5272216796875,-987.467529296875,835.0247802734375,-1754.5272216796875,-987.467529296875,835.0247802734375,-1486.895263671875,-983.1262817382812,827.505615234375,-1754.5272216796875,-987.467529296875,835.0247802734375,-1486.895263671875,-983.1262817382812,827.505615234375,-1486.895263671875,-987.467529296875,835.0247802734375,-1754.5272216796875,-994.1187133789062,840.6057739257812,-1754.5272216796875,-994.1187133789062,840.605712890625,-1486.895263671875,-987.467529296875,835.0247802734375,-1754.5272216796875,-994.1187133789062,840.605712890625,-1486.895263671875,-987.467529296875,835.0247802734375,-1486.895263671875,-994.1187133789062,840.6057739257812,-1754.5272216796875,-1002.2775268554688,843.5753173828125,-1754.5272216796875,-1002.2775268554688,843.5753173828125,-1486.895263671875,-994.1187133789062,840.6057739257812,-1754.5272216796875,-1002.2775268554688,843.5753173828125,-1486.895263671875,-994.1187133789062,840.605712890625,-1486.895263671875,-1002.2775268554688,843.5753173828125,-1754.5272216796875,-1010.9597778320312,843.5753173828125,-1754.5272216796875,-1010.9597778320312,843.5753173828125,-1486.895263671875,-1002.2775268554688,843.5753173828125,-1754.5272216796875,-1010.9597778320312,843.5753173828125,-1486.895263671875,-1002.2775268554688,843.5753173828125,-1486.895263671875,-1010.9597778320312,843.5753173828125,-1754.5272216796875,-1019.1187133789062,840.6057739257812,-1754.5272216796875,-1019.1187133789062,840.605712890625,-1486.895263671875,-1010.9597778320312,843.5753173828125,-1754.5272216796875,-1019.1187133789062,840.605712890625,-1486.895263671875,-1010.9597778320312,843.5753173828125,-1486.895263671875,-1019.1187133789062,840.6057739257812,-1754.5272216796875,-1025.769775390625,835.0247802734375,-1754.5272216796875,-1025.769775390625,835.0247802734375,-1486.895263671875,-1019.1187133789062,840.6057739257812,-1754.5272216796875,-1025.769775390625,835.0247802734375,-1486.895263671875,-1019.1187133789062,840.605712890625,-1486.895263671875,-1025.769775390625,835.0247802734375,-1754.5272216796875,-1030.1109619140625,827.505615234375,-1754.5272216796875,-1030.1109619140625,827.505615234375,-1486.895263671875,-1025.769775390625,835.0247802734375,-1754.5272216796875,-1030.1109619140625,827.505615234375,-1486.895263671875,-1025.769775390625,835.0247802734375,-1486.895263671875,-1030.1109619140625,827.505615234375,-1754.5272216796875,-1031.61865234375,818.955078125,-1754.5272216796875,-1031.61865234375,818.955078125,-1486.895263671875,-1030.1109619140625,827.505615234375,-1754.5272216796875,-1031.61865234375,818.955078125,-1486.895263671875,-1030.1109619140625,827.505615234375,-1486.895263671875,-1031.61865234375,818.955078125,-1754.5272216796875,-1030.1109619140625,810.4047241210938,-1754.5272216796875,-1030.1109619140625,810.4046020507812,-1486.895263671875,-1031.61865234375,818.955078125,-1754.5272216796875,-1030.1109619140625,810.4046020507812,-1486.895263671875,-1031.61865234375,818.955078125,-1486.895263671875,-1030.1109619140625,810.4047241210938,-1754.5272216796875,-1025.769775390625,802.8853759765625,-1754.5272216796875,-1025.769775390625,802.8853759765625,-1486.895263671875,-1030.1109619140625,810.4047241210938,-1754.5272216796875,-1025.769775390625,802.8853759765625,-1486.895263671875,-1030.1109619140625,810.4046020507812,-1486.895263671875,-1025.769775390625,802.8853759765625,-1754.5272216796875,-1019.1187133789062,797.3045043945312,-1754.5272216796875,-1019.1187133789062,797.3043823242188,-1486.895263671875,-1025.769775390625,802.8853759765625,-1754.5272216796875,-1019.1187133789062,797.3043823242188,-1486.895263671875,-1025.769775390625,802.8853759765625,-1486.895263671875,-1019.1187133789062,797.3045043945312,-1754.5272216796875,-1010.9597778320312,794.3350219726562,-1754.5272216796875,-1010.9597778320312,794.3348999023438,-1486.895263671875,-1019.1187133789062,797.3045043945312,-1754.5272216796875,-1010.9597778320312,794.3348999023438,-1486.895263671875,-1019.1187133789062,797.3043823242188,-1486.895263671875,-1010.9597778320312,794.3350219726562,-1754.5272216796875,-1002.2775268554688,794.3350219726562,-1754.5272216796875,-1002.2775268554688,794.3348999023438,-1486.895263671875,-1010.9597778320312,794.3350219726562,-1754.5272216796875,-1002.2775268554688,794.3348999023438,-1486.895263671875,-1010.9597778320312,794.3348999023438,-1486.895263671875,-1002.2775268554688,794.3350219726562,-1754.5272216796875,-994.1187133789062,797.3045043945312,-1754.5272216796875,-994.1187133789062,797.3043823242188,-1486.895263671875,-1002.2775268554688,794.3350219726562,-1754.5272216796875,-994.1187133789062,797.3043823242188,-1486.895263671875,-1002.2775268554688,794.3348999023438,-1486.895263671875,-994.1187133789062,797.3045043945312,-1754.5272216796875,-987.467529296875,802.8853759765625,-1754.5272216796875,-987.467529296875,802.8853759765625,-1486.895263671875,-994.1187133789062,797.3045043945312,-1754.5272216796875,-987.467529296875,802.8853759765625,-1486.895263671875,-994.1187133789062,797.3043823242188,-1486.895263671875,-987.467529296875,802.8853759765625,-1754.5272216796875,-983.1262817382812,810.4046020507812,-1754.5272216796875,-983.1262817382812,810.4046020507812,-1486.895263671875,-987.467529296875,802.8853759765625,-1754.5272216796875,-983.1262817382812,810.4046020507812,-1486.895263671875,-987.467529296875,802.8853759765625,-1486.895263671875,-983.1262817382812,810.4046020507812,-1754.5272216796875,-981.6187133789062,818.955078125,-1754.5272216796875,-981.6187133789062,818.955078125,-1486.895263671875,-983.1262817382812,810.4046020507812,-1754.5272216796875,-981.6187133789062,818.955078125,-1486.895263671875,-983.1262817382812,810.4046020507812,-1486.895263671875,-981.6187133789062,818.955078125,-1486.895263671875,-983.1262817382812,827.505615234375,-1486.895263671875,-983.1262817382812,827.505615234375,-1219.263427734375,-981.6187133789062,818.955078125,-1486.895263671875,-983.1262817382812,827.505615234375,-1219.263427734375,-981.6187133789062,818.955078125,-1219.263427734375,-983.1262817382812,827.505615234375,-1486.895263671875,-987.467529296875,835.0247802734375,-1486.895263671875,-987.467529296875,835.0247192382812,-1219.263427734375,-983.1262817382812,827.505615234375,-1486.895263671875,-987.467529296875,835.0247192382812,-1219.263427734375,-983.1262817382812,827.505615234375,-1219.263427734375,-987.467529296875,835.0247802734375,-1486.895263671875,-994.1187133789062,840.605712890625,-1486.895263671875,-994.1187133789062,840.605712890625,-1219.263427734375,-987.467529296875,835.0247802734375,-1486.895263671875,-994.1187133789062,840.605712890625,-1219.263427734375,-987.467529296875,835.0247192382812,-1219.263427734375,-994.1187133789062,840.605712890625,-1486.895263671875,-1002.2775268554688,843.5753173828125,-1486.895263671875,-1002.2775268554688,843.5753173828125,-1219.263427734375,-994.1187133789062,840.605712890625,-1486.895263671875,-1002.2775268554688,843.5753173828125,-1219.263427734375,-994.1187133789062,840.605712890625,-1219.263427734375,-1002.2775268554688,843.5753173828125,-1486.895263671875,-1010.9597778320312,843.5753173828125,-1486.895263671875,-1010.9597778320312,843.5753173828125,-1219.263427734375,-1002.2775268554688,843.5753173828125,-1486.895263671875,-1010.9597778320312,843.5753173828125,-1219.263427734375,-1002.2775268554688,843.5753173828125,-1219.263427734375,-1010.9597778320312,843.5753173828125,-1486.895263671875,-1019.1187133789062,840.605712890625,-1486.895263671875,-1019.1187133789062,840.605712890625,-1219.263427734375,-1010.9597778320312,843.5753173828125,-1486.895263671875,-1019.1187133789062,840.605712890625,-1219.263427734375,-1010.9597778320312,843.5753173828125,-1219.263427734375,-1019.1187133789062,840.605712890625,-1486.895263671875,-1025.769775390625,835.0247802734375,-1486.895263671875,-1025.769775390625,835.0247192382812,-1219.263427734375,-1019.1187133789062,840.605712890625,-1486.895263671875,-1025.769775390625,835.0247192382812,-1219.263427734375,-1019.1187133789062,840.605712890625,-1219.263427734375,-1025.769775390625,835.0247802734375,-1486.895263671875,-1030.1109619140625,827.505615234375,-1486.895263671875,-1030.1109619140625,827.505615234375,-1219.263427734375,-1025.769775390625,835.0247802734375,-1486.895263671875,-1030.1109619140625,827.505615234375,-1219.263427734375,-1025.769775390625,835.0247192382812,-1219.263427734375,-1030.1109619140625,827.505615234375,-1486.895263671875,-1031.61865234375,818.955078125,-1486.895263671875,-1031.61865234375,818.955078125,-1219.263427734375,-1030.1109619140625,827.505615234375,-1486.895263671875,-1031.61865234375,818.955078125,-1219.263427734375,-1030.1109619140625,827.505615234375,-1219.263427734375,-1031.61865234375,818.955078125,-1486.895263671875,-1030.1109619140625,810.4046020507812,-1486.895263671875,-1030.1109619140625,810.4044799804688,-1219.263427734375,-1031.61865234375,818.955078125,-1486.895263671875,-1030.1109619140625,810.4044799804688,-1219.263427734375,-1031.61865234375,818.955078125,-1219.263427734375,-1030.1109619140625,810.4046020507812,-1486.895263671875,-1025.769775390625,802.8853759765625,-1486.895263671875,-1025.769775390625,802.8853759765625,-1219.263427734375,-1030.1109619140625,810.4046020507812,-1486.895263671875,-1025.769775390625,802.8853759765625,-1219.263427734375,-1030.1109619140625,810.4044799804688,-1219.263427734375,-1025.769775390625,802.8853759765625,-1486.895263671875,-1019.1187133789062,797.3043823242188,-1486.895263671875,-1019.1187133789062,797.3043823242188,-1219.263427734375,-1025.769775390625,802.8853759765625,-1486.895263671875,-1019.1187133789062,797.3043823242188,-1219.263427734375,-1025.769775390625,802.8853759765625,-1219.263427734375,-1019.1187133789062,797.3043823242188,-1486.895263671875,-1010.9597778320312,794.3348999023438,-1486.895263671875,-1010.9597778320312,794.3347778320312,-1219.263427734375,-1019.1187133789062,797.3043823242188,-1486.895263671875,-1010.9597778320312,794.3347778320312,-1219.263427734375,-1019.1187133789062,797.3043823242188,-1219.263427734375,-1010.9597778320312,794.3348999023438,-1486.895263671875,-1002.2775268554688,794.3348999023438,-1486.895263671875,-1002.2775268554688,794.3347778320312,-1219.263427734375,-1010.9597778320312,794.3348999023438,-1486.895263671875,-1002.2775268554688,794.3347778320312,-1219.263427734375,-1010.9597778320312,794.3347778320312,-1219.263427734375,-1002.2775268554688,794.3348999023438,-1486.895263671875,-994.1187133789062,797.3043823242188,-1486.895263671875,-994.1187133789062,797.3043823242188,-1219.263427734375,-1002.2775268554688,794.3348999023438,-1486.895263671875,-994.1187133789062,797.3043823242188,-1219.263427734375,-1002.2775268554688,794.3347778320312,-1219.263427734375,-994.1187133789062,797.3043823242188,-1486.895263671875,-987.467529296875,802.8853759765625,-1486.895263671875,-987.467529296875,802.8853759765625,-1219.263427734375,-994.1187133789062,797.3043823242188,-1486.895263671875,-987.467529296875,802.8853759765625,-1219.263427734375,-994.1187133789062,797.3043823242188,-1219.263427734375,-987.467529296875,802.8853759765625,-1486.895263671875,-983.1262817382812,810.4046020507812,-1486.895263671875,-983.1262817382812,810.4044799804688,-1219.263427734375,-987.467529296875,802.8853759765625,-1486.895263671875,-983.1262817382812,810.4044799804688,-1219.263427734375,-987.467529296875,802.8853759765625,-1219.263427734375,-983.1262817382812,810.4046020507812,-1486.895263671875,-981.6187133789062,818.955078125,-1486.895263671875,-981.6187133789062,818.955078125,-1219.263427734375,-983.1262817382812,810.4046020507812,-1486.895263671875,-981.6187133789062,818.955078125,-1219.263427734375,-983.1262817382812,810.4044799804688,-1219.263427734375,-981.6187133789062,818.955078125,-1219.263427734375,-983.1262817382812,827.505615234375,-1219.263427734375,-983.1262817382812,827.5054931640625,-951.6314697265625,-981.6187133789062,818.955078125,-1219.263427734375,-983.1262817382812,827.5054931640625,-951.6314697265625,-981.6187133789062,818.9550170898438,-951.6314697265625,-983.1262817382812,827.505615234375,-1219.263427734375,-987.467529296875,835.0247192382812,-1219.263427734375,-987.467529296875,835.0247192382812,-951.6314697265625,-983.1262817382812,827.505615234375,-1219.263427734375,-987.467529296875,835.0247192382812,-951.6314697265625,-983.1262817382812,827.5054931640625,-951.6314697265625,-987.467529296875,835.0247192382812,-1219.263427734375,-994.1187133789062,840.605712890625,-1219.263427734375,-994.1187133789062,840.605712890625,-951.6314697265625,-987.467529296875,835.0247192382812,-1219.263427734375,-994.1187133789062,840.605712890625,-951.6314697265625,-987.467529296875,835.0247192382812,-951.6314697265625,-994.1187133789062,840.605712890625,-1219.263427734375,-1002.2775268554688,843.5753173828125,-1219.263427734375,-1002.2775268554688,843.5751953125,-951.6314697265625,-994.1187133789062,840.605712890625,-1219.263427734375,-1002.2775268554688,843.5751953125,-951.6314697265625,-994.1187133789062,840.605712890625,-951.6314697265625,-1002.2775268554688,843.5753173828125,-1219.263427734375,-1010.9597778320312,843.5753173828125,-1219.263427734375,-1010.9597778320312,843.5751953125,-951.6314697265625,-1002.2775268554688,843.5753173828125,-1219.263427734375,-1010.9597778320312,843.5751953125,-951.6314697265625,-1002.2775268554688,843.5751953125,-951.6314697265625,-1010.9597778320312,843.5753173828125,-1219.263427734375,-1019.1187133789062,840.605712890625,-1219.263427734375,-1019.1187133789062,840.605712890625,-951.6314697265625,-1010.9597778320312,843.5753173828125,-1219.263427734375,-1019.1187133789062,840.605712890625,-951.6314697265625,-1010.9597778320312,843.5751953125,-951.6314697265625,-1019.1187133789062,840.605712890625,-1219.263427734375,-1025.769775390625,835.0247192382812,-1219.263427734375,-1025.769775390625,835.0247192382812,-951.6314697265625,-1019.1187133789062,840.605712890625,-1219.263427734375,-1025.769775390625,835.0247192382812,-951.6314697265625,-1019.1187133789062,840.605712890625,-951.6314697265625,-1025.769775390625,835.0247192382812,-1219.263427734375,-1030.1109619140625,827.505615234375,-1219.263427734375,-1030.1109619140625,827.5054931640625,-951.6314697265625,-1025.769775390625,835.0247192382812,-1219.263427734375,-1030.1109619140625,827.5054931640625,-951.6314697265625,-1025.769775390625,835.0247192382812,-951.6314697265625,-1030.1109619140625,827.505615234375,-1219.263427734375,-1031.61865234375,818.955078125,-1219.263427734375,-1031.61865234375,818.9550170898438,-951.6314697265625,-1030.1109619140625,827.505615234375,-1219.263427734375,-1031.61865234375,818.9550170898438,-951.6314697265625,-1030.1109619140625,827.5054931640625,-951.6314697265625,-1031.61865234375,818.955078125,-1219.263427734375,-1030.1109619140625,810.4044799804688,-1219.263427734375,-1030.1109619140625,810.4044799804688,-951.6314697265625,-1031.61865234375,818.955078125,-1219.263427734375,-1030.1109619140625,810.4044799804688,-951.6314697265625,-1031.61865234375,818.9550170898438,-951.6314697265625,-1030.1109619140625,810.4044799804688,-1219.263427734375,-1025.769775390625,802.8853759765625,-1219.263427734375,-1025.769775390625,802.8853149414062,-951.6314697265625,-1030.1109619140625,810.4044799804688,-1219.263427734375,-1025.769775390625,802.8853149414062,-951.6314697265625,-1030.1109619140625,810.4044799804688,-951.6314697265625,-1025.769775390625,802.8853759765625,-1219.263427734375,-1019.1187133789062,797.3043823242188,-1219.263427734375,-1019.1187133789062,797.3043823242188,-951.6314697265625,-1025.769775390625,802.8853759765625,-1219.263427734375,-1019.1187133789062,797.3043823242188,-951.6314697265625,-1025.769775390625,802.8853149414062,-951.6314697265625,-1019.1187133789062,797.3043823242188,-1219.263427734375,-1010.9597778320312,794.3347778320312,-1219.263427734375,-1010.9597778320312,794.3347778320312,-951.6314697265625,-1019.1187133789062,797.3043823242188,-1219.263427734375,-1010.9597778320312,794.3347778320312,-951.6314697265625,-1019.1187133789062,797.3043823242188,-951.6314697265625,-1010.9597778320312,794.3347778320312,-1219.263427734375,-1002.2775268554688,794.3347778320312,-1219.263427734375,-1002.2775268554688,794.3347778320312,-951.6314697265625,-1010.9597778320312,794.3347778320312,-1219.263427734375,-1002.2775268554688,794.3347778320312,-951.6314697265625,-1010.9597778320312,794.3347778320312,-951.6314697265625,-1002.2775268554688,794.3347778320312,-1219.263427734375,-994.1187133789062,797.3043823242188,-1219.263427734375,-994.1187133789062,797.3043823242188,-951.6314697265625,-1002.2775268554688,794.3347778320312,-1219.263427734375,-994.1187133789062,797.3043823242188,-951.6314697265625,-1002.2775268554688,794.3347778320312,-951.6314697265625,-994.1187133789062,797.3043823242188,-1219.263427734375,-987.467529296875,802.8853759765625,-1219.263427734375,-987.467529296875,802.8853149414062,-951.6314697265625,-994.1187133789062,797.3043823242188,-1219.263427734375,-987.467529296875,802.8853149414062,-951.6314697265625,-994.1187133789062,797.3043823242188,-951.6314697265625,-987.467529296875,802.8853759765625,-1219.263427734375,-983.1262817382812,810.4044799804688,-1219.263427734375,-983.1262817382812,810.4044799804688,-951.6314697265625,-987.467529296875,802.8853759765625,-1219.263427734375,-983.1262817382812,810.4044799804688,-951.6314697265625,-987.467529296875,802.8853149414062,-951.6314697265625,-983.1262817382812,810.4044799804688,-1219.263427734375,-981.6187133789062,818.955078125,-1219.263427734375,-981.6187133789062,818.9550170898438,-951.6314697265625,-983.1262817382812,810.4044799804688,-1219.263427734375,-981.6187133789062,818.9550170898438,-951.6314697265625,-983.1262817382812,810.4044799804688,-951.6314697265625,-981.6187133789062,818.9550170898438,-951.6314697265625,-983.1262817382812,827.5054931640625,-951.6314697265625,-983.1262817382812,827.5054931640625,-683.9995727539062,-981.6187133789062,818.9550170898438,-951.6314697265625,-983.1262817382812,827.5054931640625,-683.9995727539062,-981.6187133789062,818.9550170898438,-683.9995727539062,-983.1262817382812,827.5054931640625,-951.6314697265625,-987.467529296875,835.0247192382812,-951.6314697265625,-987.467529296875,835.0247192382812,-683.9995727539062,-983.1262817382812,827.5054931640625,-951.6314697265625,-987.467529296875,835.0247192382812,-683.9995727539062,-983.1262817382812,827.5054931640625,-683.9995727539062,-987.467529296875,835.0247192382812,-951.6314697265625,-994.1187133789062,840.605712890625,-951.6314697265625,-994.1187133789062,840.6055908203125,-683.9995727539062,-987.467529296875,835.0247192382812,-951.6314697265625,-994.1187133789062,840.6055908203125,-683.9995727539062,-987.467529296875,835.0247192382812,-683.9995727539062,-994.1187133789062,840.605712890625,-951.6314697265625,-1002.2775268554688,843.5751953125,-951.6314697265625,-1002.2775268554688,843.5750732421875,-683.9995727539062,-994.1187133789062,840.605712890625,-951.6314697265625,-1002.2775268554688,843.5750732421875,-683.9995727539062,-994.1187133789062,840.6055908203125,-683.9995727539062,-1002.2775268554688,843.5751953125,-951.6314697265625,-1010.9597778320312,843.5751953125,-951.6314697265625,-1010.9597778320312,843.5750732421875,-683.9995727539062,-1002.2775268554688,843.5751953125,-951.6314697265625,-1010.9597778320312,843.5750732421875,-683.9995727539062,-1002.2775268554688,843.5750732421875,-683.9995727539062,-1010.9597778320312,843.5751953125,-951.6314697265625,-1019.1187133789062,840.605712890625,-951.6314697265625,-1019.1187133789062,840.6055908203125,-683.9995727539062,-1010.9597778320312,843.5751953125,-951.6314697265625,-1019.1187133789062,840.6055908203125,-683.9995727539062,-1010.9597778320312,843.5750732421875,-683.9995727539062,-1019.1187133789062,840.605712890625,-951.6314697265625,-1025.769775390625,835.0247192382812,-951.6314697265625,-1025.769775390625,835.0247192382812,-683.9995727539062,-1019.1187133789062,840.605712890625,-951.6314697265625,-1025.769775390625,835.0247192382812,-683.9995727539062,-1019.1187133789062,840.6055908203125,-683.9995727539062,-1025.769775390625,835.0247192382812,-951.6314697265625,-1030.1109619140625,827.5054931640625,-951.6314697265625,-1030.1109619140625,827.5054931640625,-683.9995727539062,-1025.769775390625,835.0247192382812,-951.6314697265625,-1030.1109619140625,827.5054931640625,-683.9995727539062,-1025.769775390625,835.0247192382812,-683.9995727539062,-1030.1109619140625,827.5054931640625,-951.6314697265625,-1031.61865234375,818.9550170898438,-951.6314697265625,-1031.61865234375,818.9550170898438,-683.9995727539062,-1030.1109619140625,827.5054931640625,-951.6314697265625,-1031.61865234375,818.9550170898438,-683.9995727539062,-1030.1109619140625,827.5054931640625,-683.9995727539062,-1031.61865234375,818.9550170898438,-951.6314697265625,-1030.1109619140625,810.4044799804688,-951.6314697265625,-1030.1109619140625,810.4044799804688,-683.9995727539062,-1031.61865234375,818.9550170898438,-951.6314697265625,-1030.1109619140625,810.4044799804688,-683.9995727539062,-1031.61865234375,818.9550170898438,-683.9995727539062,-1030.1109619140625,810.4044799804688,-951.6314697265625,-1025.769775390625,802.8853149414062,-951.6314697265625,-1025.769775390625,802.8853149414062,-683.9995727539062,-1030.1109619140625,810.4044799804688,-951.6314697265625,-1025.769775390625,802.8853149414062,-683.9995727539062,-1030.1109619140625,810.4044799804688,-683.9995727539062,-1025.769775390625,802.8853149414062,-951.6314697265625,-1019.1187133789062,797.3043823242188,-951.6314697265625,-1019.1187133789062,797.3043212890625,-683.9995727539062,-1025.769775390625,802.8853149414062,-951.6314697265625,-1019.1187133789062,797.3043212890625,-683.9995727539062,-1025.769775390625,802.8853149414062,-683.9995727539062,-1019.1187133789062,797.3043823242188,-951.6314697265625,-1010.9597778320312,794.3347778320312,-951.6314697265625,-1010.9597778320312,794.3347778320312,-683.9995727539062,-1019.1187133789062,797.3043823242188,-951.6314697265625,-1010.9597778320312,794.3347778320312,-683.9995727539062,-1019.1187133789062,797.3043212890625,-683.9995727539062,-1010.9597778320312,794.3347778320312,-951.6314697265625,-1002.2775268554688,794.3347778320312,-951.6314697265625,-1002.2775268554688,794.3347778320312,-683.9995727539062,-1010.9597778320312,794.3347778320312,-951.6314697265625,-1002.2775268554688,794.3347778320312,-683.9995727539062,-1010.9597778320312,794.3347778320312,-683.9995727539062,-1002.2775268554688,794.3347778320312,-951.6314697265625,-994.1187133789062,797.3043823242188,-951.6314697265625,-994.1187133789062,797.3043212890625,-683.9995727539062,-1002.2775268554688,794.3347778320312,-951.6314697265625,-994.1187133789062,797.3043212890625,-683.9995727539062,-1002.2775268554688,794.3347778320312,-683.9995727539062,-994.1187133789062,797.3043823242188,-951.6314697265625,-987.467529296875,802.8853149414062,-951.6314697265625,-987.467529296875,802.8853149414062,-683.9995727539062,-994.1187133789062,797.3043823242188,-951.6314697265625,-987.467529296875,802.8853149414062,-683.9995727539062,-994.1187133789062,797.3043212890625,-683.9995727539062,-987.467529296875,802.8853149414062,-951.6314697265625,-983.1262817382812,810.4044799804688,-951.6314697265625,-983.1262817382812,810.4044189453125,-683.9995727539062,-987.467529296875,802.8853149414062,-951.6314697265625,-983.1262817382812,810.4044189453125,-683.9995727539062,-987.467529296875,802.8853149414062,-683.9995727539062,-983.1262817382812,810.4044799804688,-951.6314697265625,-981.6187133789062,818.9550170898438,-951.6314697265625,-981.6187133789062,818.9550170898438,-683.9995727539062,-983.1262817382812,810.4044799804688,-951.6314697265625,-981.6187133789062,818.9550170898438,-683.9995727539062,-983.1262817382812,810.4044189453125,-683.9995727539062,-981.6187133789062,818.9550170898438,-683.9995727539062,-983.1262817382812,827.5054931640625,-683.9995727539062,-983.1262817382812,827.50537109375,-416.3677062988281,-981.6187133789062,818.9550170898438,-683.9995727539062,-983.1262817382812,827.50537109375,-416.3677062988281,-981.6187133789062,818.9548950195312,-416.3677062988281,-983.1262817382812,827.5054931640625,-683.9995727539062,-987.467529296875,835.0247192382812,-683.9995727539062,-987.467529296875,835.0245971679688,-416.3677062988281,-983.1262817382812,827.5054931640625,-683.9995727539062,-987.467529296875,835.0245971679688,-416.3677062988281,-983.1262817382812,827.50537109375,-416.3677062988281,-987.467529296875,835.0247192382812,-683.9995727539062,-994.1187133789062,840.6055908203125,-683.9995727539062,-994.1187133789062,840.6055297851562,-416.3677062988281,-987.467529296875,835.0247192382812,-683.9995727539062,-994.1187133789062,840.6055297851562,-416.3677062988281,-987.467529296875,835.0245971679688,-416.3677062988281,-994.1187133789062,840.6055908203125,-683.9995727539062,-1002.2775268554688,843.5750732421875,-683.9995727539062,-1002.2775268554688,843.5750732421875,-416.3677062988281,-994.1187133789062,840.6055908203125,-683.9995727539062,-1002.2775268554688,843.5750732421875,-416.3677062988281,-994.1187133789062,840.6055297851562,-416.3677062988281,-1002.2775268554688,843.5750732421875,-683.9995727539062,-1010.9597778320312,843.5750732421875,-683.9995727539062,-1010.9597778320312,843.5750732421875,-416.3677062988281,-1002.2775268554688,843.5750732421875,-683.9995727539062,-1010.9597778320312,843.5750732421875,-416.3677062988281,-1002.2775268554688,843.5750732421875,-416.3677062988281,-1010.9597778320312,843.5750732421875,-683.9995727539062,-1019.1187133789062,840.6055908203125,-683.9995727539062,-1019.1187133789062,840.6055297851562,-416.3677062988281,-1010.9597778320312,843.5750732421875,-683.9995727539062,-1019.1187133789062,840.6055297851562,-416.3677062988281,-1010.9597778320312,843.5750732421875,-416.3677062988281,-1019.1187133789062,840.6055908203125,-683.9995727539062,-1025.769775390625,835.0247192382812,-683.9995727539062,-1025.769775390625,835.0245971679688,-416.3677062988281,-1019.1187133789062,840.6055908203125,-683.9995727539062,-1025.769775390625,835.0245971679688,-416.3677062988281,-1019.1187133789062,840.6055297851562,-416.3677062988281,-1025.769775390625,835.0247192382812,-683.9995727539062,-1030.1109619140625,827.5054931640625,-683.9995727539062,-1030.1109619140625,827.50537109375,-416.3677062988281,-1025.769775390625,835.0247192382812,-683.9995727539062,-1030.1109619140625,827.50537109375,-416.3677062988281,-1025.769775390625,835.0245971679688,-416.3677062988281,-1030.1109619140625,827.5054931640625,-683.9995727539062,-1031.61865234375,818.9550170898438,-683.9995727539062,-1031.61865234375,818.9548950195312,-416.3677062988281,-1030.1109619140625,827.5054931640625,-683.9995727539062,-1031.61865234375,818.9548950195312,-416.3677062988281,-1030.1109619140625,827.50537109375,-416.3677062988281,-1031.61865234375,818.9550170898438,-683.9995727539062,-1030.1109619140625,810.4044799804688,-683.9995727539062,-1030.1109619140625,810.4044189453125,-416.3677062988281,-1031.61865234375,818.9550170898438,-683.9995727539062,-1030.1109619140625,810.4044189453125,-416.3677062988281,-1031.61865234375,818.9548950195312,-416.3677062988281,-1030.1109619140625,810.4044799804688,-683.9995727539062,-1025.769775390625,802.8853149414062,-683.9995727539062,-1025.769775390625,802.8853149414062,-416.3677062988281,-1030.1109619140625,810.4044799804688,-683.9995727539062,-1025.769775390625,802.8853149414062,-416.3677062988281,-1030.1109619140625,810.4044189453125,-416.3677062988281,-1025.769775390625,802.8853149414062,-683.9995727539062,-1019.1187133789062,797.3043212890625,-683.9995727539062,-1019.1187133789062,797.3043212890625,-416.3677062988281,-1025.769775390625,802.8853149414062,-683.9995727539062,-1019.1187133789062,797.3043212890625,-416.3677062988281,-1025.769775390625,802.8853149414062,-416.3677062988281,-1019.1187133789062,797.3043212890625,-683.9995727539062,-1010.9597778320312,794.3347778320312,-683.9995727539062,-1010.9597778320312,794.334716796875,-416.3677062988281,-1019.1187133789062,797.3043212890625,-683.9995727539062,-1010.9597778320312,794.334716796875,-416.3677062988281,-1019.1187133789062,797.3043212890625,-416.3677062988281,-1010.9597778320312,794.3347778320312,-683.9995727539062,-1002.2775268554688,794.3347778320312,-683.9995727539062,-1002.2775268554688,794.334716796875,-416.3677062988281,-1010.9597778320312,794.3347778320312,-683.9995727539062,-1002.2775268554688,794.334716796875,-416.3677062988281,-1010.9597778320312,794.334716796875,-416.3677062988281,-1002.2775268554688,794.3347778320312,-683.9995727539062,-994.1187133789062,797.3043212890625,-683.9995727539062,-994.1187133789062,797.3043212890625,-416.3677062988281,-1002.2775268554688,794.3347778320312,-683.9995727539062,-994.1187133789062,797.3043212890625,-416.3677062988281,-1002.2775268554688,794.334716796875,-416.3677062988281,-994.1187133789062,797.3043212890625,-683.9995727539062,-987.467529296875,802.8853149414062,-683.9995727539062,-987.467529296875,802.8851928710938,-416.3677062988281,-994.1187133789062,797.3043212890625,-683.9995727539062,-987.467529296875,802.8851928710938,-416.3677062988281,-994.1187133789062,797.3043212890625,-416.3677062988281,-987.467529296875,802.8853149414062,-683.9995727539062,-983.1262817382812,810.4044189453125,-683.9995727539062,-983.1262817382812,810.4044189453125,-416.3677062988281,-987.467529296875,802.8853149414062,-683.9995727539062,-983.1262817382812,810.4044189453125,-416.3677062988281,-987.467529296875,802.8851928710938,-416.3677062988281,-983.1262817382812,810.4044189453125,-683.9995727539062,-981.6187133789062,818.9550170898438,-683.9995727539062,-981.6187133789062,818.9548950195312,-416.3677062988281,-983.1262817382812,810.4044189453125,-683.9995727539062,-981.6187133789062,818.9548950195312,-416.3677062988281,-983.1262817382812,810.4044189453125,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-983.1262817382812,810.4044189453125,-416.3677062988281,-981.6187133789062,818.9548950195312,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-981.6187133789062,818.9548950195312,-416.3677062988281,-983.1262817382812,827.50537109375,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-983.1262817382812,827.50537109375,-416.3677062988281,-987.467529296875,835.0245971679688,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-987.467529296875,835.0245971679688,-416.3677062988281,-994.1187133789062,840.6055297851562,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-994.1187133789062,840.6055297851562,-416.3677062988281,-1002.2775268554688,843.5750732421875,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-1002.2775268554688,843.5750732421875,-416.3677062988281,-1010.9597778320312,843.5750732421875,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-1010.9597778320312,843.5750732421875,-416.3677062988281,-1019.1187133789062,840.6055297851562,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-1019.1187133789062,840.6055297851562,-416.3677062988281,-1025.769775390625,835.0245971679688,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-1025.769775390625,835.0245971679688,-416.3677062988281,-1030.1109619140625,827.50537109375,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-1030.1109619140625,827.50537109375,-416.3677062988281,-1031.61865234375,818.9548950195312,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-1031.61865234375,818.9548950195312,-416.3677062988281,-1030.1109619140625,810.4044189453125,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-1030.1109619140625,810.4044189453125,-416.3677062988281,-1025.769775390625,802.8853149414062,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-1025.769775390625,802.8853149414062,-416.3677062988281,-1019.1187133789062,797.3043212890625,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-1019.1187133789062,797.3043212890625,-416.3677062988281,-1010.9597778320312,794.334716796875,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-1010.9597778320312,794.334716796875,-416.3677062988281,-1002.2775268554688,794.334716796875,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-1002.2775268554688,794.334716796875,-416.3677062988281,-994.1187133789062,797.3043212890625,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-994.1187133789062,797.3043212890625,-416.3677062988281,-987.467529296875,802.8851928710938,-416.3677062988281,-1006.6187133789062,818.9548950195312,-416.3677062988281,-987.467529296875,802.8851928710938,-416.3677062988281,-983.1262817382812,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-1006.6186828613281,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466587069144
| }
| }
| },
| {
| "uuid": "22A55CF7-73B6-45C2-95EA-7750AD1DC65D",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-906.6187133789062,818.955078125,-1754.5272216796875,-887.467529296875,835.0247802734375,-1754.5272216796875,-883.1262817382812,827.505615234375,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-883.1262817382812,827.505615234375,-1754.5272216796875,-881.6187133789062,818.955078125,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-902.2775268554688,843.5753173828125,-1754.5272216796875,-894.1187133789062,840.6057739257812,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-894.1187133789062,840.6057739257812,-1754.5272216796875,-887.467529296875,835.0247802734375,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-919.1187133789062,840.6057739257812,-1754.5272216796875,-910.9597778320312,843.5753173828125,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-910.9597778320312,843.5753173828125,-1754.5272216796875,-902.2775268554688,843.5753173828125,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-930.1110229492188,827.505615234375,-1754.5272216796875,-925.769775390625,835.0247802734375,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-925.769775390625,835.0247802734375,-1754.5272216796875,-919.1187133789062,840.6057739257812,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-930.1110229492188,810.4047241210938,-1754.5272216796875,-931.6187133789062,818.955078125,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-931.6187133789062,818.955078125,-1754.5272216796875,-930.1110229492188,827.505615234375,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-919.1187133789062,797.3045043945312,-1754.5272216796875,-925.769775390625,802.8853759765625,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-925.769775390625,802.8853759765625,-1754.5272216796875,-930.1110229492188,810.4047241210938,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-902.2775268554688,794.3350219726562,-1754.5272216796875,-910.9597778320312,794.3350219726562,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-910.9597778320312,794.3350219726562,-1754.5272216796875,-919.1187133789062,797.3045043945312,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-887.467529296875,802.8853759765625,-1754.5272216796875,-894.1187133789062,797.3045043945312,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-894.1187133789062,797.3045043945312,-1754.5272216796875,-902.2775268554688,794.3350219726562,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-881.6187133789062,818.955078125,-1754.5272216796875,-883.1262817382812,810.4046020507812,-1754.5272216796875,-906.6187133789062,818.955078125,-1754.5272216796875,-883.1262817382812,810.4046020507812,-1754.5272216796875,-887.467529296875,802.8853759765625,-1754.5272216796875,-881.6187133789062,818.955078125,-1754.5272216796875,-883.1262817382812,827.505615234375,-1754.5272216796875,-883.1262817382812,827.505615234375,-1486.895263671875,-881.6187133789062,818.955078125,-1754.5272216796875,-883.1262817382812,827.505615234375,-1486.895263671875,-881.6187133789062,818.955078125,-1486.895263671875,-883.1262817382812,827.505615234375,-1754.5272216796875,-887.467529296875,835.0247802734375,-1754.5272216796875,-887.467529296875,835.0247802734375,-1486.895263671875,-883.1262817382812,827.505615234375,-1754.5272216796875,-887.467529296875,835.0247802734375,-1486.895263671875,-883.1262817382812,827.505615234375,-1486.895263671875,-887.467529296875,835.0247802734375,-1754.5272216796875,-894.1187133789062,840.6057739257812,-1754.5272216796875,-894.1187133789062,840.605712890625,-1486.895263671875,-887.467529296875,835.0247802734375,-1754.5272216796875,-894.1187133789062,840.605712890625,-1486.895263671875,-887.467529296875,835.0247802734375,-1486.895263671875,-894.1187133789062,840.6057739257812,-1754.5272216796875,-902.2775268554688,843.5753173828125,-1754.5272216796875,-902.2775268554688,843.5753173828125,-1486.895263671875,-894.1187133789062,840.6057739257812,-1754.5272216796875,-902.2775268554688,843.5753173828125,-1486.895263671875,-894.1187133789062,840.605712890625,-1486.895263671875,-902.2775268554688,843.5753173828125,-1754.5272216796875,-910.9597778320312,843.5753173828125,-1754.5272216796875,-910.9597778320312,843.5753173828125,-1486.895263671875,-902.2775268554688,843.5753173828125,-1754.5272216796875,-910.9597778320312,843.5753173828125,-1486.895263671875,-902.2775268554688,843.5753173828125,-1486.895263671875,-910.9597778320312,843.5753173828125,-1754.5272216796875,-919.1187133789062,840.6057739257812,-1754.5272216796875,-919.1187133789062,840.605712890625,-1486.895263671875,-910.9597778320312,843.5753173828125,-1754.5272216796875,-919.1187133789062,840.605712890625,-1486.895263671875,-910.9597778320312,843.5753173828125,-1486.895263671875,-919.1187133789062,840.6057739257812,-1754.5272216796875,-925.769775390625,835.0247802734375,-1754.5272216796875,-925.769775390625,835.0247802734375,-1486.895263671875,-919.1187133789062,840.6057739257812,-1754.5272216796875,-925.769775390625,835.0247802734375,-1486.895263671875,-919.1187133789062,840.605712890625,-1486.895263671875,-925.769775390625,835.0247802734375,-1754.5272216796875,-930.1110229492188,827.505615234375,-1754.5272216796875,-930.1110229492188,827.505615234375,-1486.895263671875,-925.769775390625,835.0247802734375,-1754.5272216796875,-930.1110229492188,827.505615234375,-1486.895263671875,-925.769775390625,835.0247802734375,-1486.895263671875,-930.1110229492188,827.505615234375,-1754.5272216796875,-931.6187133789062,818.955078125,-1754.5272216796875,-931.6187133789062,818.955078125,-1486.895263671875,-930.1110229492188,827.505615234375,-1754.5272216796875,-931.6187133789062,818.955078125,-1486.895263671875,-930.1110229492188,827.505615234375,-1486.895263671875,-931.6187133789062,818.955078125,-1754.5272216796875,-930.1110229492188,810.4047241210938,-1754.5272216796875,-930.1110229492188,810.4046020507812,-1486.895263671875,-931.6187133789062,818.955078125,-1754.5272216796875,-930.1110229492188,810.4046020507812,-1486.895263671875,-931.6187133789062,818.955078125,-1486.895263671875,-930.1110229492188,810.4047241210938,-1754.5272216796875,-925.769775390625,802.8853759765625,-1754.5272216796875,-925.769775390625,802.8853759765625,-1486.895263671875,-930.1110229492188,810.4047241210938,-1754.5272216796875,-925.769775390625,802.8853759765625,-1486.895263671875,-930.1110229492188,810.4046020507812,-1486.895263671875,-925.769775390625,802.8853759765625,-1754.5272216796875,-919.1187133789062,797.3045043945312,-1754.5272216796875,-919.1187133789062,797.3043823242188,-1486.895263671875,-925.769775390625,802.8853759765625,-1754.5272216796875,-919.1187133789062,797.3043823242188,-1486.895263671875,-925.769775390625,802.8853759765625,-1486.895263671875,-919.1187133789062,797.3045043945312,-1754.5272216796875,-910.9597778320312,794.3350219726562,-1754.5272216796875,-910.9597778320312,794.3348999023438,-1486.895263671875,-919.1187133789062,797.3045043945312,-1754.5272216796875,-910.9597778320312,794.3348999023438,-1486.895263671875,-919.1187133789062,797.3043823242188,-1486.895263671875,-910.9597778320312,794.3350219726562,-1754.5272216796875,-902.2775268554688,794.3350219726562,-1754.5272216796875,-902.2775268554688,794.3348999023438,-1486.895263671875,-910.9597778320312,794.3350219726562,-1754.5272216796875,-902.2775268554688,794.3348999023438,-1486.895263671875,-910.9597778320312,794.3348999023438,-1486.895263671875,-902.2775268554688,794.3350219726562,-1754.5272216796875,-894.1187133789062,797.3045043945312,-1754.5272216796875,-894.1187133789062,797.3043823242188,-1486.895263671875,-902.2775268554688,794.3350219726562,-1754.5272216796875,-894.1187133789062,797.3043823242188,-1486.895263671875,-902.2775268554688,794.3348999023438,-1486.895263671875,-894.1187133789062,797.3045043945312,-1754.5272216796875,-887.467529296875,802.8853759765625,-1754.5272216796875,-887.467529296875,802.8853759765625,-1486.895263671875,-894.1187133789062,797.3045043945312,-1754.5272216796875,-887.467529296875,802.8853759765625,-1486.895263671875,-894.1187133789062,797.3043823242188,-1486.895263671875,-887.467529296875,802.8853759765625,-1754.5272216796875,-883.1262817382812,810.4046020507812,-1754.5272216796875,-883.1262817382812,810.4046020507812,-1486.895263671875,-887.467529296875,802.8853759765625,-1754.5272216796875,-883.1262817382812,810.4046020507812,-1486.895263671875,-887.467529296875,802.8853759765625,-1486.895263671875,-883.1262817382812,810.4046020507812,-1754.5272216796875,-881.6187133789062,818.955078125,-1754.5272216796875,-881.6187133789062,818.955078125,-1486.895263671875,-883.1262817382812,810.4046020507812,-1754.5272216796875,-881.6187133789062,818.955078125,-1486.895263671875,-883.1262817382812,810.4046020507812,-1486.895263671875,-881.6187133789062,818.955078125,-1486.895263671875,-883.1262817382812,827.505615234375,-1486.895263671875,-883.1262817382812,827.505615234375,-1219.263427734375,-881.6187133789062,818.955078125,-1486.895263671875,-883.1262817382812,827.505615234375,-1219.263427734375,-881.6187133789062,818.955078125,-1219.263427734375,-883.1262817382812,827.505615234375,-1486.895263671875,-887.467529296875,835.0247802734375,-1486.895263671875,-887.467529296875,835.0247192382812,-1219.263427734375,-883.1262817382812,827.505615234375,-1486.895263671875,-887.467529296875,835.0247192382812,-1219.263427734375,-883.1262817382812,827.505615234375,-1219.263427734375,-887.467529296875,835.0247802734375,-1486.895263671875,-894.1187133789062,840.605712890625,-1486.895263671875,-894.1187133789062,840.605712890625,-1219.263427734375,-887.467529296875,835.0247802734375,-1486.895263671875,-894.1187133789062,840.605712890625,-1219.263427734375,-887.467529296875,835.0247192382812,-1219.263427734375,-894.1187133789062,840.605712890625,-1486.895263671875,-902.2775268554688,843.5753173828125,-1486.895263671875,-902.2775268554688,843.5753173828125,-1219.263427734375,-894.1187133789062,840.605712890625,-1486.895263671875,-902.2775268554688,843.5753173828125,-1219.263427734375,-894.1187133789062,840.605712890625,-1219.263427734375,-902.2775268554688,843.5753173828125,-1486.895263671875,-910.9597778320312,843.5753173828125,-1486.895263671875,-910.9597778320312,843.5753173828125,-1219.263427734375,-902.2775268554688,843.5753173828125,-1486.895263671875,-910.9597778320312,843.5753173828125,-1219.263427734375,-902.2775268554688,843.5753173828125,-1219.263427734375,-910.9597778320312,843.5753173828125,-1486.895263671875,-919.1187133789062,840.605712890625,-1486.895263671875,-919.1187133789062,840.605712890625,-1219.263427734375,-910.9597778320312,843.5753173828125,-1486.895263671875,-919.1187133789062,840.605712890625,-1219.263427734375,-910.9597778320312,843.5753173828125,-1219.263427734375,-919.1187133789062,840.605712890625,-1486.895263671875,-925.769775390625,835.0247802734375,-1486.895263671875,-925.769775390625,835.0247192382812,-1219.263427734375,-919.1187133789062,840.605712890625,-1486.895263671875,-925.769775390625,835.0247192382812,-1219.263427734375,-919.1187133789062,840.605712890625,-1219.263427734375,-925.769775390625,835.0247802734375,-1486.895263671875,-930.1110229492188,827.505615234375,-1486.895263671875,-930.1110229492188,827.505615234375,-1219.263427734375,-925.769775390625,835.0247802734375,-1486.895263671875,-930.1110229492188,827.505615234375,-1219.263427734375,-925.769775390625,835.0247192382812,-1219.263427734375,-930.1110229492188,827.505615234375,-1486.895263671875,-931.6187133789062,818.955078125,-1486.895263671875,-931.6187133789062,818.955078125,-1219.263427734375,-930.1110229492188,827.505615234375,-1486.895263671875,-931.6187133789062,818.955078125,-1219.263427734375,-930.1110229492188,827.505615234375,-1219.263427734375,-931.6187133789062,818.955078125,-1486.895263671875,-930.1110229492188,810.4046020507812,-1486.895263671875,-930.1110229492188,810.4044799804688,-1219.263427734375,-931.6187133789062,818.955078125,-1486.895263671875,-930.1110229492188,810.4044799804688,-1219.263427734375,-931.6187133789062,818.955078125,-1219.263427734375,-930.1110229492188,810.4046020507812,-1486.895263671875,-925.769775390625,802.8853759765625,-1486.895263671875,-925.769775390625,802.8853759765625,-1219.263427734375,-930.1110229492188,810.4046020507812,-1486.895263671875,-925.769775390625,802.8853759765625,-1219.263427734375,-930.1110229492188,810.4044799804688,-1219.263427734375,-925.769775390625,802.8853759765625,-1486.895263671875,-919.1187133789062,797.3043823242188,-1486.895263671875,-919.1187133789062,797.3043823242188,-1219.263427734375,-925.769775390625,802.8853759765625,-1486.895263671875,-919.1187133789062,797.3043823242188,-1219.263427734375,-925.769775390625,802.8853759765625,-1219.263427734375,-919.1187133789062,797.3043823242188,-1486.895263671875,-910.9597778320312,794.3348999023438,-1486.895263671875,-910.9597778320312,794.3347778320312,-1219.263427734375,-919.1187133789062,797.3043823242188,-1486.895263671875,-910.9597778320312,794.3347778320312,-1219.263427734375,-919.1187133789062,797.3043823242188,-1219.263427734375,-910.9597778320312,794.3348999023438,-1486.895263671875,-902.2775268554688,794.3348999023438,-1486.895263671875,-902.2775268554688,794.3347778320312,-1219.263427734375,-910.9597778320312,794.3348999023438,-1486.895263671875,-902.2775268554688,794.3347778320312,-1219.263427734375,-910.9597778320312,794.3347778320312,-1219.263427734375,-902.2775268554688,794.3348999023438,-1486.895263671875,-894.1187133789062,797.3043823242188,-1486.895263671875,-894.1187133789062,797.3043823242188,-1219.263427734375,-902.2775268554688,794.3348999023438,-1486.895263671875,-894.1187133789062,797.3043823242188,-1219.263427734375,-902.2775268554688,794.3347778320312,-1219.263427734375,-894.1187133789062,797.3043823242188,-1486.895263671875,-887.467529296875,802.8853759765625,-1486.895263671875,-887.467529296875,802.8853759765625,-1219.263427734375,-894.1187133789062,797.3043823242188,-1486.895263671875,-887.467529296875,802.8853759765625,-1219.263427734375,-894.1187133789062,797.3043823242188,-1219.263427734375,-887.467529296875,802.8853759765625,-1486.895263671875,-883.1262817382812,810.4046020507812,-1486.895263671875,-883.1262817382812,810.4044799804688,-1219.263427734375,-887.467529296875,802.8853759765625,-1486.895263671875,-883.1262817382812,810.4044799804688,-1219.263427734375,-887.467529296875,802.8853759765625,-1219.263427734375,-883.1262817382812,810.4046020507812,-1486.895263671875,-881.6187133789062,818.955078125,-1486.895263671875,-881.6187133789062,818.955078125,-1219.263427734375,-883.1262817382812,810.4046020507812,-1486.895263671875,-881.6187133789062,818.955078125,-1219.263427734375,-883.1262817382812,810.4044799804688,-1219.263427734375,-881.6187133789062,818.955078125,-1219.263427734375,-883.1262817382812,827.505615234375,-1219.263427734375,-883.1262817382812,827.5054931640625,-951.6314697265625,-881.6187133789062,818.955078125,-1219.263427734375,-883.1262817382812,827.5054931640625,-951.6314697265625,-881.6187133789062,818.9550170898438,-951.6314697265625,-883.1262817382812,827.505615234375,-1219.263427734375,-887.467529296875,835.0247192382812,-1219.263427734375,-887.467529296875,835.0247192382812,-951.6314697265625,-883.1262817382812,827.505615234375,-1219.263427734375,-887.467529296875,835.0247192382812,-951.6314697265625,-883.1262817382812,827.5054931640625,-951.6314697265625,-887.467529296875,835.0247192382812,-1219.263427734375,-894.1187133789062,840.605712890625,-1219.263427734375,-894.1187133789062,840.605712890625,-951.6314697265625,-887.467529296875,835.0247192382812,-1219.263427734375,-894.1187133789062,840.605712890625,-951.6314697265625,-887.467529296875,835.0247192382812,-951.6314697265625,-894.1187133789062,840.605712890625,-1219.263427734375,-902.2775268554688,843.5753173828125,-1219.263427734375,-902.2775268554688,843.5751953125,-951.6314697265625,-894.1187133789062,840.605712890625,-1219.263427734375,-902.2775268554688,843.5751953125,-951.6314697265625,-894.1187133789062,840.605712890625,-951.6314697265625,-902.2775268554688,843.5753173828125,-1219.263427734375,-910.9597778320312,843.5753173828125,-1219.263427734375,-910.9597778320312,843.5751953125,-951.6314697265625,-902.2775268554688,843.5753173828125,-1219.263427734375,-910.9597778320312,843.5751953125,-951.6314697265625,-902.2775268554688,843.5751953125,-951.6314697265625,-910.9597778320312,843.5753173828125,-1219.263427734375,-919.1187133789062,840.605712890625,-1219.263427734375,-919.1187133789062,840.605712890625,-951.6314697265625,-910.9597778320312,843.5753173828125,-1219.263427734375,-919.1187133789062,840.605712890625,-951.6314697265625,-910.9597778320312,843.5751953125,-951.6314697265625,-919.1187133789062,840.605712890625,-1219.263427734375,-925.769775390625,835.0247192382812,-1219.263427734375,-925.769775390625,835.0247192382812,-951.6314697265625,-919.1187133789062,840.605712890625,-1219.263427734375,-925.769775390625,835.0247192382812,-951.6314697265625,-919.1187133789062,840.605712890625,-951.6314697265625,-925.769775390625,835.0247192382812,-1219.263427734375,-930.1110229492188,827.505615234375,-1219.263427734375,-930.1110229492188,827.5054931640625,-951.6314697265625,-925.769775390625,835.0247192382812,-1219.263427734375,-930.1110229492188,827.5054931640625,-951.6314697265625,-925.769775390625,835.0247192382812,-951.6314697265625,-930.1110229492188,827.505615234375,-1219.263427734375,-931.6187133789062,818.955078125,-1219.263427734375,-931.6187133789062,818.9550170898438,-951.6314697265625,-930.1110229492188,827.505615234375,-1219.263427734375,-931.6187133789062,818.9550170898438,-951.6314697265625,-930.1110229492188,827.5054931640625,-951.6314697265625,-931.6187133789062,818.955078125,-1219.263427734375,-930.1110229492188,810.4044799804688,-1219.263427734375,-930.1110229492188,810.4044799804688,-951.6314697265625,-931.6187133789062,818.955078125,-1219.263427734375,-930.1110229492188,810.4044799804688,-951.6314697265625,-931.6187133789062,818.9550170898438,-951.6314697265625,-930.1110229492188,810.4044799804688,-1219.263427734375,-925.769775390625,802.8853759765625,-1219.263427734375,-925.769775390625,802.8853149414062,-951.6314697265625,-930.1110229492188,810.4044799804688,-1219.263427734375,-925.769775390625,802.8853149414062,-951.6314697265625,-930.1110229492188,810.4044799804688,-951.6314697265625,-925.769775390625,802.8853759765625,-1219.263427734375,-919.1187133789062,797.3043823242188,-1219.263427734375,-919.1187133789062,797.3043823242188,-951.6314697265625,-925.769775390625,802.8853759765625,-1219.263427734375,-919.1187133789062,797.3043823242188,-951.6314697265625,-925.769775390625,802.8853149414062,-951.6314697265625,-919.1187133789062,797.3043823242188,-1219.263427734375,-910.9597778320312,794.3347778320312,-1219.263427734375,-910.9597778320312,794.3347778320312,-951.6314697265625,-919.1187133789062,797.3043823242188,-1219.263427734375,-910.9597778320312,794.3347778320312,-951.6314697265625,-919.1187133789062,797.3043823242188,-951.6314697265625,-910.9597778320312,794.3347778320312,-1219.263427734375,-902.2775268554688,794.3347778320312,-1219.263427734375,-902.2775268554688,794.3347778320312,-951.6314697265625,-910.9597778320312,794.3347778320312,-1219.263427734375,-902.2775268554688,794.3347778320312,-951.6314697265625,-910.9597778320312,794.3347778320312,-951.6314697265625,-902.2775268554688,794.3347778320312,-1219.263427734375,-894.1187133789062,797.3043823242188,-1219.263427734375,-894.1187133789062,797.3043823242188,-951.6314697265625,-902.2775268554688,794.3347778320312,-1219.263427734375,-894.1187133789062,797.3043823242188,-951.6314697265625,-902.2775268554688,794.3347778320312,-951.6314697265625,-894.1187133789062,797.3043823242188,-1219.263427734375,-887.467529296875,802.8853759765625,-1219.263427734375,-887.467529296875,802.8853149414062,-951.6314697265625,-894.1187133789062,797.3043823242188,-1219.263427734375,-887.467529296875,802.8853149414062,-951.6314697265625,-894.1187133789062,797.3043823242188,-951.6314697265625,-887.467529296875,802.8853759765625,-1219.263427734375,-883.1262817382812,810.4044799804688,-1219.263427734375,-883.1262817382812,810.4044799804688,-951.6314697265625,-887.467529296875,802.8853759765625,-1219.263427734375,-883.1262817382812,810.4044799804688,-951.6314697265625,-887.467529296875,802.8853149414062,-951.6314697265625,-883.1262817382812,810.4044799804688,-1219.263427734375,-881.6187133789062,818.955078125,-1219.263427734375,-881.6187133789062,818.9550170898438,-951.6314697265625,-883.1262817382812,810.4044799804688,-1219.263427734375,-881.6187133789062,818.9550170898438,-951.6314697265625,-883.1262817382812,810.4044799804688,-951.6314697265625,-881.6187133789062,818.9550170898438,-951.6314697265625,-883.1262817382812,827.5054931640625,-951.6314697265625,-883.1262817382812,827.5054931640625,-683.9995727539062,-881.6187133789062,818.9550170898438,-951.6314697265625,-883.1262817382812,827.5054931640625,-683.9995727539062,-881.6187133789062,818.9550170898438,-683.9995727539062,-883.1262817382812,827.5054931640625,-951.6314697265625,-887.467529296875,835.0247192382812,-951.6314697265625,-887.467529296875,835.0247192382812,-683.9995727539062,-883.1262817382812,827.5054931640625,-951.6314697265625,-887.467529296875,835.0247192382812,-683.9995727539062,-883.1262817382812,827.5054931640625,-683.9995727539062,-887.467529296875,835.0247192382812,-951.6314697265625,-894.1187133789062,840.605712890625,-951.6314697265625,-894.1187133789062,840.6055908203125,-683.9995727539062,-887.467529296875,835.0247192382812,-951.6314697265625,-894.1187133789062,840.6055908203125,-683.9995727539062,-887.467529296875,835.0247192382812,-683.9995727539062,-894.1187133789062,840.605712890625,-951.6314697265625,-902.2775268554688,843.5751953125,-951.6314697265625,-902.2775268554688,843.5750732421875,-683.9995727539062,-894.1187133789062,840.605712890625,-951.6314697265625,-902.2775268554688,843.5750732421875,-683.9995727539062,-894.1187133789062,840.6055908203125,-683.9995727539062,-902.2775268554688,843.5751953125,-951.6314697265625,-910.9597778320312,843.5751953125,-951.6314697265625,-910.9597778320312,843.5750732421875,-683.9995727539062,-902.2775268554688,843.5751953125,-951.6314697265625,-910.9597778320312,843.5750732421875,-683.9995727539062,-902.2775268554688,843.5750732421875,-683.9995727539062,-910.9597778320312,843.5751953125,-951.6314697265625,-919.1187133789062,840.605712890625,-951.6314697265625,-919.1187133789062,840.6055908203125,-683.9995727539062,-910.9597778320312,843.5751953125,-951.6314697265625,-919.1187133789062,840.6055908203125,-683.9995727539062,-910.9597778320312,843.5750732421875,-683.9995727539062,-919.1187133789062,840.605712890625,-951.6314697265625,-925.769775390625,835.0247192382812,-951.6314697265625,-925.769775390625,835.0247192382812,-683.9995727539062,-919.1187133789062,840.605712890625,-951.6314697265625,-925.769775390625,835.0247192382812,-683.9995727539062,-919.1187133789062,840.6055908203125,-683.9995727539062,-925.769775390625,835.0247192382812,-951.6314697265625,-930.1110229492188,827.5054931640625,-951.6314697265625,-930.1110229492188,827.5054931640625,-683.9995727539062,-925.769775390625,835.0247192382812,-951.6314697265625,-930.1110229492188,827.5054931640625,-683.9995727539062,-925.769775390625,835.0247192382812,-683.9995727539062,-930.1110229492188,827.5054931640625,-951.6314697265625,-931.6187133789062,818.9550170898438,-951.6314697265625,-931.6187133789062,818.9550170898438,-683.9995727539062,-930.1110229492188,827.5054931640625,-951.6314697265625,-931.6187133789062,818.9550170898438,-683.9995727539062,-930.1110229492188,827.5054931640625,-683.9995727539062,-931.6187133789062,818.9550170898438,-951.6314697265625,-930.1110229492188,810.4044799804688,-951.6314697265625,-930.1110229492188,810.4044799804688,-683.9995727539062,-931.6187133789062,818.9550170898438,-951.6314697265625,-930.1110229492188,810.4044799804688,-683.9995727539062,-931.6187133789062,818.9550170898438,-683.9995727539062,-930.1110229492188,810.4044799804688,-951.6314697265625,-925.769775390625,802.8853149414062,-951.6314697265625,-925.769775390625,802.8853149414062,-683.9995727539062,-930.1110229492188,810.4044799804688,-951.6314697265625,-925.769775390625,802.8853149414062,-683.9995727539062,-930.1110229492188,810.4044799804688,-683.9995727539062,-925.769775390625,802.8853149414062,-951.6314697265625,-919.1187133789062,797.3043823242188,-951.6314697265625,-919.1187133789062,797.3043212890625,-683.9995727539062,-925.769775390625,802.8853149414062,-951.6314697265625,-919.1187133789062,797.3043212890625,-683.9995727539062,-925.769775390625,802.8853149414062,-683.9995727539062,-919.1187133789062,797.3043823242188,-951.6314697265625,-910.9597778320312,794.3347778320312,-951.6314697265625,-910.9597778320312,794.3347778320312,-683.9995727539062,-919.1187133789062,797.3043823242188,-951.6314697265625,-910.9597778320312,794.3347778320312,-683.9995727539062,-919.1187133789062,797.3043212890625,-683.9995727539062,-910.9597778320312,794.3347778320312,-951.6314697265625,-902.2775268554688,794.3347778320312,-951.6314697265625,-902.2775268554688,794.3347778320312,-683.9995727539062,-910.9597778320312,794.3347778320312,-951.6314697265625,-902.2775268554688,794.3347778320312,-683.9995727539062,-910.9597778320312,794.3347778320312,-683.9995727539062,-902.2775268554688,794.3347778320312,-951.6314697265625,-894.1187133789062,797.3043823242188,-951.6314697265625,-894.1187133789062,797.3043212890625,-683.9995727539062,-902.2775268554688,794.3347778320312,-951.6314697265625,-894.1187133789062,797.3043212890625,-683.9995727539062,-902.2775268554688,794.3347778320312,-683.9995727539062,-894.1187133789062,797.3043823242188,-951.6314697265625,-887.467529296875,802.8853149414062,-951.6314697265625,-887.467529296875,802.8853149414062,-683.9995727539062,-894.1187133789062,797.3043823242188,-951.6314697265625,-887.467529296875,802.8853149414062,-683.9995727539062,-894.1187133789062,797.3043212890625,-683.9995727539062,-887.467529296875,802.8853149414062,-951.6314697265625,-883.1262817382812,810.4044799804688,-951.6314697265625,-883.1262817382812,810.4044189453125,-683.9995727539062,-887.467529296875,802.8853149414062,-951.6314697265625,-883.1262817382812,810.4044189453125,-683.9995727539062,-887.467529296875,802.8853149414062,-683.9995727539062,-883.1262817382812,810.4044799804688,-951.6314697265625,-881.6187133789062,818.9550170898438,-951.6314697265625,-881.6187133789062,818.9550170898438,-683.9995727539062,-883.1262817382812,810.4044799804688,-951.6314697265625,-881.6187133789062,818.9550170898438,-683.9995727539062,-883.1262817382812,810.4044189453125,-683.9995727539062,-881.6187133789062,818.9550170898438,-683.9995727539062,-883.1262817382812,827.5054931640625,-683.9995727539062,-883.1262817382812,827.50537109375,-416.3677062988281,-881.6187133789062,818.9550170898438,-683.9995727539062,-883.1262817382812,827.50537109375,-416.3677062988281,-881.6187133789062,818.9548950195312,-416.3677062988281,-883.1262817382812,827.5054931640625,-683.9995727539062,-887.467529296875,835.0247192382812,-683.9995727539062,-887.467529296875,835.0245971679688,-416.3677062988281,-883.1262817382812,827.5054931640625,-683.9995727539062,-887.467529296875,835.0245971679688,-416.3677062988281,-883.1262817382812,827.50537109375,-416.3677062988281,-887.467529296875,835.0247192382812,-683.9995727539062,-894.1187133789062,840.6055908203125,-683.9995727539062,-894.1187133789062,840.6055297851562,-416.3677062988281,-887.467529296875,835.0247192382812,-683.9995727539062,-894.1187133789062,840.6055297851562,-416.3677062988281,-887.467529296875,835.0245971679688,-416.3677062988281,-894.1187133789062,840.6055908203125,-683.9995727539062,-902.2775268554688,843.5750732421875,-683.9995727539062,-902.2775268554688,843.5750732421875,-416.3677062988281,-894.1187133789062,840.6055908203125,-683.9995727539062,-902.2775268554688,843.5750732421875,-416.3677062988281,-894.1187133789062,840.6055297851562,-416.3677062988281,-902.2775268554688,843.5750732421875,-683.9995727539062,-910.9597778320312,843.5750732421875,-683.9995727539062,-910.9597778320312,843.5750732421875,-416.3677062988281,-902.2775268554688,843.5750732421875,-683.9995727539062,-910.9597778320312,843.5750732421875,-416.3677062988281,-902.2775268554688,843.5750732421875,-416.3677062988281,-910.9597778320312,843.5750732421875,-683.9995727539062,-919.1187133789062,840.6055908203125,-683.9995727539062,-919.1187133789062,840.6055297851562,-416.3677062988281,-910.9597778320312,843.5750732421875,-683.9995727539062,-919.1187133789062,840.6055297851562,-416.3677062988281,-910.9597778320312,843.5750732421875,-416.3677062988281,-919.1187133789062,840.6055908203125,-683.9995727539062,-925.769775390625,835.0247192382812,-683.9995727539062,-925.769775390625,835.0245971679688,-416.3677062988281,-919.1187133789062,840.6055908203125,-683.9995727539062,-925.769775390625,835.0245971679688,-416.3677062988281,-919.1187133789062,840.6055297851562,-416.3677062988281,-925.769775390625,835.0247192382812,-683.9995727539062,-930.1110229492188,827.5054931640625,-683.9995727539062,-930.1110229492188,827.50537109375,-416.3677062988281,-925.769775390625,835.0247192382812,-683.9995727539062,-930.1110229492188,827.50537109375,-416.3677062988281,-925.769775390625,835.0245971679688,-416.3677062988281,-930.1110229492188,827.5054931640625,-683.9995727539062,-931.6187133789062,818.9550170898438,-683.9995727539062,-931.6187133789062,818.9548950195312,-416.3677062988281,-930.1110229492188,827.5054931640625,-683.9995727539062,-931.6187133789062,818.9548950195312,-416.3677062988281,-930.1110229492188,827.50537109375,-416.3677062988281,-931.6187133789062,818.9550170898438,-683.9995727539062,-930.1110229492188,810.4044799804688,-683.9995727539062,-930.1110229492188,810.4044189453125,-416.3677062988281,-931.6187133789062,818.9550170898438,-683.9995727539062,-930.1110229492188,810.4044189453125,-416.3677062988281,-931.6187133789062,818.9548950195312,-416.3677062988281,-930.1110229492188,810.4044799804688,-683.9995727539062,-925.769775390625,802.8853149414062,-683.9995727539062,-925.769775390625,802.8853149414062,-416.3677062988281,-930.1110229492188,810.4044799804688,-683.9995727539062,-925.769775390625,802.8853149414062,-416.3677062988281,-930.1110229492188,810.4044189453125,-416.3677062988281,-925.769775390625,802.8853149414062,-683.9995727539062,-919.1187133789062,797.3043212890625,-683.9995727539062,-919.1187133789062,797.3043212890625,-416.3677062988281,-925.769775390625,802.8853149414062,-683.9995727539062,-919.1187133789062,797.3043212890625,-416.3677062988281,-925.769775390625,802.8853149414062,-416.3677062988281,-919.1187133789062,797.3043212890625,-683.9995727539062,-910.9597778320312,794.3347778320312,-683.9995727539062,-910.9597778320312,794.334716796875,-416.3677062988281,-919.1187133789062,797.3043212890625,-683.9995727539062,-910.9597778320312,794.334716796875,-416.3677062988281,-919.1187133789062,797.3043212890625,-416.3677062988281,-910.9597778320312,794.3347778320312,-683.9995727539062,-902.2775268554688,794.3347778320312,-683.9995727539062,-902.2775268554688,794.334716796875,-416.3677062988281,-910.9597778320312,794.3347778320312,-683.9995727539062,-902.2775268554688,794.334716796875,-416.3677062988281,-910.9597778320312,794.334716796875,-416.3677062988281,-902.2775268554688,794.3347778320312,-683.9995727539062,-894.1187133789062,797.3043212890625,-683.9995727539062,-894.1187133789062,797.3043212890625,-416.3677062988281,-902.2775268554688,794.3347778320312,-683.9995727539062,-894.1187133789062,797.3043212890625,-416.3677062988281,-902.2775268554688,794.334716796875,-416.3677062988281,-894.1187133789062,797.3043212890625,-683.9995727539062,-887.467529296875,802.8853149414062,-683.9995727539062,-887.467529296875,802.8851928710938,-416.3677062988281,-894.1187133789062,797.3043212890625,-683.9995727539062,-887.467529296875,802.8851928710938,-416.3677062988281,-894.1187133789062,797.3043212890625,-416.3677062988281,-887.467529296875,802.8853149414062,-683.9995727539062,-883.1262817382812,810.4044189453125,-683.9995727539062,-883.1262817382812,810.4044189453125,-416.3677062988281,-887.467529296875,802.8853149414062,-683.9995727539062,-883.1262817382812,810.4044189453125,-416.3677062988281,-887.467529296875,802.8851928710938,-416.3677062988281,-883.1262817382812,810.4044189453125,-683.9995727539062,-881.6187133789062,818.9550170898438,-683.9995727539062,-881.6187133789062,818.9548950195312,-416.3677062988281,-883.1262817382812,810.4044189453125,-683.9995727539062,-881.6187133789062,818.9548950195312,-416.3677062988281,-883.1262817382812,810.4044189453125,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-883.1262817382812,810.4044189453125,-416.3677062988281,-881.6187133789062,818.9548950195312,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-881.6187133789062,818.9548950195312,-416.3677062988281,-883.1262817382812,827.50537109375,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-883.1262817382812,827.50537109375,-416.3677062988281,-887.467529296875,835.0245971679688,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-887.467529296875,835.0245971679688,-416.3677062988281,-894.1187133789062,840.6055297851562,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-894.1187133789062,840.6055297851562,-416.3677062988281,-902.2775268554688,843.5750732421875,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-902.2775268554688,843.5750732421875,-416.3677062988281,-910.9597778320312,843.5750732421875,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-910.9597778320312,843.5750732421875,-416.3677062988281,-919.1187133789062,840.6055297851562,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-919.1187133789062,840.6055297851562,-416.3677062988281,-925.769775390625,835.0245971679688,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-925.769775390625,835.0245971679688,-416.3677062988281,-930.1110229492188,827.50537109375,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-930.1110229492188,827.50537109375,-416.3677062988281,-931.6187133789062,818.9548950195312,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-931.6187133789062,818.9548950195312,-416.3677062988281,-930.1110229492188,810.4044189453125,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-930.1110229492188,810.4044189453125,-416.3677062988281,-925.769775390625,802.8853149414062,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-925.769775390625,802.8853149414062,-416.3677062988281,-919.1187133789062,797.3043212890625,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-919.1187133789062,797.3043212890625,-416.3677062988281,-910.9597778320312,794.334716796875,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-910.9597778320312,794.334716796875,-416.3677062988281,-902.2775268554688,794.334716796875,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-902.2775268554688,794.334716796875,-416.3677062988281,-894.1187133789062,797.3043212890625,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-894.1187133789062,797.3043212890625,-416.3677062988281,-887.467529296875,802.8851928710938,-416.3677062988281,-906.6187133789062,818.9548950195312,-416.3677062988281,-887.467529296875,802.8851928710938,-416.3677062988281,-883.1262817382812,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-906.6187133789062,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466595042122
| }
| }
| },
| {
| "uuid": "E75DB463-CE03-47CD-B73B-FDCD8D251E6E",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-806.6187133789062,818.955078125,-1754.5272216796875,-787.467529296875,835.0247802734375,-1754.5272216796875,-783.1262817382812,827.505615234375,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-783.1262817382812,827.505615234375,-1754.5272216796875,-781.6187133789062,818.955078125,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-802.2775268554688,843.5753173828125,-1754.5272216796875,-794.1187133789062,840.6057739257812,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-794.1187133789062,840.6057739257812,-1754.5272216796875,-787.467529296875,835.0247802734375,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-819.1187133789062,840.6057739257812,-1754.5272216796875,-810.9597778320312,843.5753173828125,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-810.9597778320312,843.5753173828125,-1754.5272216796875,-802.2775268554688,843.5753173828125,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-830.1110229492188,827.505615234375,-1754.5272216796875,-825.769775390625,835.0247802734375,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-825.769775390625,835.0247802734375,-1754.5272216796875,-819.1187133789062,840.6057739257812,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-830.1110229492188,810.4047241210938,-1754.5272216796875,-831.6187133789062,818.955078125,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-831.6187133789062,818.955078125,-1754.5272216796875,-830.1110229492188,827.505615234375,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-819.1187133789062,797.3045043945312,-1754.5272216796875,-825.769775390625,802.8853759765625,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-825.769775390625,802.8853759765625,-1754.5272216796875,-830.1110229492188,810.4047241210938,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-802.2775268554688,794.3350219726562,-1754.5272216796875,-810.9597778320312,794.3350219726562,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-810.9597778320312,794.3350219726562,-1754.5272216796875,-819.1187133789062,797.3045043945312,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-787.467529296875,802.8853759765625,-1754.5272216796875,-794.1187133789062,797.3045043945312,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-794.1187133789062,797.3045043945312,-1754.5272216796875,-802.2775268554688,794.3350219726562,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-781.6187133789062,818.955078125,-1754.5272216796875,-783.1262817382812,810.4046020507812,-1754.5272216796875,-806.6187133789062,818.955078125,-1754.5272216796875,-783.1262817382812,810.4046020507812,-1754.5272216796875,-787.467529296875,802.8853759765625,-1754.5272216796875,-781.6187133789062,818.955078125,-1754.5272216796875,-783.1262817382812,827.505615234375,-1754.5272216796875,-783.1262817382812,827.505615234375,-1486.895263671875,-781.6187133789062,818.955078125,-1754.5272216796875,-783.1262817382812,827.505615234375,-1486.895263671875,-781.6187133789062,818.955078125,-1486.895263671875,-783.1262817382812,827.505615234375,-1754.5272216796875,-787.467529296875,835.0247802734375,-1754.5272216796875,-787.467529296875,835.0247802734375,-1486.895263671875,-783.1262817382812,827.505615234375,-1754.5272216796875,-787.467529296875,835.0247802734375,-1486.895263671875,-783.1262817382812,827.505615234375,-1486.895263671875,-787.467529296875,835.0247802734375,-1754.5272216796875,-794.1187133789062,840.6057739257812,-1754.5272216796875,-794.1187133789062,840.605712890625,-1486.895263671875,-787.467529296875,835.0247802734375,-1754.5272216796875,-794.1187133789062,840.605712890625,-1486.895263671875,-787.467529296875,835.0247802734375,-1486.895263671875,-794.1187133789062,840.6057739257812,-1754.5272216796875,-802.2775268554688,843.5753173828125,-1754.5272216796875,-802.2775268554688,843.5753173828125,-1486.895263671875,-794.1187133789062,840.6057739257812,-1754.5272216796875,-802.2775268554688,843.5753173828125,-1486.895263671875,-794.1187133789062,840.605712890625,-1486.895263671875,-802.2775268554688,843.5753173828125,-1754.5272216796875,-810.9597778320312,843.5753173828125,-1754.5272216796875,-810.9597778320312,843.5753173828125,-1486.895263671875,-802.2775268554688,843.5753173828125,-1754.5272216796875,-810.9597778320312,843.5753173828125,-1486.895263671875,-802.2775268554688,843.5753173828125,-1486.895263671875,-810.9597778320312,843.5753173828125,-1754.5272216796875,-819.1187133789062,840.6057739257812,-1754.5272216796875,-819.1187133789062,840.605712890625,-1486.895263671875,-810.9597778320312,843.5753173828125,-1754.5272216796875,-819.1187133789062,840.605712890625,-1486.895263671875,-810.9597778320312,843.5753173828125,-1486.895263671875,-819.1187133789062,840.6057739257812,-1754.5272216796875,-825.769775390625,835.0247802734375,-1754.5272216796875,-825.769775390625,835.0247802734375,-1486.895263671875,-819.1187133789062,840.6057739257812,-1754.5272216796875,-825.769775390625,835.0247802734375,-1486.895263671875,-819.1187133789062,840.605712890625,-1486.895263671875,-825.769775390625,835.0247802734375,-1754.5272216796875,-830.1110229492188,827.505615234375,-1754.5272216796875,-830.1110229492188,827.505615234375,-1486.895263671875,-825.769775390625,835.0247802734375,-1754.5272216796875,-830.1110229492188,827.505615234375,-1486.895263671875,-825.769775390625,835.0247802734375,-1486.895263671875,-830.1110229492188,827.505615234375,-1754.5272216796875,-831.6187133789062,818.955078125,-1754.5272216796875,-831.6187133789062,818.955078125,-1486.895263671875,-830.1110229492188,827.505615234375,-1754.5272216796875,-831.6187133789062,818.955078125,-1486.895263671875,-830.1110229492188,827.505615234375,-1486.895263671875,-831.6187133789062,818.955078125,-1754.5272216796875,-830.1110229492188,810.4047241210938,-1754.5272216796875,-830.1110229492188,810.4046020507812,-1486.895263671875,-831.6187133789062,818.955078125,-1754.5272216796875,-830.1110229492188,810.4046020507812,-1486.895263671875,-831.6187133789062,818.955078125,-1486.895263671875,-830.1110229492188,810.4047241210938,-1754.5272216796875,-825.769775390625,802.8853759765625,-1754.5272216796875,-825.769775390625,802.8853759765625,-1486.895263671875,-830.1110229492188,810.4047241210938,-1754.5272216796875,-825.769775390625,802.8853759765625,-1486.895263671875,-830.1110229492188,810.4046020507812,-1486.895263671875,-825.769775390625,802.8853759765625,-1754.5272216796875,-819.1187133789062,797.3045043945312,-1754.5272216796875,-819.1187133789062,797.3043823242188,-1486.895263671875,-825.769775390625,802.8853759765625,-1754.5272216796875,-819.1187133789062,797.3043823242188,-1486.895263671875,-825.769775390625,802.8853759765625,-1486.895263671875,-819.1187133789062,797.3045043945312,-1754.5272216796875,-810.9597778320312,794.3350219726562,-1754.5272216796875,-810.9597778320312,794.3348999023438,-1486.895263671875,-819.1187133789062,797.3045043945312,-1754.5272216796875,-810.9597778320312,794.3348999023438,-1486.895263671875,-819.1187133789062,797.3043823242188,-1486.895263671875,-810.9597778320312,794.3350219726562,-1754.5272216796875,-802.2775268554688,794.3350219726562,-1754.5272216796875,-802.2775268554688,794.3348999023438,-1486.895263671875,-810.9597778320312,794.3350219726562,-1754.5272216796875,-802.2775268554688,794.3348999023438,-1486.895263671875,-810.9597778320312,794.3348999023438,-1486.895263671875,-802.2775268554688,794.3350219726562,-1754.5272216796875,-794.1187133789062,797.3045043945312,-1754.5272216796875,-794.1187133789062,797.3043823242188,-1486.895263671875,-802.2775268554688,794.3350219726562,-1754.5272216796875,-794.1187133789062,797.3043823242188,-1486.895263671875,-802.2775268554688,794.3348999023438,-1486.895263671875,-794.1187133789062,797.3045043945312,-1754.5272216796875,-787.467529296875,802.8853759765625,-1754.5272216796875,-787.467529296875,802.8853759765625,-1486.895263671875,-794.1187133789062,797.3045043945312,-1754.5272216796875,-787.467529296875,802.8853759765625,-1486.895263671875,-794.1187133789062,797.3043823242188,-1486.895263671875,-787.467529296875,802.8853759765625,-1754.5272216796875,-783.1262817382812,810.4046020507812,-1754.5272216796875,-783.1262817382812,810.4046020507812,-1486.895263671875,-787.467529296875,802.8853759765625,-1754.5272216796875,-783.1262817382812,810.4046020507812,-1486.895263671875,-787.467529296875,802.8853759765625,-1486.895263671875,-783.1262817382812,810.4046020507812,-1754.5272216796875,-781.6187133789062,818.955078125,-1754.5272216796875,-781.6187133789062,818.955078125,-1486.895263671875,-783.1262817382812,810.4046020507812,-1754.5272216796875,-781.6187133789062,818.955078125,-1486.895263671875,-783.1262817382812,810.4046020507812,-1486.895263671875,-781.6187133789062,818.955078125,-1486.895263671875,-783.1262817382812,827.505615234375,-1486.895263671875,-783.1262817382812,827.505615234375,-1219.263427734375,-781.6187133789062,818.955078125,-1486.895263671875,-783.1262817382812,827.505615234375,-1219.263427734375,-781.6187133789062,818.955078125,-1219.263427734375,-783.1262817382812,827.505615234375,-1486.895263671875,-787.467529296875,835.0247802734375,-1486.895263671875,-787.467529296875,835.0247192382812,-1219.263427734375,-783.1262817382812,827.505615234375,-1486.895263671875,-787.467529296875,835.0247192382812,-1219.263427734375,-783.1262817382812,827.505615234375,-1219.263427734375,-787.467529296875,835.0247802734375,-1486.895263671875,-794.1187133789062,840.605712890625,-1486.895263671875,-794.1187133789062,840.605712890625,-1219.263427734375,-787.467529296875,835.0247802734375,-1486.895263671875,-794.1187133789062,840.605712890625,-1219.263427734375,-787.467529296875,835.0247192382812,-1219.263427734375,-794.1187133789062,840.605712890625,-1486.895263671875,-802.2775268554688,843.5753173828125,-1486.895263671875,-802.2775268554688,843.5753173828125,-1219.263427734375,-794.1187133789062,840.605712890625,-1486.895263671875,-802.2775268554688,843.5753173828125,-1219.263427734375,-794.1187133789062,840.605712890625,-1219.263427734375,-802.2775268554688,843.5753173828125,-1486.895263671875,-810.9597778320312,843.5753173828125,-1486.895263671875,-810.9597778320312,843.5753173828125,-1219.263427734375,-802.2775268554688,843.5753173828125,-1486.895263671875,-810.9597778320312,843.5753173828125,-1219.263427734375,-802.2775268554688,843.5753173828125,-1219.263427734375,-810.9597778320312,843.5753173828125,-1486.895263671875,-819.1187133789062,840.605712890625,-1486.895263671875,-819.1187133789062,840.605712890625,-1219.263427734375,-810.9597778320312,843.5753173828125,-1486.895263671875,-819.1187133789062,840.605712890625,-1219.263427734375,-810.9597778320312,843.5753173828125,-1219.263427734375,-819.1187133789062,840.605712890625,-1486.895263671875,-825.769775390625,835.0247802734375,-1486.895263671875,-825.769775390625,835.0247192382812,-1219.263427734375,-819.1187133789062,840.605712890625,-1486.895263671875,-825.769775390625,835.0247192382812,-1219.263427734375,-819.1187133789062,840.605712890625,-1219.263427734375,-825.769775390625,835.0247802734375,-1486.895263671875,-830.1110229492188,827.505615234375,-1486.895263671875,-830.1110229492188,827.505615234375,-1219.263427734375,-825.769775390625,835.0247802734375,-1486.895263671875,-830.1110229492188,827.505615234375,-1219.263427734375,-825.769775390625,835.0247192382812,-1219.263427734375,-830.1110229492188,827.505615234375,-1486.895263671875,-831.6187133789062,818.955078125,-1486.895263671875,-831.6187133789062,818.955078125,-1219.263427734375,-830.1110229492188,827.505615234375,-1486.895263671875,-831.6187133789062,818.955078125,-1219.263427734375,-830.1110229492188,827.505615234375,-1219.263427734375,-831.6187133789062,818.955078125,-1486.895263671875,-830.1110229492188,810.4046020507812,-1486.895263671875,-830.1110229492188,810.4044799804688,-1219.263427734375,-831.6187133789062,818.955078125,-1486.895263671875,-830.1110229492188,810.4044799804688,-1219.263427734375,-831.6187133789062,818.955078125,-1219.263427734375,-830.1110229492188,810.4046020507812,-1486.895263671875,-825.769775390625,802.8853759765625,-1486.895263671875,-825.769775390625,802.8853759765625,-1219.263427734375,-830.1110229492188,810.4046020507812,-1486.895263671875,-825.769775390625,802.8853759765625,-1219.263427734375,-830.1110229492188,810.4044799804688,-1219.263427734375,-825.769775390625,802.8853759765625,-1486.895263671875,-819.1187133789062,797.3043823242188,-1486.895263671875,-819.1187133789062,797.3043823242188,-1219.263427734375,-825.769775390625,802.8853759765625,-1486.895263671875,-819.1187133789062,797.3043823242188,-1219.263427734375,-825.769775390625,802.8853759765625,-1219.263427734375,-819.1187133789062,797.3043823242188,-1486.895263671875,-810.9597778320312,794.3348999023438,-1486.895263671875,-810.9597778320312,794.3347778320312,-1219.263427734375,-819.1187133789062,797.3043823242188,-1486.895263671875,-810.9597778320312,794.3347778320312,-1219.263427734375,-819.1187133789062,797.3043823242188,-1219.263427734375,-810.9597778320312,794.3348999023438,-1486.895263671875,-802.2775268554688,794.3348999023438,-1486.895263671875,-802.2775268554688,794.3347778320312,-1219.263427734375,-810.9597778320312,794.3348999023438,-1486.895263671875,-802.2775268554688,794.3347778320312,-1219.263427734375,-810.9597778320312,794.3347778320312,-1219.263427734375,-802.2775268554688,794.3348999023438,-1486.895263671875,-794.1187133789062,797.3043823242188,-1486.895263671875,-794.1187133789062,797.3043823242188,-1219.263427734375,-802.2775268554688,794.3348999023438,-1486.895263671875,-794.1187133789062,797.3043823242188,-1219.263427734375,-802.2775268554688,794.3347778320312,-1219.263427734375,-794.1187133789062,797.3043823242188,-1486.895263671875,-787.467529296875,802.8853759765625,-1486.895263671875,-787.467529296875,802.8853759765625,-1219.263427734375,-794.1187133789062,797.3043823242188,-1486.895263671875,-787.467529296875,802.8853759765625,-1219.263427734375,-794.1187133789062,797.3043823242188,-1219.263427734375,-787.467529296875,802.8853759765625,-1486.895263671875,-783.1262817382812,810.4046020507812,-1486.895263671875,-783.1262817382812,810.4044799804688,-1219.263427734375,-787.467529296875,802.8853759765625,-1486.895263671875,-783.1262817382812,810.4044799804688,-1219.263427734375,-787.467529296875,802.8853759765625,-1219.263427734375,-783.1262817382812,810.4046020507812,-1486.895263671875,-781.6187133789062,818.955078125,-1486.895263671875,-781.6187133789062,818.955078125,-1219.263427734375,-783.1262817382812,810.4046020507812,-1486.895263671875,-781.6187133789062,818.955078125,-1219.263427734375,-783.1262817382812,810.4044799804688,-1219.263427734375,-781.6187133789062,818.955078125,-1219.263427734375,-783.1262817382812,827.505615234375,-1219.263427734375,-783.1262817382812,827.5054931640625,-951.6314697265625,-781.6187133789062,818.955078125,-1219.263427734375,-783.1262817382812,827.5054931640625,-951.6314697265625,-781.6187133789062,818.9550170898438,-951.6314697265625,-783.1262817382812,827.505615234375,-1219.263427734375,-787.467529296875,835.0247192382812,-1219.263427734375,-787.467529296875,835.0247192382812,-951.6314697265625,-783.1262817382812,827.505615234375,-1219.263427734375,-787.467529296875,835.0247192382812,-951.6314697265625,-783.1262817382812,827.5054931640625,-951.6314697265625,-787.467529296875,835.0247192382812,-1219.263427734375,-794.1187133789062,840.605712890625,-1219.263427734375,-794.1187133789062,840.605712890625,-951.6314697265625,-787.467529296875,835.0247192382812,-1219.263427734375,-794.1187133789062,840.605712890625,-951.6314697265625,-787.467529296875,835.0247192382812,-951.6314697265625,-794.1187133789062,840.605712890625,-1219.263427734375,-802.2775268554688,843.5753173828125,-1219.263427734375,-802.2775268554688,843.5751953125,-951.6314697265625,-794.1187133789062,840.605712890625,-1219.263427734375,-802.2775268554688,843.5751953125,-951.6314697265625,-794.1187133789062,840.605712890625,-951.6314697265625,-802.2775268554688,843.5753173828125,-1219.263427734375,-810.9597778320312,843.5753173828125,-1219.263427734375,-810.9597778320312,843.5751953125,-951.6314697265625,-802.2775268554688,843.5753173828125,-1219.263427734375,-810.9597778320312,843.5751953125,-951.6314697265625,-802.2775268554688,843.5751953125,-951.6314697265625,-810.9597778320312,843.5753173828125,-1219.263427734375,-819.1187133789062,840.605712890625,-1219.263427734375,-819.1187133789062,840.605712890625,-951.6314697265625,-810.9597778320312,843.5753173828125,-1219.263427734375,-819.1187133789062,840.605712890625,-951.6314697265625,-810.9597778320312,843.5751953125,-951.6314697265625,-819.1187133789062,840.605712890625,-1219.263427734375,-825.769775390625,835.0247192382812,-1219.263427734375,-825.769775390625,835.0247192382812,-951.6314697265625,-819.1187133789062,840.605712890625,-1219.263427734375,-825.769775390625,835.0247192382812,-951.6314697265625,-819.1187133789062,840.605712890625,-951.6314697265625,-825.769775390625,835.0247192382812,-1219.263427734375,-830.1110229492188,827.505615234375,-1219.263427734375,-830.1110229492188,827.5054931640625,-951.6314697265625,-825.769775390625,835.0247192382812,-1219.263427734375,-830.1110229492188,827.5054931640625,-951.6314697265625,-825.769775390625,835.0247192382812,-951.6314697265625,-830.1110229492188,827.505615234375,-1219.263427734375,-831.6187133789062,818.955078125,-1219.263427734375,-831.6187133789062,818.9550170898438,-951.6314697265625,-830.1110229492188,827.505615234375,-1219.263427734375,-831.6187133789062,818.9550170898438,-951.6314697265625,-830.1110229492188,827.5054931640625,-951.6314697265625,-831.6187133789062,818.955078125,-1219.263427734375,-830.1110229492188,810.4044799804688,-1219.263427734375,-830.1110229492188,810.4044799804688,-951.6314697265625,-831.6187133789062,818.955078125,-1219.263427734375,-830.1110229492188,810.4044799804688,-951.6314697265625,-831.6187133789062,818.9550170898438,-951.6314697265625,-830.1110229492188,810.4044799804688,-1219.263427734375,-825.769775390625,802.8853759765625,-1219.263427734375,-825.769775390625,802.8853149414062,-951.6314697265625,-830.1110229492188,810.4044799804688,-1219.263427734375,-825.769775390625,802.8853149414062,-951.6314697265625,-830.1110229492188,810.4044799804688,-951.6314697265625,-825.769775390625,802.8853759765625,-1219.263427734375,-819.1187133789062,797.3043823242188,-1219.263427734375,-819.1187133789062,797.3043823242188,-951.6314697265625,-825.769775390625,802.8853759765625,-1219.263427734375,-819.1187133789062,797.3043823242188,-951.6314697265625,-825.769775390625,802.8853149414062,-951.6314697265625,-819.1187133789062,797.3043823242188,-1219.263427734375,-810.9597778320312,794.3347778320312,-1219.263427734375,-810.9597778320312,794.3347778320312,-951.6314697265625,-819.1187133789062,797.3043823242188,-1219.263427734375,-810.9597778320312,794.3347778320312,-951.6314697265625,-819.1187133789062,797.3043823242188,-951.6314697265625,-810.9597778320312,794.3347778320312,-1219.263427734375,-802.2775268554688,794.3347778320312,-1219.263427734375,-802.2775268554688,794.3347778320312,-951.6314697265625,-810.9597778320312,794.3347778320312,-1219.263427734375,-802.2775268554688,794.3347778320312,-951.6314697265625,-810.9597778320312,794.3347778320312,-951.6314697265625,-802.2775268554688,794.3347778320312,-1219.263427734375,-794.1187133789062,797.3043823242188,-1219.263427734375,-794.1187133789062,797.3043823242188,-951.6314697265625,-802.2775268554688,794.3347778320312,-1219.263427734375,-794.1187133789062,797.3043823242188,-951.6314697265625,-802.2775268554688,794.3347778320312,-951.6314697265625,-794.1187133789062,797.3043823242188,-1219.263427734375,-787.467529296875,802.8853759765625,-1219.263427734375,-787.467529296875,802.8853149414062,-951.6314697265625,-794.1187133789062,797.3043823242188,-1219.263427734375,-787.467529296875,802.8853149414062,-951.6314697265625,-794.1187133789062,797.3043823242188,-951.6314697265625,-787.467529296875,802.8853759765625,-1219.263427734375,-783.1262817382812,810.4044799804688,-1219.263427734375,-783.1262817382812,810.4044799804688,-951.6314697265625,-787.467529296875,802.8853759765625,-1219.263427734375,-783.1262817382812,810.4044799804688,-951.6314697265625,-787.467529296875,802.8853149414062,-951.6314697265625,-783.1262817382812,810.4044799804688,-1219.263427734375,-781.6187133789062,818.955078125,-1219.263427734375,-781.6187133789062,818.9550170898438,-951.6314697265625,-783.1262817382812,810.4044799804688,-1219.263427734375,-781.6187133789062,818.9550170898438,-951.6314697265625,-783.1262817382812,810.4044799804688,-951.6314697265625,-781.6187133789062,818.9550170898438,-951.6314697265625,-783.1262817382812,827.5054931640625,-951.6314697265625,-783.1262817382812,827.5054931640625,-683.9995727539062,-781.6187133789062,818.9550170898438,-951.6314697265625,-783.1262817382812,827.5054931640625,-683.9995727539062,-781.6187133789062,818.9550170898438,-683.9995727539062,-783.1262817382812,827.5054931640625,-951.6314697265625,-787.467529296875,835.0247192382812,-951.6314697265625,-787.467529296875,835.0247192382812,-683.9995727539062,-783.1262817382812,827.5054931640625,-951.6314697265625,-787.467529296875,835.0247192382812,-683.9995727539062,-783.1262817382812,827.5054931640625,-683.9995727539062,-787.467529296875,835.0247192382812,-951.6314697265625,-794.1187133789062,840.605712890625,-951.6314697265625,-794.1187133789062,840.6055908203125,-683.9995727539062,-787.467529296875,835.0247192382812,-951.6314697265625,-794.1187133789062,840.6055908203125,-683.9995727539062,-787.467529296875,835.0247192382812,-683.9995727539062,-794.1187133789062,840.605712890625,-951.6314697265625,-802.2775268554688,843.5751953125,-951.6314697265625,-802.2775268554688,843.5750732421875,-683.9995727539062,-794.1187133789062,840.605712890625,-951.6314697265625,-802.2775268554688,843.5750732421875,-683.9995727539062,-794.1187133789062,840.6055908203125,-683.9995727539062,-802.2775268554688,843.5751953125,-951.6314697265625,-810.9597778320312,843.5751953125,-951.6314697265625,-810.9597778320312,843.5750732421875,-683.9995727539062,-802.2775268554688,843.5751953125,-951.6314697265625,-810.9597778320312,843.5750732421875,-683.9995727539062,-802.2775268554688,843.5750732421875,-683.9995727539062,-810.9597778320312,843.5751953125,-951.6314697265625,-819.1187133789062,840.605712890625,-951.6314697265625,-819.1187133789062,840.6055908203125,-683.9995727539062,-810.9597778320312,843.5751953125,-951.6314697265625,-819.1187133789062,840.6055908203125,-683.9995727539062,-810.9597778320312,843.5750732421875,-683.9995727539062,-819.1187133789062,840.605712890625,-951.6314697265625,-825.769775390625,835.0247192382812,-951.6314697265625,-825.769775390625,835.0247192382812,-683.9995727539062,-819.1187133789062,840.605712890625,-951.6314697265625,-825.769775390625,835.0247192382812,-683.9995727539062,-819.1187133789062,840.6055908203125,-683.9995727539062,-825.769775390625,835.0247192382812,-951.6314697265625,-830.1110229492188,827.5054931640625,-951.6314697265625,-830.1110229492188,827.5054931640625,-683.9995727539062,-825.769775390625,835.0247192382812,-951.6314697265625,-830.1110229492188,827.5054931640625,-683.9995727539062,-825.769775390625,835.0247192382812,-683.9995727539062,-830.1110229492188,827.5054931640625,-951.6314697265625,-831.6187133789062,818.9550170898438,-951.6314697265625,-831.6187133789062,818.9550170898438,-683.9995727539062,-830.1110229492188,827.5054931640625,-951.6314697265625,-831.6187133789062,818.9550170898438,-683.9995727539062,-830.1110229492188,827.5054931640625,-683.9995727539062,-831.6187133789062,818.9550170898438,-951.6314697265625,-830.1110229492188,810.4044799804688,-951.6314697265625,-830.1110229492188,810.4044799804688,-683.9995727539062,-831.6187133789062,818.9550170898438,-951.6314697265625,-830.1110229492188,810.4044799804688,-683.9995727539062,-831.6187133789062,818.9550170898438,-683.9995727539062,-830.1110229492188,810.4044799804688,-951.6314697265625,-825.769775390625,802.8853149414062,-951.6314697265625,-825.769775390625,802.8853149414062,-683.9995727539062,-830.1110229492188,810.4044799804688,-951.6314697265625,-825.769775390625,802.8853149414062,-683.9995727539062,-830.1110229492188,810.4044799804688,-683.9995727539062,-825.769775390625,802.8853149414062,-951.6314697265625,-819.1187133789062,797.3043823242188,-951.6314697265625,-819.1187133789062,797.3043212890625,-683.9995727539062,-825.769775390625,802.8853149414062,-951.6314697265625,-819.1187133789062,797.3043212890625,-683.9995727539062,-825.769775390625,802.8853149414062,-683.9995727539062,-819.1187133789062,797.3043823242188,-951.6314697265625,-810.9597778320312,794.3347778320312,-951.6314697265625,-810.9597778320312,794.3347778320312,-683.9995727539062,-819.1187133789062,797.3043823242188,-951.6314697265625,-810.9597778320312,794.3347778320312,-683.9995727539062,-819.1187133789062,797.3043212890625,-683.9995727539062,-810.9597778320312,794.3347778320312,-951.6314697265625,-802.2775268554688,794.3347778320312,-951.6314697265625,-802.2775268554688,794.3347778320312,-683.9995727539062,-810.9597778320312,794.3347778320312,-951.6314697265625,-802.2775268554688,794.3347778320312,-683.9995727539062,-810.9597778320312,794.3347778320312,-683.9995727539062,-802.2775268554688,794.3347778320312,-951.6314697265625,-794.1187133789062,797.3043823242188,-951.6314697265625,-794.1187133789062,797.3043212890625,-683.9995727539062,-802.2775268554688,794.3347778320312,-951.6314697265625,-794.1187133789062,797.3043212890625,-683.9995727539062,-802.2775268554688,794.3347778320312,-683.9995727539062,-794.1187133789062,797.3043823242188,-951.6314697265625,-787.467529296875,802.8853149414062,-951.6314697265625,-787.467529296875,802.8853149414062,-683.9995727539062,-794.1187133789062,797.3043823242188,-951.6314697265625,-787.467529296875,802.8853149414062,-683.9995727539062,-794.1187133789062,797.3043212890625,-683.9995727539062,-787.467529296875,802.8853149414062,-951.6314697265625,-783.1262817382812,810.4044799804688,-951.6314697265625,-783.1262817382812,810.4044189453125,-683.9995727539062,-787.467529296875,802.8853149414062,-951.6314697265625,-783.1262817382812,810.4044189453125,-683.9995727539062,-787.467529296875,802.8853149414062,-683.9995727539062,-783.1262817382812,810.4044799804688,-951.6314697265625,-781.6187133789062,818.9550170898438,-951.6314697265625,-781.6187133789062,818.9550170898438,-683.9995727539062,-783.1262817382812,810.4044799804688,-951.6314697265625,-781.6187133789062,818.9550170898438,-683.9995727539062,-783.1262817382812,810.4044189453125,-683.9995727539062,-781.6187133789062,818.9550170898438,-683.9995727539062,-783.1262817382812,827.5054931640625,-683.9995727539062,-783.1262817382812,827.50537109375,-416.3677062988281,-781.6187133789062,818.9550170898438,-683.9995727539062,-783.1262817382812,827.50537109375,-416.3677062988281,-781.6187133789062,818.9548950195312,-416.3677062988281,-783.1262817382812,827.5054931640625,-683.9995727539062,-787.467529296875,835.0247192382812,-683.9995727539062,-787.467529296875,835.0245971679688,-416.3677062988281,-783.1262817382812,827.5054931640625,-683.9995727539062,-787.467529296875,835.0245971679688,-416.3677062988281,-783.1262817382812,827.50537109375,-416.3677062988281,-787.467529296875,835.0247192382812,-683.9995727539062,-794.1187133789062,840.6055908203125,-683.9995727539062,-794.1187133789062,840.6055297851562,-416.3677062988281,-787.467529296875,835.0247192382812,-683.9995727539062,-794.1187133789062,840.6055297851562,-416.3677062988281,-787.467529296875,835.0245971679688,-416.3677062988281,-794.1187133789062,840.6055908203125,-683.9995727539062,-802.2775268554688,843.5750732421875,-683.9995727539062,-802.2775268554688,843.5750732421875,-416.3677062988281,-794.1187133789062,840.6055908203125,-683.9995727539062,-802.2775268554688,843.5750732421875,-416.3677062988281,-794.1187133789062,840.6055297851562,-416.3677062988281,-802.2775268554688,843.5750732421875,-683.9995727539062,-810.9597778320312,843.5750732421875,-683.9995727539062,-810.9597778320312,843.5750732421875,-416.3677062988281,-802.2775268554688,843.5750732421875,-683.9995727539062,-810.9597778320312,843.5750732421875,-416.3677062988281,-802.2775268554688,843.5750732421875,-416.3677062988281,-810.9597778320312,843.5750732421875,-683.9995727539062,-819.1187133789062,840.6055908203125,-683.9995727539062,-819.1187133789062,840.6055297851562,-416.3677062988281,-810.9597778320312,843.5750732421875,-683.9995727539062,-819.1187133789062,840.6055297851562,-416.3677062988281,-810.9597778320312,843.5750732421875,-416.3677062988281,-819.1187133789062,840.6055908203125,-683.9995727539062,-825.769775390625,835.0247192382812,-683.9995727539062,-825.769775390625,835.0245971679688,-416.3677062988281,-819.1187133789062,840.6055908203125,-683.9995727539062,-825.769775390625,835.0245971679688,-416.3677062988281,-819.1187133789062,840.6055297851562,-416.3677062988281,-825.769775390625,835.0247192382812,-683.9995727539062,-830.1110229492188,827.5054931640625,-683.9995727539062,-830.1110229492188,827.50537109375,-416.3677062988281,-825.769775390625,835.0247192382812,-683.9995727539062,-830.1110229492188,827.50537109375,-416.3677062988281,-825.769775390625,835.0245971679688,-416.3677062988281,-830.1110229492188,827.5054931640625,-683.9995727539062,-831.6187133789062,818.9550170898438,-683.9995727539062,-831.6187133789062,818.9548950195312,-416.3677062988281,-830.1110229492188,827.5054931640625,-683.9995727539062,-831.6187133789062,818.9548950195312,-416.3677062988281,-830.1110229492188,827.50537109375,-416.3677062988281,-831.6187133789062,818.9550170898438,-683.9995727539062,-830.1110229492188,810.4044799804688,-683.9995727539062,-830.1110229492188,810.4044189453125,-416.3677062988281,-831.6187133789062,818.9550170898438,-683.9995727539062,-830.1110229492188,810.4044189453125,-416.3677062988281,-831.6187133789062,818.9548950195312,-416.3677062988281,-830.1110229492188,810.4044799804688,-683.9995727539062,-825.769775390625,802.8853149414062,-683.9995727539062,-825.769775390625,802.8853149414062,-416.3677062988281,-830.1110229492188,810.4044799804688,-683.9995727539062,-825.769775390625,802.8853149414062,-416.3677062988281,-830.1110229492188,810.4044189453125,-416.3677062988281,-825.769775390625,802.8853149414062,-683.9995727539062,-819.1187133789062,797.3043212890625,-683.9995727539062,-819.1187133789062,797.3043212890625,-416.3677062988281,-825.769775390625,802.8853149414062,-683.9995727539062,-819.1187133789062,797.3043212890625,-416.3677062988281,-825.769775390625,802.8853149414062,-416.3677062988281,-819.1187133789062,797.3043212890625,-683.9995727539062,-810.9597778320312,794.3347778320312,-683.9995727539062,-810.9597778320312,794.334716796875,-416.3677062988281,-819.1187133789062,797.3043212890625,-683.9995727539062,-810.9597778320312,794.334716796875,-416.3677062988281,-819.1187133789062,797.3043212890625,-416.3677062988281,-810.9597778320312,794.3347778320312,-683.9995727539062,-802.2775268554688,794.3347778320312,-683.9995727539062,-802.2775268554688,794.334716796875,-416.3677062988281,-810.9597778320312,794.3347778320312,-683.9995727539062,-802.2775268554688,794.334716796875,-416.3677062988281,-810.9597778320312,794.334716796875,-416.3677062988281,-802.2775268554688,794.3347778320312,-683.9995727539062,-794.1187133789062,797.3043212890625,-683.9995727539062,-794.1187133789062,797.3043212890625,-416.3677062988281,-802.2775268554688,794.3347778320312,-683.9995727539062,-794.1187133789062,797.3043212890625,-416.3677062988281,-802.2775268554688,794.334716796875,-416.3677062988281,-794.1187133789062,797.3043212890625,-683.9995727539062,-787.467529296875,802.8853149414062,-683.9995727539062,-787.467529296875,802.8851928710938,-416.3677062988281,-794.1187133789062,797.3043212890625,-683.9995727539062,-787.467529296875,802.8851928710938,-416.3677062988281,-794.1187133789062,797.3043212890625,-416.3677062988281,-787.467529296875,802.8853149414062,-683.9995727539062,-783.1262817382812,810.4044189453125,-683.9995727539062,-783.1262817382812,810.4044189453125,-416.3677062988281,-787.467529296875,802.8853149414062,-683.9995727539062,-783.1262817382812,810.4044189453125,-416.3677062988281,-787.467529296875,802.8851928710938,-416.3677062988281,-783.1262817382812,810.4044189453125,-683.9995727539062,-781.6187133789062,818.9550170898438,-683.9995727539062,-781.6187133789062,818.9548950195312,-416.3677062988281,-783.1262817382812,810.4044189453125,-683.9995727539062,-781.6187133789062,818.9548950195312,-416.3677062988281,-783.1262817382812,810.4044189453125,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-783.1262817382812,810.4044189453125,-416.3677062988281,-781.6187133789062,818.9548950195312,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-781.6187133789062,818.9548950195312,-416.3677062988281,-783.1262817382812,827.50537109375,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-783.1262817382812,827.50537109375,-416.3677062988281,-787.467529296875,835.0245971679688,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-787.467529296875,835.0245971679688,-416.3677062988281,-794.1187133789062,840.6055297851562,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-794.1187133789062,840.6055297851562,-416.3677062988281,-802.2775268554688,843.5750732421875,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-802.2775268554688,843.5750732421875,-416.3677062988281,-810.9597778320312,843.5750732421875,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-810.9597778320312,843.5750732421875,-416.3677062988281,-819.1187133789062,840.6055297851562,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-819.1187133789062,840.6055297851562,-416.3677062988281,-825.769775390625,835.0245971679688,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-825.769775390625,835.0245971679688,-416.3677062988281,-830.1110229492188,827.50537109375,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-830.1110229492188,827.50537109375,-416.3677062988281,-831.6187133789062,818.9548950195312,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-831.6187133789062,818.9548950195312,-416.3677062988281,-830.1110229492188,810.4044189453125,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-830.1110229492188,810.4044189453125,-416.3677062988281,-825.769775390625,802.8853149414062,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-825.769775390625,802.8853149414062,-416.3677062988281,-819.1187133789062,797.3043212890625,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-819.1187133789062,797.3043212890625,-416.3677062988281,-810.9597778320312,794.334716796875,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-810.9597778320312,794.334716796875,-416.3677062988281,-802.2775268554688,794.334716796875,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-802.2775268554688,794.334716796875,-416.3677062988281,-794.1187133789062,797.3043212890625,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-794.1187133789062,797.3043212890625,-416.3677062988281,-787.467529296875,802.8851928710938,-416.3677062988281,-806.6187133789062,818.9548950195312,-416.3677062988281,-787.467529296875,802.8851928710938,-416.3677062988281,-783.1262817382812,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-806.6187133789062,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466595042122
| }
| }
| },
| {
| "uuid": "00D7C3E3-AD7D-48FE-A099-327E31CEA5E0",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-706.6187133789062,818.955078125,-1754.5272216796875,-687.467529296875,835.0247802734375,-1754.5272216796875,-683.1262817382812,827.505615234375,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-683.1262817382812,827.505615234375,-1754.5272216796875,-681.6187133789062,818.955078125,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-702.2775268554688,843.5753173828125,-1754.5272216796875,-694.1187133789062,840.6057739257812,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-694.1187133789062,840.6057739257812,-1754.5272216796875,-687.467529296875,835.0247802734375,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-719.1187133789062,840.6057739257812,-1754.5272216796875,-710.9597778320312,843.5753173828125,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-710.9597778320312,843.5753173828125,-1754.5272216796875,-702.2775268554688,843.5753173828125,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-730.1110229492188,827.505615234375,-1754.5272216796875,-725.769775390625,835.0247802734375,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-725.769775390625,835.0247802734375,-1754.5272216796875,-719.1187133789062,840.6057739257812,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-730.1110229492188,810.4047241210938,-1754.5272216796875,-731.6187133789062,818.955078125,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-731.6187133789062,818.955078125,-1754.5272216796875,-730.1110229492188,827.505615234375,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-719.1187133789062,797.3045043945312,-1754.5272216796875,-725.769775390625,802.8853759765625,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-725.769775390625,802.8853759765625,-1754.5272216796875,-730.1110229492188,810.4047241210938,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-702.2775268554688,794.3350219726562,-1754.5272216796875,-710.9597778320312,794.3350219726562,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-710.9597778320312,794.3350219726562,-1754.5272216796875,-719.1187133789062,797.3045043945312,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-687.467529296875,802.8853759765625,-1754.5272216796875,-694.1187133789062,797.3045043945312,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-694.1187133789062,797.3045043945312,-1754.5272216796875,-702.2775268554688,794.3350219726562,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-681.6187133789062,818.955078125,-1754.5272216796875,-683.1262817382812,810.4046020507812,-1754.5272216796875,-706.6187133789062,818.955078125,-1754.5272216796875,-683.1262817382812,810.4046020507812,-1754.5272216796875,-687.467529296875,802.8853759765625,-1754.5272216796875,-681.6187133789062,818.955078125,-1754.5272216796875,-683.1262817382812,827.505615234375,-1754.5272216796875,-683.1262817382812,827.505615234375,-1486.895263671875,-681.6187133789062,818.955078125,-1754.5272216796875,-683.1262817382812,827.505615234375,-1486.895263671875,-681.6187133789062,818.955078125,-1486.895263671875,-683.1262817382812,827.505615234375,-1754.5272216796875,-687.467529296875,835.0247802734375,-1754.5272216796875,-687.467529296875,835.0247802734375,-1486.895263671875,-683.1262817382812,827.505615234375,-1754.5272216796875,-687.467529296875,835.0247802734375,-1486.895263671875,-683.1262817382812,827.505615234375,-1486.895263671875,-687.467529296875,835.0247802734375,-1754.5272216796875,-694.1187133789062,840.6057739257812,-1754.5272216796875,-694.1187133789062,840.605712890625,-1486.895263671875,-687.467529296875,835.0247802734375,-1754.5272216796875,-694.1187133789062,840.605712890625,-1486.895263671875,-687.467529296875,835.0247802734375,-1486.895263671875,-694.1187133789062,840.6057739257812,-1754.5272216796875,-702.2775268554688,843.5753173828125,-1754.5272216796875,-702.2775268554688,843.5753173828125,-1486.895263671875,-694.1187133789062,840.6057739257812,-1754.5272216796875,-702.2775268554688,843.5753173828125,-1486.895263671875,-694.1187133789062,840.605712890625,-1486.895263671875,-702.2775268554688,843.5753173828125,-1754.5272216796875,-710.9597778320312,843.5753173828125,-1754.5272216796875,-710.9597778320312,843.5753173828125,-1486.895263671875,-702.2775268554688,843.5753173828125,-1754.5272216796875,-710.9597778320312,843.5753173828125,-1486.895263671875,-702.2775268554688,843.5753173828125,-1486.895263671875,-710.9597778320312,843.5753173828125,-1754.5272216796875,-719.1187133789062,840.6057739257812,-1754.5272216796875,-719.1187133789062,840.605712890625,-1486.895263671875,-710.9597778320312,843.5753173828125,-1754.5272216796875,-719.1187133789062,840.605712890625,-1486.895263671875,-710.9597778320312,843.5753173828125,-1486.895263671875,-719.1187133789062,840.6057739257812,-1754.5272216796875,-725.769775390625,835.0247802734375,-1754.5272216796875,-725.769775390625,835.0247802734375,-1486.895263671875,-719.1187133789062,840.6057739257812,-1754.5272216796875,-725.769775390625,835.0247802734375,-1486.895263671875,-719.1187133789062,840.605712890625,-1486.895263671875,-725.769775390625,835.0247802734375,-1754.5272216796875,-730.1110229492188,827.505615234375,-1754.5272216796875,-730.1110229492188,827.505615234375,-1486.895263671875,-725.769775390625,835.0247802734375,-1754.5272216796875,-730.1110229492188,827.505615234375,-1486.895263671875,-725.769775390625,835.0247802734375,-1486.895263671875,-730.1110229492188,827.505615234375,-1754.5272216796875,-731.6187133789062,818.955078125,-1754.5272216796875,-731.6187133789062,818.955078125,-1486.895263671875,-730.1110229492188,827.505615234375,-1754.5272216796875,-731.6187133789062,818.955078125,-1486.895263671875,-730.1110229492188,827.505615234375,-1486.895263671875,-731.6187133789062,818.955078125,-1754.5272216796875,-730.1110229492188,810.4047241210938,-1754.5272216796875,-730.1110229492188,810.4046020507812,-1486.895263671875,-731.6187133789062,818.955078125,-1754.5272216796875,-730.1110229492188,810.4046020507812,-1486.895263671875,-731.6187133789062,818.955078125,-1486.895263671875,-730.1110229492188,810.4047241210938,-1754.5272216796875,-725.769775390625,802.8853759765625,-1754.5272216796875,-725.769775390625,802.8853759765625,-1486.895263671875,-730.1110229492188,810.4047241210938,-1754.5272216796875,-725.769775390625,802.8853759765625,-1486.895263671875,-730.1110229492188,810.4046020507812,-1486.895263671875,-725.769775390625,802.8853759765625,-1754.5272216796875,-719.1187133789062,797.3045043945312,-1754.5272216796875,-719.1187133789062,797.3043823242188,-1486.895263671875,-725.769775390625,802.8853759765625,-1754.5272216796875,-719.1187133789062,797.3043823242188,-1486.895263671875,-725.769775390625,802.8853759765625,-1486.895263671875,-719.1187133789062,797.3045043945312,-1754.5272216796875,-710.9597778320312,794.3350219726562,-1754.5272216796875,-710.9597778320312,794.3348999023438,-1486.895263671875,-719.1187133789062,797.3045043945312,-1754.5272216796875,-710.9597778320312,794.3348999023438,-1486.895263671875,-719.1187133789062,797.3043823242188,-1486.895263671875,-710.9597778320312,794.3350219726562,-1754.5272216796875,-702.2775268554688,794.3350219726562,-1754.5272216796875,-702.2775268554688,794.3348999023438,-1486.895263671875,-710.9597778320312,794.3350219726562,-1754.5272216796875,-702.2775268554688,794.3348999023438,-1486.895263671875,-710.9597778320312,794.3348999023438,-1486.895263671875,-702.2775268554688,794.3350219726562,-1754.5272216796875,-694.1187133789062,797.3045043945312,-1754.5272216796875,-694.1187133789062,797.3043823242188,-1486.895263671875,-702.2775268554688,794.3350219726562,-1754.5272216796875,-694.1187133789062,797.3043823242188,-1486.895263671875,-702.2775268554688,794.3348999023438,-1486.895263671875,-694.1187133789062,797.3045043945312,-1754.5272216796875,-687.467529296875,802.8853759765625,-1754.5272216796875,-687.467529296875,802.8853759765625,-1486.895263671875,-694.1187133789062,797.3045043945312,-1754.5272216796875,-687.467529296875,802.8853759765625,-1486.895263671875,-694.1187133789062,797.3043823242188,-1486.895263671875,-687.467529296875,802.8853759765625,-1754.5272216796875,-683.1262817382812,810.4046020507812,-1754.5272216796875,-683.1262817382812,810.4046020507812,-1486.895263671875,-687.467529296875,802.8853759765625,-1754.5272216796875,-683.1262817382812,810.4046020507812,-1486.895263671875,-687.467529296875,802.8853759765625,-1486.895263671875,-683.1262817382812,810.4046020507812,-1754.5272216796875,-681.6187133789062,818.955078125,-1754.5272216796875,-681.6187133789062,818.955078125,-1486.895263671875,-683.1262817382812,810.4046020507812,-1754.5272216796875,-681.6187133789062,818.955078125,-1486.895263671875,-683.1262817382812,810.4046020507812,-1486.895263671875,-681.6187133789062,818.955078125,-1486.895263671875,-683.1262817382812,827.505615234375,-1486.895263671875,-683.1262817382812,827.505615234375,-1219.263427734375,-681.6187133789062,818.955078125,-1486.895263671875,-683.1262817382812,827.505615234375,-1219.263427734375,-681.6187133789062,818.955078125,-1219.263427734375,-683.1262817382812,827.505615234375,-1486.895263671875,-687.467529296875,835.0247802734375,-1486.895263671875,-687.467529296875,835.0247192382812,-1219.263427734375,-683.1262817382812,827.505615234375,-1486.895263671875,-687.467529296875,835.0247192382812,-1219.263427734375,-683.1262817382812,827.505615234375,-1219.263427734375,-687.467529296875,835.0247802734375,-1486.895263671875,-694.1187133789062,840.605712890625,-1486.895263671875,-694.1187133789062,840.605712890625,-1219.263427734375,-687.467529296875,835.0247802734375,-1486.895263671875,-694.1187133789062,840.605712890625,-1219.263427734375,-687.467529296875,835.0247192382812,-1219.263427734375,-694.1187133789062,840.605712890625,-1486.895263671875,-702.2775268554688,843.5753173828125,-1486.895263671875,-702.2775268554688,843.5753173828125,-1219.263427734375,-694.1187133789062,840.605712890625,-1486.895263671875,-702.2775268554688,843.5753173828125,-1219.263427734375,-694.1187133789062,840.605712890625,-1219.263427734375,-702.2775268554688,843.5753173828125,-1486.895263671875,-710.9597778320312,843.5753173828125,-1486.895263671875,-710.9597778320312,843.5753173828125,-1219.263427734375,-702.2775268554688,843.5753173828125,-1486.895263671875,-710.9597778320312,843.5753173828125,-1219.263427734375,-702.2775268554688,843.5753173828125,-1219.263427734375,-710.9597778320312,843.5753173828125,-1486.895263671875,-719.1187133789062,840.605712890625,-1486.895263671875,-719.1187133789062,840.605712890625,-1219.263427734375,-710.9597778320312,843.5753173828125,-1486.895263671875,-719.1187133789062,840.605712890625,-1219.263427734375,-710.9597778320312,843.5753173828125,-1219.263427734375,-719.1187133789062,840.605712890625,-1486.895263671875,-725.769775390625,835.0247802734375,-1486.895263671875,-725.769775390625,835.0247192382812,-1219.263427734375,-719.1187133789062,840.605712890625,-1486.895263671875,-725.769775390625,835.0247192382812,-1219.263427734375,-719.1187133789062,840.605712890625,-1219.263427734375,-725.769775390625,835.0247802734375,-1486.895263671875,-730.1110229492188,827.505615234375,-1486.895263671875,-730.1110229492188,827.505615234375,-1219.263427734375,-725.769775390625,835.0247802734375,-1486.895263671875,-730.1110229492188,827.505615234375,-1219.263427734375,-725.769775390625,835.0247192382812,-1219.263427734375,-730.1110229492188,827.505615234375,-1486.895263671875,-731.6187133789062,818.955078125,-1486.895263671875,-731.6187133789062,818.955078125,-1219.263427734375,-730.1110229492188,827.505615234375,-1486.895263671875,-731.6187133789062,818.955078125,-1219.263427734375,-730.1110229492188,827.505615234375,-1219.263427734375,-731.6187133789062,818.955078125,-1486.895263671875,-730.1110229492188,810.4046020507812,-1486.895263671875,-730.1110229492188,810.4044799804688,-1219.263427734375,-731.6187133789062,818.955078125,-1486.895263671875,-730.1110229492188,810.4044799804688,-1219.263427734375,-731.6187133789062,818.955078125,-1219.263427734375,-730.1110229492188,810.4046020507812,-1486.895263671875,-725.769775390625,802.8853759765625,-1486.895263671875,-725.769775390625,802.8853759765625,-1219.263427734375,-730.1110229492188,810.4046020507812,-1486.895263671875,-725.769775390625,802.8853759765625,-1219.263427734375,-730.1110229492188,810.4044799804688,-1219.263427734375,-725.769775390625,802.8853759765625,-1486.895263671875,-719.1187133789062,797.3043823242188,-1486.895263671875,-719.1187133789062,797.3043823242188,-1219.263427734375,-725.769775390625,802.8853759765625,-1486.895263671875,-719.1187133789062,797.3043823242188,-1219.263427734375,-725.769775390625,802.8853759765625,-1219.263427734375,-719.1187133789062,797.3043823242188,-1486.895263671875,-710.9597778320312,794.3348999023438,-1486.895263671875,-710.9597778320312,794.3347778320312,-1219.263427734375,-719.1187133789062,797.3043823242188,-1486.895263671875,-710.9597778320312,794.3347778320312,-1219.263427734375,-719.1187133789062,797.3043823242188,-1219.263427734375,-710.9597778320312,794.3348999023438,-1486.895263671875,-702.2775268554688,794.3348999023438,-1486.895263671875,-702.2775268554688,794.3347778320312,-1219.263427734375,-710.9597778320312,794.3348999023438,-1486.895263671875,-702.2775268554688,794.3347778320312,-1219.263427734375,-710.9597778320312,794.3347778320312,-1219.263427734375,-702.2775268554688,794.3348999023438,-1486.895263671875,-694.1187133789062,797.3043823242188,-1486.895263671875,-694.1187133789062,797.3043823242188,-1219.263427734375,-702.2775268554688,794.3348999023438,-1486.895263671875,-694.1187133789062,797.3043823242188,-1219.263427734375,-702.2775268554688,794.3347778320312,-1219.263427734375,-694.1187133789062,797.3043823242188,-1486.895263671875,-687.467529296875,802.8853759765625,-1486.895263671875,-687.467529296875,802.8853759765625,-1219.263427734375,-694.1187133789062,797.3043823242188,-1486.895263671875,-687.467529296875,802.8853759765625,-1219.263427734375,-694.1187133789062,797.3043823242188,-1219.263427734375,-687.467529296875,802.8853759765625,-1486.895263671875,-683.1262817382812,810.4046020507812,-1486.895263671875,-683.1262817382812,810.4044799804688,-1219.263427734375,-687.467529296875,802.8853759765625,-1486.895263671875,-683.1262817382812,810.4044799804688,-1219.263427734375,-687.467529296875,802.8853759765625,-1219.263427734375,-683.1262817382812,810.4046020507812,-1486.895263671875,-681.6187133789062,818.955078125,-1486.895263671875,-681.6187133789062,818.955078125,-1219.263427734375,-683.1262817382812,810.4046020507812,-1486.895263671875,-681.6187133789062,818.955078125,-1219.263427734375,-683.1262817382812,810.4044799804688,-1219.263427734375,-681.6187133789062,818.955078125,-1219.263427734375,-683.1262817382812,827.505615234375,-1219.263427734375,-683.1262817382812,827.5054931640625,-951.6314697265625,-681.6187133789062,818.955078125,-1219.263427734375,-683.1262817382812,827.5054931640625,-951.6314697265625,-681.6187133789062,818.9550170898438,-951.6314697265625,-683.1262817382812,827.505615234375,-1219.263427734375,-687.467529296875,835.0247192382812,-1219.263427734375,-687.467529296875,835.0247192382812,-951.6314697265625,-683.1262817382812,827.505615234375,-1219.263427734375,-687.467529296875,835.0247192382812,-951.6314697265625,-683.1262817382812,827.5054931640625,-951.6314697265625,-687.467529296875,835.0247192382812,-1219.263427734375,-694.1187133789062,840.605712890625,-1219.263427734375,-694.1187133789062,840.605712890625,-951.6314697265625,-687.467529296875,835.0247192382812,-1219.263427734375,-694.1187133789062,840.605712890625,-951.6314697265625,-687.467529296875,835.0247192382812,-951.6314697265625,-694.1187133789062,840.605712890625,-1219.263427734375,-702.2775268554688,843.5753173828125,-1219.263427734375,-702.2775268554688,843.5751953125,-951.6314697265625,-694.1187133789062,840.605712890625,-1219.263427734375,-702.2775268554688,843.5751953125,-951.6314697265625,-694.1187133789062,840.605712890625,-951.6314697265625,-702.2775268554688,843.5753173828125,-1219.263427734375,-710.9597778320312,843.5753173828125,-1219.263427734375,-710.9597778320312,843.5751953125,-951.6314697265625,-702.2775268554688,843.5753173828125,-1219.263427734375,-710.9597778320312,843.5751953125,-951.6314697265625,-702.2775268554688,843.5751953125,-951.6314697265625,-710.9597778320312,843.5753173828125,-1219.263427734375,-719.1187133789062,840.605712890625,-1219.263427734375,-719.1187133789062,840.605712890625,-951.6314697265625,-710.9597778320312,843.5753173828125,-1219.263427734375,-719.1187133789062,840.605712890625,-951.6314697265625,-710.9597778320312,843.5751953125,-951.6314697265625,-719.1187133789062,840.605712890625,-1219.263427734375,-725.769775390625,835.0247192382812,-1219.263427734375,-725.769775390625,835.0247192382812,-951.6314697265625,-719.1187133789062,840.605712890625,-1219.263427734375,-725.769775390625,835.0247192382812,-951.6314697265625,-719.1187133789062,840.605712890625,-951.6314697265625,-725.769775390625,835.0247192382812,-1219.263427734375,-730.1110229492188,827.505615234375,-1219.263427734375,-730.1110229492188,827.5054931640625,-951.6314697265625,-725.769775390625,835.0247192382812,-1219.263427734375,-730.1110229492188,827.5054931640625,-951.6314697265625,-725.769775390625,835.0247192382812,-951.6314697265625,-730.1110229492188,827.505615234375,-1219.263427734375,-731.6187133789062,818.955078125,-1219.263427734375,-731.6187133789062,818.9550170898438,-951.6314697265625,-730.1110229492188,827.505615234375,-1219.263427734375,-731.6187133789062,818.9550170898438,-951.6314697265625,-730.1110229492188,827.5054931640625,-951.6314697265625,-731.6187133789062,818.955078125,-1219.263427734375,-730.1110229492188,810.4044799804688,-1219.263427734375,-730.1110229492188,810.4044799804688,-951.6314697265625,-731.6187133789062,818.955078125,-1219.263427734375,-730.1110229492188,810.4044799804688,-951.6314697265625,-731.6187133789062,818.9550170898438,-951.6314697265625,-730.1110229492188,810.4044799804688,-1219.263427734375,-725.769775390625,802.8853759765625,-1219.263427734375,-725.769775390625,802.8853149414062,-951.6314697265625,-730.1110229492188,810.4044799804688,-1219.263427734375,-725.769775390625,802.8853149414062,-951.6314697265625,-730.1110229492188,810.4044799804688,-951.6314697265625,-725.769775390625,802.8853759765625,-1219.263427734375,-719.1187133789062,797.3043823242188,-1219.263427734375,-719.1187133789062,797.3043823242188,-951.6314697265625,-725.769775390625,802.8853759765625,-1219.263427734375,-719.1187133789062,797.3043823242188,-951.6314697265625,-725.769775390625,802.8853149414062,-951.6314697265625,-719.1187133789062,797.3043823242188,-1219.263427734375,-710.9597778320312,794.3347778320312,-1219.263427734375,-710.9597778320312,794.3347778320312,-951.6314697265625,-719.1187133789062,797.3043823242188,-1219.263427734375,-710.9597778320312,794.3347778320312,-951.6314697265625,-719.1187133789062,797.3043823242188,-951.6314697265625,-710.9597778320312,794.3347778320312,-1219.263427734375,-702.2775268554688,794.3347778320312,-1219.263427734375,-702.2775268554688,794.3347778320312,-951.6314697265625,-710.9597778320312,794.3347778320312,-1219.263427734375,-702.2775268554688,794.3347778320312,-951.6314697265625,-710.9597778320312,794.3347778320312,-951.6314697265625,-702.2775268554688,794.3347778320312,-1219.263427734375,-694.1187133789062,797.3043823242188,-1219.263427734375,-694.1187133789062,797.3043823242188,-951.6314697265625,-702.2775268554688,794.3347778320312,-1219.263427734375,-694.1187133789062,797.3043823242188,-951.6314697265625,-702.2775268554688,794.3347778320312,-951.6314697265625,-694.1187133789062,797.3043823242188,-1219.263427734375,-687.467529296875,802.8853759765625,-1219.263427734375,-687.467529296875,802.8853149414062,-951.6314697265625,-694.1187133789062,797.3043823242188,-1219.263427734375,-687.467529296875,802.8853149414062,-951.6314697265625,-694.1187133789062,797.3043823242188,-951.6314697265625,-687.467529296875,802.8853759765625,-1219.263427734375,-683.1262817382812,810.4044799804688,-1219.263427734375,-683.1262817382812,810.4044799804688,-951.6314697265625,-687.467529296875,802.8853759765625,-1219.263427734375,-683.1262817382812,810.4044799804688,-951.6314697265625,-687.467529296875,802.8853149414062,-951.6314697265625,-683.1262817382812,810.4044799804688,-1219.263427734375,-681.6187133789062,818.955078125,-1219.263427734375,-681.6187133789062,818.9550170898438,-951.6314697265625,-683.1262817382812,810.4044799804688,-1219.263427734375,-681.6187133789062,818.9550170898438,-951.6314697265625,-683.1262817382812,810.4044799804688,-951.6314697265625,-681.6187133789062,818.9550170898438,-951.6314697265625,-683.1262817382812,827.5054931640625,-951.6314697265625,-683.1262817382812,827.5054931640625,-683.9995727539062,-681.6187133789062,818.9550170898438,-951.6314697265625,-683.1262817382812,827.5054931640625,-683.9995727539062,-681.6187133789062,818.9550170898438,-683.9995727539062,-683.1262817382812,827.5054931640625,-951.6314697265625,-687.467529296875,835.0247192382812,-951.6314697265625,-687.467529296875,835.0247192382812,-683.9995727539062,-683.1262817382812,827.5054931640625,-951.6314697265625,-687.467529296875,835.0247192382812,-683.9995727539062,-683.1262817382812,827.5054931640625,-683.9995727539062,-687.467529296875,835.0247192382812,-951.6314697265625,-694.1187133789062,840.605712890625,-951.6314697265625,-694.1187133789062,840.6055908203125,-683.9995727539062,-687.467529296875,835.0247192382812,-951.6314697265625,-694.1187133789062,840.6055908203125,-683.9995727539062,-687.467529296875,835.0247192382812,-683.9995727539062,-694.1187133789062,840.605712890625,-951.6314697265625,-702.2775268554688,843.5751953125,-951.6314697265625,-702.2775268554688,843.5750732421875,-683.9995727539062,-694.1187133789062,840.605712890625,-951.6314697265625,-702.2775268554688,843.5750732421875,-683.9995727539062,-694.1187133789062,840.6055908203125,-683.9995727539062,-702.2775268554688,843.5751953125,-951.6314697265625,-710.9597778320312,843.5751953125,-951.6314697265625,-710.9597778320312,843.5750732421875,-683.9995727539062,-702.2775268554688,843.5751953125,-951.6314697265625,-710.9597778320312,843.5750732421875,-683.9995727539062,-702.2775268554688,843.5750732421875,-683.9995727539062,-710.9597778320312,843.5751953125,-951.6314697265625,-719.1187133789062,840.605712890625,-951.6314697265625,-719.1187133789062,840.6055908203125,-683.9995727539062,-710.9597778320312,843.5751953125,-951.6314697265625,-719.1187133789062,840.6055908203125,-683.9995727539062,-710.9597778320312,843.5750732421875,-683.9995727539062,-719.1187133789062,840.605712890625,-951.6314697265625,-725.769775390625,835.0247192382812,-951.6314697265625,-725.769775390625,835.0247192382812,-683.9995727539062,-719.1187133789062,840.605712890625,-951.6314697265625,-725.769775390625,835.0247192382812,-683.9995727539062,-719.1187133789062,840.6055908203125,-683.9995727539062,-725.769775390625,835.0247192382812,-951.6314697265625,-730.1110229492188,827.5054931640625,-951.6314697265625,-730.1110229492188,827.5054931640625,-683.9995727539062,-725.769775390625,835.0247192382812,-951.6314697265625,-730.1110229492188,827.5054931640625,-683.9995727539062,-725.769775390625,835.0247192382812,-683.9995727539062,-730.1110229492188,827.5054931640625,-951.6314697265625,-731.6187133789062,818.9550170898438,-951.6314697265625,-731.6187133789062,818.9550170898438,-683.9995727539062,-730.1110229492188,827.5054931640625,-951.6314697265625,-731.6187133789062,818.9550170898438,-683.9995727539062,-730.1110229492188,827.5054931640625,-683.9995727539062,-731.6187133789062,818.9550170898438,-951.6314697265625,-730.1110229492188,810.4044799804688,-951.6314697265625,-730.1110229492188,810.4044799804688,-683.9995727539062,-731.6187133789062,818.9550170898438,-951.6314697265625,-730.1110229492188,810.4044799804688,-683.9995727539062,-731.6187133789062,818.9550170898438,-683.9995727539062,-730.1110229492188,810.4044799804688,-951.6314697265625,-725.769775390625,802.8853149414062,-951.6314697265625,-725.769775390625,802.8853149414062,-683.9995727539062,-730.1110229492188,810.4044799804688,-951.6314697265625,-725.769775390625,802.8853149414062,-683.9995727539062,-730.1110229492188,810.4044799804688,-683.9995727539062,-725.769775390625,802.8853149414062,-951.6314697265625,-719.1187133789062,797.3043823242188,-951.6314697265625,-719.1187133789062,797.3043212890625,-683.9995727539062,-725.769775390625,802.8853149414062,-951.6314697265625,-719.1187133789062,797.3043212890625,-683.9995727539062,-725.769775390625,802.8853149414062,-683.9995727539062,-719.1187133789062,797.3043823242188,-951.6314697265625,-710.9597778320312,794.3347778320312,-951.6314697265625,-710.9597778320312,794.3347778320312,-683.9995727539062,-719.1187133789062,797.3043823242188,-951.6314697265625,-710.9597778320312,794.3347778320312,-683.9995727539062,-719.1187133789062,797.3043212890625,-683.9995727539062,-710.9597778320312,794.3347778320312,-951.6314697265625,-702.2775268554688,794.3347778320312,-951.6314697265625,-702.2775268554688,794.3347778320312,-683.9995727539062,-710.9597778320312,794.3347778320312,-951.6314697265625,-702.2775268554688,794.3347778320312,-683.9995727539062,-710.9597778320312,794.3347778320312,-683.9995727539062,-702.2775268554688,794.3347778320312,-951.6314697265625,-694.1187133789062,797.3043823242188,-951.6314697265625,-694.1187133789062,797.3043212890625,-683.9995727539062,-702.2775268554688,794.3347778320312,-951.6314697265625,-694.1187133789062,797.3043212890625,-683.9995727539062,-702.2775268554688,794.3347778320312,-683.9995727539062,-694.1187133789062,797.3043823242188,-951.6314697265625,-687.467529296875,802.8853149414062,-951.6314697265625,-687.467529296875,802.8853149414062,-683.9995727539062,-694.1187133789062,797.3043823242188,-951.6314697265625,-687.467529296875,802.8853149414062,-683.9995727539062,-694.1187133789062,797.3043212890625,-683.9995727539062,-687.467529296875,802.8853149414062,-951.6314697265625,-683.1262817382812,810.4044799804688,-951.6314697265625,-683.1262817382812,810.4044189453125,-683.9995727539062,-687.467529296875,802.8853149414062,-951.6314697265625,-683.1262817382812,810.4044189453125,-683.9995727539062,-687.467529296875,802.8853149414062,-683.9995727539062,-683.1262817382812,810.4044799804688,-951.6314697265625,-681.6187133789062,818.9550170898438,-951.6314697265625,-681.6187133789062,818.9550170898438,-683.9995727539062,-683.1262817382812,810.4044799804688,-951.6314697265625,-681.6187133789062,818.9550170898438,-683.9995727539062,-683.1262817382812,810.4044189453125,-683.9995727539062,-681.6187133789062,818.9550170898438,-683.9995727539062,-683.1262817382812,827.5054931640625,-683.9995727539062,-683.1262817382812,827.50537109375,-416.3677062988281,-681.6187133789062,818.9550170898438,-683.9995727539062,-683.1262817382812,827.50537109375,-416.3677062988281,-681.6187133789062,818.9548950195312,-416.3677062988281,-683.1262817382812,827.5054931640625,-683.9995727539062,-687.467529296875,835.0247192382812,-683.9995727539062,-687.467529296875,835.0245971679688,-416.3677062988281,-683.1262817382812,827.5054931640625,-683.9995727539062,-687.467529296875,835.0245971679688,-416.3677062988281,-683.1262817382812,827.50537109375,-416.3677062988281,-687.467529296875,835.0247192382812,-683.9995727539062,-694.1187133789062,840.6055908203125,-683.9995727539062,-694.1187133789062,840.6055297851562,-416.3677062988281,-687.467529296875,835.0247192382812,-683.9995727539062,-694.1187133789062,840.6055297851562,-416.3677062988281,-687.467529296875,835.0245971679688,-416.3677062988281,-694.1187133789062,840.6055908203125,-683.9995727539062,-702.2775268554688,843.5750732421875,-683.9995727539062,-702.2775268554688,843.5750732421875,-416.3677062988281,-694.1187133789062,840.6055908203125,-683.9995727539062,-702.2775268554688,843.5750732421875,-416.3677062988281,-694.1187133789062,840.6055297851562,-416.3677062988281,-702.2775268554688,843.5750732421875,-683.9995727539062,-710.9597778320312,843.5750732421875,-683.9995727539062,-710.9597778320312,843.5750732421875,-416.3677062988281,-702.2775268554688,843.5750732421875,-683.9995727539062,-710.9597778320312,843.5750732421875,-416.3677062988281,-702.2775268554688,843.5750732421875,-416.3677062988281,-710.9597778320312,843.5750732421875,-683.9995727539062,-719.1187133789062,840.6055908203125,-683.9995727539062,-719.1187133789062,840.6055297851562,-416.3677062988281,-710.9597778320312,843.5750732421875,-683.9995727539062,-719.1187133789062,840.6055297851562,-416.3677062988281,-710.9597778320312,843.5750732421875,-416.3677062988281,-719.1187133789062,840.6055908203125,-683.9995727539062,-725.769775390625,835.0247192382812,-683.9995727539062,-725.769775390625,835.0245971679688,-416.3677062988281,-719.1187133789062,840.6055908203125,-683.9995727539062,-725.769775390625,835.0245971679688,-416.3677062988281,-719.1187133789062,840.6055297851562,-416.3677062988281,-725.769775390625,835.0247192382812,-683.9995727539062,-730.1110229492188,827.5054931640625,-683.9995727539062,-730.1110229492188,827.50537109375,-416.3677062988281,-725.769775390625,835.0247192382812,-683.9995727539062,-730.1110229492188,827.50537109375,-416.3677062988281,-725.769775390625,835.0245971679688,-416.3677062988281,-730.1110229492188,827.5054931640625,-683.9995727539062,-731.6187133789062,818.9550170898438,-683.9995727539062,-731.6187133789062,818.9548950195312,-416.3677062988281,-730.1110229492188,827.5054931640625,-683.9995727539062,-731.6187133789062,818.9548950195312,-416.3677062988281,-730.1110229492188,827.50537109375,-416.3677062988281,-731.6187133789062,818.9550170898438,-683.9995727539062,-730.1110229492188,810.4044799804688,-683.9995727539062,-730.1110229492188,810.4044189453125,-416.3677062988281,-731.6187133789062,818.9550170898438,-683.9995727539062,-730.1110229492188,810.4044189453125,-416.3677062988281,-731.6187133789062,818.9548950195312,-416.3677062988281,-730.1110229492188,810.4044799804688,-683.9995727539062,-725.769775390625,802.8853149414062,-683.9995727539062,-725.769775390625,802.8853149414062,-416.3677062988281,-730.1110229492188,810.4044799804688,-683.9995727539062,-725.769775390625,802.8853149414062,-416.3677062988281,-730.1110229492188,810.4044189453125,-416.3677062988281,-725.769775390625,802.8853149414062,-683.9995727539062,-719.1187133789062,797.3043212890625,-683.9995727539062,-719.1187133789062,797.3043212890625,-416.3677062988281,-725.769775390625,802.8853149414062,-683.9995727539062,-719.1187133789062,797.3043212890625,-416.3677062988281,-725.769775390625,802.8853149414062,-416.3677062988281,-719.1187133789062,797.3043212890625,-683.9995727539062,-710.9597778320312,794.3347778320312,-683.9995727539062,-710.9597778320312,794.334716796875,-416.3677062988281,-719.1187133789062,797.3043212890625,-683.9995727539062,-710.9597778320312,794.334716796875,-416.3677062988281,-719.1187133789062,797.3043212890625,-416.3677062988281,-710.9597778320312,794.3347778320312,-683.9995727539062,-702.2775268554688,794.3347778320312,-683.9995727539062,-702.2775268554688,794.334716796875,-416.3677062988281,-710.9597778320312,794.3347778320312,-683.9995727539062,-702.2775268554688,794.334716796875,-416.3677062988281,-710.9597778320312,794.334716796875,-416.3677062988281,-702.2775268554688,794.3347778320312,-683.9995727539062,-694.1187133789062,797.3043212890625,-683.9995727539062,-694.1187133789062,797.3043212890625,-416.3677062988281,-702.2775268554688,794.3347778320312,-683.9995727539062,-694.1187133789062,797.3043212890625,-416.3677062988281,-702.2775268554688,794.334716796875,-416.3677062988281,-694.1187133789062,797.3043212890625,-683.9995727539062,-687.467529296875,802.8853149414062,-683.9995727539062,-687.467529296875,802.8851928710938,-416.3677062988281,-694.1187133789062,797.3043212890625,-683.9995727539062,-687.467529296875,802.8851928710938,-416.3677062988281,-694.1187133789062,797.3043212890625,-416.3677062988281,-687.467529296875,802.8853149414062,-683.9995727539062,-683.1262817382812,810.4044189453125,-683.9995727539062,-683.1262817382812,810.4044189453125,-416.3677062988281,-687.467529296875,802.8853149414062,-683.9995727539062,-683.1262817382812,810.4044189453125,-416.3677062988281,-687.467529296875,802.8851928710938,-416.3677062988281,-683.1262817382812,810.4044189453125,-683.9995727539062,-681.6187133789062,818.9550170898438,-683.9995727539062,-681.6187133789062,818.9548950195312,-416.3677062988281,-683.1262817382812,810.4044189453125,-683.9995727539062,-681.6187133789062,818.9548950195312,-416.3677062988281,-683.1262817382812,810.4044189453125,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-683.1262817382812,810.4044189453125,-416.3677062988281,-681.6187133789062,818.9548950195312,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-681.6187133789062,818.9548950195312,-416.3677062988281,-683.1262817382812,827.50537109375,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-683.1262817382812,827.50537109375,-416.3677062988281,-687.467529296875,835.0245971679688,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-687.467529296875,835.0245971679688,-416.3677062988281,-694.1187133789062,840.6055297851562,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-694.1187133789062,840.6055297851562,-416.3677062988281,-702.2775268554688,843.5750732421875,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-702.2775268554688,843.5750732421875,-416.3677062988281,-710.9597778320312,843.5750732421875,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-710.9597778320312,843.5750732421875,-416.3677062988281,-719.1187133789062,840.6055297851562,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-719.1187133789062,840.6055297851562,-416.3677062988281,-725.769775390625,835.0245971679688,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-725.769775390625,835.0245971679688,-416.3677062988281,-730.1110229492188,827.50537109375,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-730.1110229492188,827.50537109375,-416.3677062988281,-731.6187133789062,818.9548950195312,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-731.6187133789062,818.9548950195312,-416.3677062988281,-730.1110229492188,810.4044189453125,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-730.1110229492188,810.4044189453125,-416.3677062988281,-725.769775390625,802.8853149414062,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-725.769775390625,802.8853149414062,-416.3677062988281,-719.1187133789062,797.3043212890625,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-719.1187133789062,797.3043212890625,-416.3677062988281,-710.9597778320312,794.334716796875,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-710.9597778320312,794.334716796875,-416.3677062988281,-702.2775268554688,794.334716796875,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-702.2775268554688,794.334716796875,-416.3677062988281,-694.1187133789062,797.3043212890625,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-694.1187133789062,797.3043212890625,-416.3677062988281,-687.467529296875,802.8851928710938,-416.3677062988281,-706.6187133789062,818.9548950195312,-416.3677062988281,-687.467529296875,802.8851928710938,-416.3677062988281,-683.1262817382812,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-706.6187133789062,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466595042122
| }
| }
| },
| {
| "uuid": "4378B561-1D58-41CC-8C0E-40FDD50758CE",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-606.6187133789062,818.955078125,-1754.5272216796875,-587.467529296875,835.0247802734375,-1754.5272216796875,-583.1262817382812,827.505615234375,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-583.1262817382812,827.505615234375,-1754.5272216796875,-581.6187133789062,818.955078125,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-602.2775268554688,843.5753173828125,-1754.5272216796875,-594.1187133789062,840.6057739257812,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-594.1187133789062,840.6057739257812,-1754.5272216796875,-587.467529296875,835.0247802734375,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-619.1187133789062,840.6057739257812,-1754.5272216796875,-610.9597778320312,843.5753173828125,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-610.9597778320312,843.5753173828125,-1754.5272216796875,-602.2775268554688,843.5753173828125,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-630.1110229492188,827.505615234375,-1754.5272216796875,-625.769775390625,835.0247802734375,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-625.769775390625,835.0247802734375,-1754.5272216796875,-619.1187133789062,840.6057739257812,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-630.1110229492188,810.4047241210938,-1754.5272216796875,-631.6187133789062,818.955078125,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-631.6187133789062,818.955078125,-1754.5272216796875,-630.1110229492188,827.505615234375,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-619.1187133789062,797.3045043945312,-1754.5272216796875,-625.769775390625,802.8853759765625,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-625.769775390625,802.8853759765625,-1754.5272216796875,-630.1110229492188,810.4047241210938,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-602.2775268554688,794.3350219726562,-1754.5272216796875,-610.9597778320312,794.3350219726562,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-610.9597778320312,794.3350219726562,-1754.5272216796875,-619.1187133789062,797.3045043945312,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-587.467529296875,802.8853759765625,-1754.5272216796875,-594.1187133789062,797.3045043945312,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-594.1187133789062,797.3045043945312,-1754.5272216796875,-602.2775268554688,794.3350219726562,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-581.6187133789062,818.955078125,-1754.5272216796875,-583.1262817382812,810.4046020507812,-1754.5272216796875,-606.6187133789062,818.955078125,-1754.5272216796875,-583.1262817382812,810.4046020507812,-1754.5272216796875,-587.467529296875,802.8853759765625,-1754.5272216796875,-581.6187133789062,818.955078125,-1754.5272216796875,-583.1262817382812,827.505615234375,-1754.5272216796875,-583.1262817382812,827.505615234375,-1486.895263671875,-581.6187133789062,818.955078125,-1754.5272216796875,-583.1262817382812,827.505615234375,-1486.895263671875,-581.6187133789062,818.955078125,-1486.895263671875,-583.1262817382812,827.505615234375,-1754.5272216796875,-587.467529296875,835.0247802734375,-1754.5272216796875,-587.467529296875,835.0247802734375,-1486.895263671875,-583.1262817382812,827.505615234375,-1754.5272216796875,-587.467529296875,835.0247802734375,-1486.895263671875,-583.1262817382812,827.505615234375,-1486.895263671875,-587.467529296875,835.0247802734375,-1754.5272216796875,-594.1187133789062,840.6057739257812,-1754.5272216796875,-594.1187133789062,840.605712890625,-1486.895263671875,-587.467529296875,835.0247802734375,-1754.5272216796875,-594.1187133789062,840.605712890625,-1486.895263671875,-587.467529296875,835.0247802734375,-1486.895263671875,-594.1187133789062,840.6057739257812,-1754.5272216796875,-602.2775268554688,843.5753173828125,-1754.5272216796875,-602.2775268554688,843.5753173828125,-1486.895263671875,-594.1187133789062,840.6057739257812,-1754.5272216796875,-602.2775268554688,843.5753173828125,-1486.895263671875,-594.1187133789062,840.605712890625,-1486.895263671875,-602.2775268554688,843.5753173828125,-1754.5272216796875,-610.9597778320312,843.5753173828125,-1754.5272216796875,-610.9597778320312,843.5753173828125,-1486.895263671875,-602.2775268554688,843.5753173828125,-1754.5272216796875,-610.9597778320312,843.5753173828125,-1486.895263671875,-602.2775268554688,843.5753173828125,-1486.895263671875,-610.9597778320312,843.5753173828125,-1754.5272216796875,-619.1187133789062,840.6057739257812,-1754.5272216796875,-619.1187133789062,840.605712890625,-1486.895263671875,-610.9597778320312,843.5753173828125,-1754.5272216796875,-619.1187133789062,840.605712890625,-1486.895263671875,-610.9597778320312,843.5753173828125,-1486.895263671875,-619.1187133789062,840.6057739257812,-1754.5272216796875,-625.769775390625,835.0247802734375,-1754.5272216796875,-625.769775390625,835.0247802734375,-1486.895263671875,-619.1187133789062,840.6057739257812,-1754.5272216796875,-625.769775390625,835.0247802734375,-1486.895263671875,-619.1187133789062,840.605712890625,-1486.895263671875,-625.769775390625,835.0247802734375,-1754.5272216796875,-630.1110229492188,827.505615234375,-1754.5272216796875,-630.1110229492188,827.505615234375,-1486.895263671875,-625.769775390625,835.0247802734375,-1754.5272216796875,-630.1110229492188,827.505615234375,-1486.895263671875,-625.769775390625,835.0247802734375,-1486.895263671875,-630.1110229492188,827.505615234375,-1754.5272216796875,-631.6187133789062,818.955078125,-1754.5272216796875,-631.6187133789062,818.955078125,-1486.895263671875,-630.1110229492188,827.505615234375,-1754.5272216796875,-631.6187133789062,818.955078125,-1486.895263671875,-630.1110229492188,827.505615234375,-1486.895263671875,-631.6187133789062,818.955078125,-1754.5272216796875,-630.1110229492188,810.4047241210938,-1754.5272216796875,-630.1110229492188,810.4046020507812,-1486.895263671875,-631.6187133789062,818.955078125,-1754.5272216796875,-630.1110229492188,810.4046020507812,-1486.895263671875,-631.6187133789062,818.955078125,-1486.895263671875,-630.1110229492188,810.4047241210938,-1754.5272216796875,-625.769775390625,802.8853759765625,-1754.5272216796875,-625.769775390625,802.8853759765625,-1486.895263671875,-630.1110229492188,810.4047241210938,-1754.5272216796875,-625.769775390625,802.8853759765625,-1486.895263671875,-630.1110229492188,810.4046020507812,-1486.895263671875,-625.769775390625,802.8853759765625,-1754.5272216796875,-619.1187133789062,797.3045043945312,-1754.5272216796875,-619.1187133789062,797.3043823242188,-1486.895263671875,-625.769775390625,802.8853759765625,-1754.5272216796875,-619.1187133789062,797.3043823242188,-1486.895263671875,-625.769775390625,802.8853759765625,-1486.895263671875,-619.1187133789062,797.3045043945312,-1754.5272216796875,-610.9597778320312,794.3350219726562,-1754.5272216796875,-610.9597778320312,794.3348999023438,-1486.895263671875,-619.1187133789062,797.3045043945312,-1754.5272216796875,-610.9597778320312,794.3348999023438,-1486.895263671875,-619.1187133789062,797.3043823242188,-1486.895263671875,-610.9597778320312,794.3350219726562,-1754.5272216796875,-602.2775268554688,794.3350219726562,-1754.5272216796875,-602.2775268554688,794.3348999023438,-1486.895263671875,-610.9597778320312,794.3350219726562,-1754.5272216796875,-602.2775268554688,794.3348999023438,-1486.895263671875,-610.9597778320312,794.3348999023438,-1486.895263671875,-602.2775268554688,794.3350219726562,-1754.5272216796875,-594.1187133789062,797.3045043945312,-1754.5272216796875,-594.1187133789062,797.3043823242188,-1486.895263671875,-602.2775268554688,794.3350219726562,-1754.5272216796875,-594.1187133789062,797.3043823242188,-1486.895263671875,-602.2775268554688,794.3348999023438,-1486.895263671875,-594.1187133789062,797.3045043945312,-1754.5272216796875,-587.467529296875,802.8853759765625,-1754.5272216796875,-587.467529296875,802.8853759765625,-1486.895263671875,-594.1187133789062,797.3045043945312,-1754.5272216796875,-587.467529296875,802.8853759765625,-1486.895263671875,-594.1187133789062,797.3043823242188,-1486.895263671875,-587.467529296875,802.8853759765625,-1754.5272216796875,-583.1262817382812,810.4046020507812,-1754.5272216796875,-583.1262817382812,810.4046020507812,-1486.895263671875,-587.467529296875,802.8853759765625,-1754.5272216796875,-583.1262817382812,810.4046020507812,-1486.895263671875,-587.467529296875,802.8853759765625,-1486.895263671875,-583.1262817382812,810.4046020507812,-1754.5272216796875,-581.6187133789062,818.955078125,-1754.5272216796875,-581.6187133789062,818.955078125,-1486.895263671875,-583.1262817382812,810.4046020507812,-1754.5272216796875,-581.6187133789062,818.955078125,-1486.895263671875,-583.1262817382812,810.4046020507812,-1486.895263671875,-581.6187133789062,818.955078125,-1486.895263671875,-583.1262817382812,827.505615234375,-1486.895263671875,-583.1262817382812,827.505615234375,-1219.263427734375,-581.6187133789062,818.955078125,-1486.895263671875,-583.1262817382812,827.505615234375,-1219.263427734375,-581.6187133789062,818.955078125,-1219.263427734375,-583.1262817382812,827.505615234375,-1486.895263671875,-587.467529296875,835.0247802734375,-1486.895263671875,-587.467529296875,835.0247192382812,-1219.263427734375,-583.1262817382812,827.505615234375,-1486.895263671875,-587.467529296875,835.0247192382812,-1219.263427734375,-583.1262817382812,827.505615234375,-1219.263427734375,-587.467529296875,835.0247802734375,-1486.895263671875,-594.1187133789062,840.605712890625,-1486.895263671875,-594.1187133789062,840.605712890625,-1219.263427734375,-587.467529296875,835.0247802734375,-1486.895263671875,-594.1187133789062,840.605712890625,-1219.263427734375,-587.467529296875,835.0247192382812,-1219.263427734375,-594.1187133789062,840.605712890625,-1486.895263671875,-602.2775268554688,843.5753173828125,-1486.895263671875,-602.2775268554688,843.5753173828125,-1219.263427734375,-594.1187133789062,840.605712890625,-1486.895263671875,-602.2775268554688,843.5753173828125,-1219.263427734375,-594.1187133789062,840.605712890625,-1219.263427734375,-602.2775268554688,843.5753173828125,-1486.895263671875,-610.9597778320312,843.5753173828125,-1486.895263671875,-610.9597778320312,843.5753173828125,-1219.263427734375,-602.2775268554688,843.5753173828125,-1486.895263671875,-610.9597778320312,843.5753173828125,-1219.263427734375,-602.2775268554688,843.5753173828125,-1219.263427734375,-610.9597778320312,843.5753173828125,-1486.895263671875,-619.1187133789062,840.605712890625,-1486.895263671875,-619.1187133789062,840.605712890625,-1219.263427734375,-610.9597778320312,843.5753173828125,-1486.895263671875,-619.1187133789062,840.605712890625,-1219.263427734375,-610.9597778320312,843.5753173828125,-1219.263427734375,-619.1187133789062,840.605712890625,-1486.895263671875,-625.769775390625,835.0247802734375,-1486.895263671875,-625.769775390625,835.0247192382812,-1219.263427734375,-619.1187133789062,840.605712890625,-1486.895263671875,-625.769775390625,835.0247192382812,-1219.263427734375,-619.1187133789062,840.605712890625,-1219.263427734375,-625.769775390625,835.0247802734375,-1486.895263671875,-630.1110229492188,827.505615234375,-1486.895263671875,-630.1110229492188,827.505615234375,-1219.263427734375,-625.769775390625,835.0247802734375,-1486.895263671875,-630.1110229492188,827.505615234375,-1219.263427734375,-625.769775390625,835.0247192382812,-1219.263427734375,-630.1110229492188,827.505615234375,-1486.895263671875,-631.6187133789062,818.955078125,-1486.895263671875,-631.6187133789062,818.955078125,-1219.263427734375,-630.1110229492188,827.505615234375,-1486.895263671875,-631.6187133789062,818.955078125,-1219.263427734375,-630.1110229492188,827.505615234375,-1219.263427734375,-631.6187133789062,818.955078125,-1486.895263671875,-630.1110229492188,810.4046020507812,-1486.895263671875,-630.1110229492188,810.4044799804688,-1219.263427734375,-631.6187133789062,818.955078125,-1486.895263671875,-630.1110229492188,810.4044799804688,-1219.263427734375,-631.6187133789062,818.955078125,-1219.263427734375,-630.1110229492188,810.4046020507812,-1486.895263671875,-625.769775390625,802.8853759765625,-1486.895263671875,-625.769775390625,802.8853759765625,-1219.263427734375,-630.1110229492188,810.4046020507812,-1486.895263671875,-625.769775390625,802.8853759765625,-1219.263427734375,-630.1110229492188,810.4044799804688,-1219.263427734375,-625.769775390625,802.8853759765625,-1486.895263671875,-619.1187133789062,797.3043823242188,-1486.895263671875,-619.1187133789062,797.3043823242188,-1219.263427734375,-625.769775390625,802.8853759765625,-1486.895263671875,-619.1187133789062,797.3043823242188,-1219.263427734375,-625.769775390625,802.8853759765625,-1219.263427734375,-619.1187133789062,797.3043823242188,-1486.895263671875,-610.9597778320312,794.3348999023438,-1486.895263671875,-610.9597778320312,794.3347778320312,-1219.263427734375,-619.1187133789062,797.3043823242188,-1486.895263671875,-610.9597778320312,794.3347778320312,-1219.263427734375,-619.1187133789062,797.3043823242188,-1219.263427734375,-610.9597778320312,794.3348999023438,-1486.895263671875,-602.2775268554688,794.3348999023438,-1486.895263671875,-602.2775268554688,794.3347778320312,-1219.263427734375,-610.9597778320312,794.3348999023438,-1486.895263671875,-602.2775268554688,794.3347778320312,-1219.263427734375,-610.9597778320312,794.3347778320312,-1219.263427734375,-602.2775268554688,794.3348999023438,-1486.895263671875,-594.1187133789062,797.3043823242188,-1486.895263671875,-594.1187133789062,797.3043823242188,-1219.263427734375,-602.2775268554688,794.3348999023438,-1486.895263671875,-594.1187133789062,797.3043823242188,-1219.263427734375,-602.2775268554688,794.3347778320312,-1219.263427734375,-594.1187133789062,797.3043823242188,-1486.895263671875,-587.467529296875,802.8853759765625,-1486.895263671875,-587.467529296875,802.8853759765625,-1219.263427734375,-594.1187133789062,797.3043823242188,-1486.895263671875,-587.467529296875,802.8853759765625,-1219.263427734375,-594.1187133789062,797.3043823242188,-1219.263427734375,-587.467529296875,802.8853759765625,-1486.895263671875,-583.1262817382812,810.4046020507812,-1486.895263671875,-583.1262817382812,810.4044799804688,-1219.263427734375,-587.467529296875,802.8853759765625,-1486.895263671875,-583.1262817382812,810.4044799804688,-1219.263427734375,-587.467529296875,802.8853759765625,-1219.263427734375,-583.1262817382812,810.4046020507812,-1486.895263671875,-581.6187133789062,818.955078125,-1486.895263671875,-581.6187133789062,818.955078125,-1219.263427734375,-583.1262817382812,810.4046020507812,-1486.895263671875,-581.6187133789062,818.955078125,-1219.263427734375,-583.1262817382812,810.4044799804688,-1219.263427734375,-581.6187133789062,818.955078125,-1219.263427734375,-583.1262817382812,827.505615234375,-1219.263427734375,-583.1262817382812,827.5054931640625,-951.6314697265625,-581.6187133789062,818.955078125,-1219.263427734375,-583.1262817382812,827.5054931640625,-951.6314697265625,-581.6187133789062,818.9550170898438,-951.6314697265625,-583.1262817382812,827.505615234375,-1219.263427734375,-587.467529296875,835.0247192382812,-1219.263427734375,-587.467529296875,835.0247192382812,-951.6314697265625,-583.1262817382812,827.505615234375,-1219.263427734375,-587.467529296875,835.0247192382812,-951.6314697265625,-583.1262817382812,827.5054931640625,-951.6314697265625,-587.467529296875,835.0247192382812,-1219.263427734375,-594.1187133789062,840.605712890625,-1219.263427734375,-594.1187133789062,840.605712890625,-951.6314697265625,-587.467529296875,835.0247192382812,-1219.263427734375,-594.1187133789062,840.605712890625,-951.6314697265625,-587.467529296875,835.0247192382812,-951.6314697265625,-594.1187133789062,840.605712890625,-1219.263427734375,-602.2775268554688,843.5753173828125,-1219.263427734375,-602.2775268554688,843.5751953125,-951.6314697265625,-594.1187133789062,840.605712890625,-1219.263427734375,-602.2775268554688,843.5751953125,-951.6314697265625,-594.1187133789062,840.605712890625,-951.6314697265625,-602.2775268554688,843.5753173828125,-1219.263427734375,-610.9597778320312,843.5753173828125,-1219.263427734375,-610.9597778320312,843.5751953125,-951.6314697265625,-602.2775268554688,843.5753173828125,-1219.263427734375,-610.9597778320312,843.5751953125,-951.6314697265625,-602.2775268554688,843.5751953125,-951.6314697265625,-610.9597778320312,843.5753173828125,-1219.263427734375,-619.1187133789062,840.605712890625,-1219.263427734375,-619.1187133789062,840.605712890625,-951.6314697265625,-610.9597778320312,843.5753173828125,-1219.263427734375,-619.1187133789062,840.605712890625,-951.6314697265625,-610.9597778320312,843.5751953125,-951.6314697265625,-619.1187133789062,840.605712890625,-1219.263427734375,-625.769775390625,835.0247192382812,-1219.263427734375,-625.769775390625,835.0247192382812,-951.6314697265625,-619.1187133789062,840.605712890625,-1219.263427734375,-625.769775390625,835.0247192382812,-951.6314697265625,-619.1187133789062,840.605712890625,-951.6314697265625,-625.769775390625,835.0247192382812,-1219.263427734375,-630.1110229492188,827.505615234375,-1219.263427734375,-630.1110229492188,827.5054931640625,-951.6314697265625,-625.769775390625,835.0247192382812,-1219.263427734375,-630.1110229492188,827.5054931640625,-951.6314697265625,-625.769775390625,835.0247192382812,-951.6314697265625,-630.1110229492188,827.505615234375,-1219.263427734375,-631.6187133789062,818.955078125,-1219.263427734375,-631.6187133789062,818.9550170898438,-951.6314697265625,-630.1110229492188,827.505615234375,-1219.263427734375,-631.6187133789062,818.9550170898438,-951.6314697265625,-630.1110229492188,827.5054931640625,-951.6314697265625,-631.6187133789062,818.955078125,-1219.263427734375,-630.1110229492188,810.4044799804688,-1219.263427734375,-630.1110229492188,810.4044799804688,-951.6314697265625,-631.6187133789062,818.955078125,-1219.263427734375,-630.1110229492188,810.4044799804688,-951.6314697265625,-631.6187133789062,818.9550170898438,-951.6314697265625,-630.1110229492188,810.4044799804688,-1219.263427734375,-625.769775390625,802.8853759765625,-1219.263427734375,-625.769775390625,802.8853149414062,-951.6314697265625,-630.1110229492188,810.4044799804688,-1219.263427734375,-625.769775390625,802.8853149414062,-951.6314697265625,-630.1110229492188,810.4044799804688,-951.6314697265625,-625.769775390625,802.8853759765625,-1219.263427734375,-619.1187133789062,797.3043823242188,-1219.263427734375,-619.1187133789062,797.3043823242188,-951.6314697265625,-625.769775390625,802.8853759765625,-1219.263427734375,-619.1187133789062,797.3043823242188,-951.6314697265625,-625.769775390625,802.8853149414062,-951.6314697265625,-619.1187133789062,797.3043823242188,-1219.263427734375,-610.9597778320312,794.3347778320312,-1219.263427734375,-610.9597778320312,794.3347778320312,-951.6314697265625,-619.1187133789062,797.3043823242188,-1219.263427734375,-610.9597778320312,794.3347778320312,-951.6314697265625,-619.1187133789062,797.3043823242188,-951.6314697265625,-610.9597778320312,794.3347778320312,-1219.263427734375,-602.2775268554688,794.3347778320312,-1219.263427734375,-602.2775268554688,794.3347778320312,-951.6314697265625,-610.9597778320312,794.3347778320312,-1219.263427734375,-602.2775268554688,794.3347778320312,-951.6314697265625,-610.9597778320312,794.3347778320312,-951.6314697265625,-602.2775268554688,794.3347778320312,-1219.263427734375,-594.1187133789062,797.3043823242188,-1219.263427734375,-594.1187133789062,797.3043823242188,-951.6314697265625,-602.2775268554688,794.3347778320312,-1219.263427734375,-594.1187133789062,797.3043823242188,-951.6314697265625,-602.2775268554688,794.3347778320312,-951.6314697265625,-594.1187133789062,797.3043823242188,-1219.263427734375,-587.467529296875,802.8853759765625,-1219.263427734375,-587.467529296875,802.8853149414062,-951.6314697265625,-594.1187133789062,797.3043823242188,-1219.263427734375,-587.467529296875,802.8853149414062,-951.6314697265625,-594.1187133789062,797.3043823242188,-951.6314697265625,-587.467529296875,802.8853759765625,-1219.263427734375,-583.1262817382812,810.4044799804688,-1219.263427734375,-583.1262817382812,810.4044799804688,-951.6314697265625,-587.467529296875,802.8853759765625,-1219.263427734375,-583.1262817382812,810.4044799804688,-951.6314697265625,-587.467529296875,802.8853149414062,-951.6314697265625,-583.1262817382812,810.4044799804688,-1219.263427734375,-581.6187133789062,818.955078125,-1219.263427734375,-581.6187133789062,818.9550170898438,-951.6314697265625,-583.1262817382812,810.4044799804688,-1219.263427734375,-581.6187133789062,818.9550170898438,-951.6314697265625,-583.1262817382812,810.4044799804688,-951.6314697265625,-581.6187133789062,818.9550170898438,-951.6314697265625,-583.1262817382812,827.5054931640625,-951.6314697265625,-583.1262817382812,827.5054931640625,-683.9995727539062,-581.6187133789062,818.9550170898438,-951.6314697265625,-583.1262817382812,827.5054931640625,-683.9995727539062,-581.6187133789062,818.9550170898438,-683.9995727539062,-583.1262817382812,827.5054931640625,-951.6314697265625,-587.467529296875,835.0247192382812,-951.6314697265625,-587.467529296875,835.0247192382812,-683.9995727539062,-583.1262817382812,827.5054931640625,-951.6314697265625,-587.467529296875,835.0247192382812,-683.9995727539062,-583.1262817382812,827.5054931640625,-683.9995727539062,-587.467529296875,835.0247192382812,-951.6314697265625,-594.1187133789062,840.605712890625,-951.6314697265625,-594.1187133789062,840.6055908203125,-683.9995727539062,-587.467529296875,835.0247192382812,-951.6314697265625,-594.1187133789062,840.6055908203125,-683.9995727539062,-587.467529296875,835.0247192382812,-683.9995727539062,-594.1187133789062,840.605712890625,-951.6314697265625,-602.2775268554688,843.5751953125,-951.6314697265625,-602.2775268554688,843.5750732421875,-683.9995727539062,-594.1187133789062,840.605712890625,-951.6314697265625,-602.2775268554688,843.5750732421875,-683.9995727539062,-594.1187133789062,840.6055908203125,-683.9995727539062,-602.2775268554688,843.5751953125,-951.6314697265625,-610.9597778320312,843.5751953125,-951.6314697265625,-610.9597778320312,843.5750732421875,-683.9995727539062,-602.2775268554688,843.5751953125,-951.6314697265625,-610.9597778320312,843.5750732421875,-683.9995727539062,-602.2775268554688,843.5750732421875,-683.9995727539062,-610.9597778320312,843.5751953125,-951.6314697265625,-619.1187133789062,840.605712890625,-951.6314697265625,-619.1187133789062,840.6055908203125,-683.9995727539062,-610.9597778320312,843.5751953125,-951.6314697265625,-619.1187133789062,840.6055908203125,-683.9995727539062,-610.9597778320312,843.5750732421875,-683.9995727539062,-619.1187133789062,840.605712890625,-951.6314697265625,-625.769775390625,835.0247192382812,-951.6314697265625,-625.769775390625,835.0247192382812,-683.9995727539062,-619.1187133789062,840.605712890625,-951.6314697265625,-625.769775390625,835.0247192382812,-683.9995727539062,-619.1187133789062,840.6055908203125,-683.9995727539062,-625.769775390625,835.0247192382812,-951.6314697265625,-630.1110229492188,827.5054931640625,-951.6314697265625,-630.1110229492188,827.5054931640625,-683.9995727539062,-625.769775390625,835.0247192382812,-951.6314697265625,-630.1110229492188,827.5054931640625,-683.9995727539062,-625.769775390625,835.0247192382812,-683.9995727539062,-630.1110229492188,827.5054931640625,-951.6314697265625,-631.6187133789062,818.9550170898438,-951.6314697265625,-631.6187133789062,818.9550170898438,-683.9995727539062,-630.1110229492188,827.5054931640625,-951.6314697265625,-631.6187133789062,818.9550170898438,-683.9995727539062,-630.1110229492188,827.5054931640625,-683.9995727539062,-631.6187133789062,818.9550170898438,-951.6314697265625,-630.1110229492188,810.4044799804688,-951.6314697265625,-630.1110229492188,810.4044799804688,-683.9995727539062,-631.6187133789062,818.9550170898438,-951.6314697265625,-630.1110229492188,810.4044799804688,-683.9995727539062,-631.6187133789062,818.9550170898438,-683.9995727539062,-630.1110229492188,810.4044799804688,-951.6314697265625,-625.769775390625,802.8853149414062,-951.6314697265625,-625.769775390625,802.8853149414062,-683.9995727539062,-630.1110229492188,810.4044799804688,-951.6314697265625,-625.769775390625,802.8853149414062,-683.9995727539062,-630.1110229492188,810.4044799804688,-683.9995727539062,-625.769775390625,802.8853149414062,-951.6314697265625,-619.1187133789062,797.3043823242188,-951.6314697265625,-619.1187133789062,797.3043212890625,-683.9995727539062,-625.769775390625,802.8853149414062,-951.6314697265625,-619.1187133789062,797.3043212890625,-683.9995727539062,-625.769775390625,802.8853149414062,-683.9995727539062,-619.1187133789062,797.3043823242188,-951.6314697265625,-610.9597778320312,794.3347778320312,-951.6314697265625,-610.9597778320312,794.3347778320312,-683.9995727539062,-619.1187133789062,797.3043823242188,-951.6314697265625,-610.9597778320312,794.3347778320312,-683.9995727539062,-619.1187133789062,797.3043212890625,-683.9995727539062,-610.9597778320312,794.3347778320312,-951.6314697265625,-602.2775268554688,794.3347778320312,-951.6314697265625,-602.2775268554688,794.3347778320312,-683.9995727539062,-610.9597778320312,794.3347778320312,-951.6314697265625,-602.2775268554688,794.3347778320312,-683.9995727539062,-610.9597778320312,794.3347778320312,-683.9995727539062,-602.2775268554688,794.3347778320312,-951.6314697265625,-594.1187133789062,797.3043823242188,-951.6314697265625,-594.1187133789062,797.3043212890625,-683.9995727539062,-602.2775268554688,794.3347778320312,-951.6314697265625,-594.1187133789062,797.3043212890625,-683.9995727539062,-602.2775268554688,794.3347778320312,-683.9995727539062,-594.1187133789062,797.3043823242188,-951.6314697265625,-587.467529296875,802.8853149414062,-951.6314697265625,-587.467529296875,802.8853149414062,-683.9995727539062,-594.1187133789062,797.3043823242188,-951.6314697265625,-587.467529296875,802.8853149414062,-683.9995727539062,-594.1187133789062,797.3043212890625,-683.9995727539062,-587.467529296875,802.8853149414062,-951.6314697265625,-583.1262817382812,810.4044799804688,-951.6314697265625,-583.1262817382812,810.4044189453125,-683.9995727539062,-587.467529296875,802.8853149414062,-951.6314697265625,-583.1262817382812,810.4044189453125,-683.9995727539062,-587.467529296875,802.8853149414062,-683.9995727539062,-583.1262817382812,810.4044799804688,-951.6314697265625,-581.6187133789062,818.9550170898438,-951.6314697265625,-581.6187133789062,818.9550170898438,-683.9995727539062,-583.1262817382812,810.4044799804688,-951.6314697265625,-581.6187133789062,818.9550170898438,-683.9995727539062,-583.1262817382812,810.4044189453125,-683.9995727539062,-581.6187133789062,818.9550170898438,-683.9995727539062,-583.1262817382812,827.5054931640625,-683.9995727539062,-583.1262817382812,827.50537109375,-416.3677062988281,-581.6187133789062,818.9550170898438,-683.9995727539062,-583.1262817382812,827.50537109375,-416.3677062988281,-581.6187133789062,818.9548950195312,-416.3677062988281,-583.1262817382812,827.5054931640625,-683.9995727539062,-587.467529296875,835.0247192382812,-683.9995727539062,-587.467529296875,835.0245971679688,-416.3677062988281,-583.1262817382812,827.5054931640625,-683.9995727539062,-587.467529296875,835.0245971679688,-416.3677062988281,-583.1262817382812,827.50537109375,-416.3677062988281,-587.467529296875,835.0247192382812,-683.9995727539062,-594.1187133789062,840.6055908203125,-683.9995727539062,-594.1187133789062,840.6055297851562,-416.3677062988281,-587.467529296875,835.0247192382812,-683.9995727539062,-594.1187133789062,840.6055297851562,-416.3677062988281,-587.467529296875,835.0245971679688,-416.3677062988281,-594.1187133789062,840.6055908203125,-683.9995727539062,-602.2775268554688,843.5750732421875,-683.9995727539062,-602.2775268554688,843.5750732421875,-416.3677062988281,-594.1187133789062,840.6055908203125,-683.9995727539062,-602.2775268554688,843.5750732421875,-416.3677062988281,-594.1187133789062,840.6055297851562,-416.3677062988281,-602.2775268554688,843.5750732421875,-683.9995727539062,-610.9597778320312,843.5750732421875,-683.9995727539062,-610.9597778320312,843.5750732421875,-416.3677062988281,-602.2775268554688,843.5750732421875,-683.9995727539062,-610.9597778320312,843.5750732421875,-416.3677062988281,-602.2775268554688,843.5750732421875,-416.3677062988281,-610.9597778320312,843.5750732421875,-683.9995727539062,-619.1187133789062,840.6055908203125,-683.9995727539062,-619.1187133789062,840.6055297851562,-416.3677062988281,-610.9597778320312,843.5750732421875,-683.9995727539062,-619.1187133789062,840.6055297851562,-416.3677062988281,-610.9597778320312,843.5750732421875,-416.3677062988281,-619.1187133789062,840.6055908203125,-683.9995727539062,-625.769775390625,835.0247192382812,-683.9995727539062,-625.769775390625,835.0245971679688,-416.3677062988281,-619.1187133789062,840.6055908203125,-683.9995727539062,-625.769775390625,835.0245971679688,-416.3677062988281,-619.1187133789062,840.6055297851562,-416.3677062988281,-625.769775390625,835.0247192382812,-683.9995727539062,-630.1110229492188,827.5054931640625,-683.9995727539062,-630.1110229492188,827.50537109375,-416.3677062988281,-625.769775390625,835.0247192382812,-683.9995727539062,-630.1110229492188,827.50537109375,-416.3677062988281,-625.769775390625,835.0245971679688,-416.3677062988281,-630.1110229492188,827.5054931640625,-683.9995727539062,-631.6187133789062,818.9550170898438,-683.9995727539062,-631.6187133789062,818.9548950195312,-416.3677062988281,-630.1110229492188,827.5054931640625,-683.9995727539062,-631.6187133789062,818.9548950195312,-416.3677062988281,-630.1110229492188,827.50537109375,-416.3677062988281,-631.6187133789062,818.9550170898438,-683.9995727539062,-630.1110229492188,810.4044799804688,-683.9995727539062,-630.1110229492188,810.4044189453125,-416.3677062988281,-631.6187133789062,818.9550170898438,-683.9995727539062,-630.1110229492188,810.4044189453125,-416.3677062988281,-631.6187133789062,818.9548950195312,-416.3677062988281,-630.1110229492188,810.4044799804688,-683.9995727539062,-625.769775390625,802.8853149414062,-683.9995727539062,-625.769775390625,802.8853149414062,-416.3677062988281,-630.1110229492188,810.4044799804688,-683.9995727539062,-625.769775390625,802.8853149414062,-416.3677062988281,-630.1110229492188,810.4044189453125,-416.3677062988281,-625.769775390625,802.8853149414062,-683.9995727539062,-619.1187133789062,797.3043212890625,-683.9995727539062,-619.1187133789062,797.3043212890625,-416.3677062988281,-625.769775390625,802.8853149414062,-683.9995727539062,-619.1187133789062,797.3043212890625,-416.3677062988281,-625.769775390625,802.8853149414062,-416.3677062988281,-619.1187133789062,797.3043212890625,-683.9995727539062,-610.9597778320312,794.3347778320312,-683.9995727539062,-610.9597778320312,794.334716796875,-416.3677062988281,-619.1187133789062,797.3043212890625,-683.9995727539062,-610.9597778320312,794.334716796875,-416.3677062988281,-619.1187133789062,797.3043212890625,-416.3677062988281,-610.9597778320312,794.3347778320312,-683.9995727539062,-602.2775268554688,794.3347778320312,-683.9995727539062,-602.2775268554688,794.334716796875,-416.3677062988281,-610.9597778320312,794.3347778320312,-683.9995727539062,-602.2775268554688,794.334716796875,-416.3677062988281,-610.9597778320312,794.334716796875,-416.3677062988281,-602.2775268554688,794.3347778320312,-683.9995727539062,-594.1187133789062,797.3043212890625,-683.9995727539062,-594.1187133789062,797.3043212890625,-416.3677062988281,-602.2775268554688,794.3347778320312,-683.9995727539062,-594.1187133789062,797.3043212890625,-416.3677062988281,-602.2775268554688,794.334716796875,-416.3677062988281,-594.1187133789062,797.3043212890625,-683.9995727539062,-587.467529296875,802.8853149414062,-683.9995727539062,-587.467529296875,802.8851928710938,-416.3677062988281,-594.1187133789062,797.3043212890625,-683.9995727539062,-587.467529296875,802.8851928710938,-416.3677062988281,-594.1187133789062,797.3043212890625,-416.3677062988281,-587.467529296875,802.8853149414062,-683.9995727539062,-583.1262817382812,810.4044189453125,-683.9995727539062,-583.1262817382812,810.4044189453125,-416.3677062988281,-587.467529296875,802.8853149414062,-683.9995727539062,-583.1262817382812,810.4044189453125,-416.3677062988281,-587.467529296875,802.8851928710938,-416.3677062988281,-583.1262817382812,810.4044189453125,-683.9995727539062,-581.6187133789062,818.9550170898438,-683.9995727539062,-581.6187133789062,818.9548950195312,-416.3677062988281,-583.1262817382812,810.4044189453125,-683.9995727539062,-581.6187133789062,818.9548950195312,-416.3677062988281,-583.1262817382812,810.4044189453125,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-583.1262817382812,810.4044189453125,-416.3677062988281,-581.6187133789062,818.9548950195312,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-581.6187133789062,818.9548950195312,-416.3677062988281,-583.1262817382812,827.50537109375,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-583.1262817382812,827.50537109375,-416.3677062988281,-587.467529296875,835.0245971679688,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-587.467529296875,835.0245971679688,-416.3677062988281,-594.1187133789062,840.6055297851562,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-594.1187133789062,840.6055297851562,-416.3677062988281,-602.2775268554688,843.5750732421875,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-602.2775268554688,843.5750732421875,-416.3677062988281,-610.9597778320312,843.5750732421875,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-610.9597778320312,843.5750732421875,-416.3677062988281,-619.1187133789062,840.6055297851562,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-619.1187133789062,840.6055297851562,-416.3677062988281,-625.769775390625,835.0245971679688,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-625.769775390625,835.0245971679688,-416.3677062988281,-630.1110229492188,827.50537109375,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-630.1110229492188,827.50537109375,-416.3677062988281,-631.6187133789062,818.9548950195312,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-631.6187133789062,818.9548950195312,-416.3677062988281,-630.1110229492188,810.4044189453125,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-630.1110229492188,810.4044189453125,-416.3677062988281,-625.769775390625,802.8853149414062,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-625.769775390625,802.8853149414062,-416.3677062988281,-619.1187133789062,797.3043212890625,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-619.1187133789062,797.3043212890625,-416.3677062988281,-610.9597778320312,794.334716796875,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-610.9597778320312,794.334716796875,-416.3677062988281,-602.2775268554688,794.334716796875,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-602.2775268554688,794.334716796875,-416.3677062988281,-594.1187133789062,797.3043212890625,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-594.1187133789062,797.3043212890625,-416.3677062988281,-587.467529296875,802.8851928710938,-416.3677062988281,-606.6187133789062,818.9548950195312,-416.3677062988281,-587.467529296875,802.8851928710938,-416.3677062988281,-583.1262817382812,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-606.6187133789062,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466595042122
| }
| }
| },
| {
| "uuid": "E6C6AFC3-1C66-4436-9E95-EDB9C72F1F39",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-506.61871337890625,818.955078125,-1754.5272216796875,-487.4674987792969,835.0247802734375,-1754.5272216796875,-483.1263122558594,827.505615234375,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-483.1263122558594,827.505615234375,-1754.5272216796875,-481.61871337890625,818.955078125,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-502.27740478515625,843.5753173828125,-1754.5272216796875,-494.11871337890625,840.6057739257812,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-494.11871337890625,840.6057739257812,-1754.5272216796875,-487.4674987792969,835.0247802734375,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-519.1187133789062,840.6057739257812,-1754.5272216796875,-510.95989990234375,843.5753173828125,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-510.95989990234375,843.5753173828125,-1754.5272216796875,-502.27740478515625,843.5753173828125,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-530.1110229492188,827.505615234375,-1754.5272216796875,-525.769775390625,835.0247802734375,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-525.769775390625,835.0247802734375,-1754.5272216796875,-519.1187133789062,840.6057739257812,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-530.1110229492188,810.4047241210938,-1754.5272216796875,-531.6187133789062,818.955078125,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-531.6187133789062,818.955078125,-1754.5272216796875,-530.1110229492188,827.505615234375,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-519.1187133789062,797.3045043945312,-1754.5272216796875,-525.769775390625,802.8853759765625,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-525.769775390625,802.8853759765625,-1754.5272216796875,-530.1110229492188,810.4047241210938,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-502.2774963378906,794.3350219726562,-1754.5272216796875,-510.95989990234375,794.3350219726562,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-510.95989990234375,794.3350219726562,-1754.5272216796875,-519.1187133789062,797.3045043945312,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-487.46759033203125,802.8853759765625,-1754.5272216796875,-494.11871337890625,797.3045043945312,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-494.11871337890625,797.3045043945312,-1754.5272216796875,-502.2774963378906,794.3350219726562,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-481.61871337890625,818.955078125,-1754.5272216796875,-483.1263122558594,810.4046020507812,-1754.5272216796875,-506.61871337890625,818.955078125,-1754.5272216796875,-483.1263122558594,810.4046020507812,-1754.5272216796875,-487.46759033203125,802.8853759765625,-1754.5272216796875,-481.61871337890625,818.955078125,-1754.5272216796875,-483.1263122558594,827.505615234375,-1754.5272216796875,-483.1263122558594,827.505615234375,-1486.895263671875,-481.61871337890625,818.955078125,-1754.5272216796875,-483.1263122558594,827.505615234375,-1486.895263671875,-481.61871337890625,818.955078125,-1486.895263671875,-483.1263122558594,827.505615234375,-1754.5272216796875,-487.4674987792969,835.0247802734375,-1754.5272216796875,-487.4674987792969,835.0247802734375,-1486.895263671875,-483.1263122558594,827.505615234375,-1754.5272216796875,-487.4674987792969,835.0247802734375,-1486.895263671875,-483.1263122558594,827.505615234375,-1486.895263671875,-487.4674987792969,835.0247802734375,-1754.5272216796875,-494.11871337890625,840.6057739257812,-1754.5272216796875,-494.11871337890625,840.605712890625,-1486.895263671875,-487.4674987792969,835.0247802734375,-1754.5272216796875,-494.11871337890625,840.605712890625,-1486.895263671875,-487.4674987792969,835.0247802734375,-1486.895263671875,-494.11871337890625,840.6057739257812,-1754.5272216796875,-502.27740478515625,843.5753173828125,-1754.5272216796875,-502.27740478515625,843.5753173828125,-1486.895263671875,-494.11871337890625,840.6057739257812,-1754.5272216796875,-502.27740478515625,843.5753173828125,-1486.895263671875,-494.11871337890625,840.605712890625,-1486.895263671875,-502.27740478515625,843.5753173828125,-1754.5272216796875,-510.95989990234375,843.5753173828125,-1754.5272216796875,-510.95989990234375,843.5753173828125,-1486.895263671875,-502.27740478515625,843.5753173828125,-1754.5272216796875,-510.95989990234375,843.5753173828125,-1486.895263671875,-502.27740478515625,843.5753173828125,-1486.895263671875,-510.95989990234375,843.5753173828125,-1754.5272216796875,-519.1187133789062,840.6057739257812,-1754.5272216796875,-519.1187133789062,840.605712890625,-1486.895263671875,-510.95989990234375,843.5753173828125,-1754.5272216796875,-519.1187133789062,840.605712890625,-1486.895263671875,-510.95989990234375,843.5753173828125,-1486.895263671875,-519.1187133789062,840.6057739257812,-1754.5272216796875,-525.769775390625,835.0247802734375,-1754.5272216796875,-525.769775390625,835.0247802734375,-1486.895263671875,-519.1187133789062,840.6057739257812,-1754.5272216796875,-525.769775390625,835.0247802734375,-1486.895263671875,-519.1187133789062,840.605712890625,-1486.895263671875,-525.769775390625,835.0247802734375,-1754.5272216796875,-530.1110229492188,827.505615234375,-1754.5272216796875,-530.1110229492188,827.505615234375,-1486.895263671875,-525.769775390625,835.0247802734375,-1754.5272216796875,-530.1110229492188,827.505615234375,-1486.895263671875,-525.769775390625,835.0247802734375,-1486.895263671875,-530.1110229492188,827.505615234375,-1754.5272216796875,-531.6187133789062,818.955078125,-1754.5272216796875,-531.6187133789062,818.955078125,-1486.895263671875,-530.1110229492188,827.505615234375,-1754.5272216796875,-531.6187133789062,818.955078125,-1486.895263671875,-530.1110229492188,827.505615234375,-1486.895263671875,-531.6187133789062,818.955078125,-1754.5272216796875,-530.1110229492188,810.4047241210938,-1754.5272216796875,-530.1110229492188,810.4046020507812,-1486.895263671875,-531.6187133789062,818.955078125,-1754.5272216796875,-530.1110229492188,810.4046020507812,-1486.895263671875,-531.6187133789062,818.955078125,-1486.895263671875,-530.1110229492188,810.4047241210938,-1754.5272216796875,-525.769775390625,802.8853759765625,-1754.5272216796875,-525.769775390625,802.8853759765625,-1486.895263671875,-530.1110229492188,810.4047241210938,-1754.5272216796875,-525.769775390625,802.8853759765625,-1486.895263671875,-530.1110229492188,810.4046020507812,-1486.895263671875,-525.769775390625,802.8853759765625,-1754.5272216796875,-519.1187133789062,797.3045043945312,-1754.5272216796875,-519.1187133789062,797.3043823242188,-1486.895263671875,-525.769775390625,802.8853759765625,-1754.5272216796875,-519.1187133789062,797.3043823242188,-1486.895263671875,-525.769775390625,802.8853759765625,-1486.895263671875,-519.1187133789062,797.3045043945312,-1754.5272216796875,-510.95989990234375,794.3350219726562,-1754.5272216796875,-510.95989990234375,794.3348999023438,-1486.895263671875,-519.1187133789062,797.3045043945312,-1754.5272216796875,-510.95989990234375,794.3348999023438,-1486.895263671875,-519.1187133789062,797.3043823242188,-1486.895263671875,-510.95989990234375,794.3350219726562,-1754.5272216796875,-502.2774963378906,794.3350219726562,-1754.5272216796875,-502.2774963378906,794.3348999023438,-1486.895263671875,-510.95989990234375,794.3350219726562,-1754.5272216796875,-502.2774963378906,794.3348999023438,-1486.895263671875,-510.95989990234375,794.3348999023438,-1486.895263671875,-502.2774963378906,794.3350219726562,-1754.5272216796875,-494.11871337890625,797.3045043945312,-1754.5272216796875,-494.11871337890625,797.3043823242188,-1486.895263671875,-502.2774963378906,794.3350219726562,-1754.5272216796875,-494.11871337890625,797.3043823242188,-1486.895263671875,-502.2774963378906,794.3348999023438,-1486.895263671875,-494.11871337890625,797.3045043945312,-1754.5272216796875,-487.46759033203125,802.8853759765625,-1754.5272216796875,-487.46759033203125,802.8853759765625,-1486.895263671875,-494.11871337890625,797.3045043945312,-1754.5272216796875,-487.46759033203125,802.8853759765625,-1486.895263671875,-494.11871337890625,797.3043823242188,-1486.895263671875,-487.46759033203125,802.8853759765625,-1754.5272216796875,-483.1263122558594,810.4046020507812,-1754.5272216796875,-483.1263122558594,810.4046020507812,-1486.895263671875,-487.46759033203125,802.8853759765625,-1754.5272216796875,-483.1263122558594,810.4046020507812,-1486.895263671875,-487.46759033203125,802.8853759765625,-1486.895263671875,-483.1263122558594,810.4046020507812,-1754.5272216796875,-481.61871337890625,818.955078125,-1754.5272216796875,-481.61871337890625,818.955078125,-1486.895263671875,-483.1263122558594,810.4046020507812,-1754.5272216796875,-481.61871337890625,818.955078125,-1486.895263671875,-483.1263122558594,810.4046020507812,-1486.895263671875,-481.61871337890625,818.955078125,-1486.895263671875,-483.1263122558594,827.505615234375,-1486.895263671875,-483.1263122558594,827.505615234375,-1219.263427734375,-481.61871337890625,818.955078125,-1486.895263671875,-483.1263122558594,827.505615234375,-1219.263427734375,-481.61871337890625,818.955078125,-1219.263427734375,-483.1263122558594,827.505615234375,-1486.895263671875,-487.4674987792969,835.0247802734375,-1486.895263671875,-487.4674987792969,835.0247192382812,-1219.263427734375,-483.1263122558594,827.505615234375,-1486.895263671875,-487.4674987792969,835.0247192382812,-1219.263427734375,-483.1263122558594,827.505615234375,-1219.263427734375,-487.4674987792969,835.0247802734375,-1486.895263671875,-494.11871337890625,840.605712890625,-1486.895263671875,-494.11871337890625,840.605712890625,-1219.263427734375,-487.4674987792969,835.0247802734375,-1486.895263671875,-494.11871337890625,840.605712890625,-1219.263427734375,-487.4674987792969,835.0247192382812,-1219.263427734375,-494.11871337890625,840.605712890625,-1486.895263671875,-502.27740478515625,843.5753173828125,-1486.895263671875,-502.27740478515625,843.5753173828125,-1219.263427734375,-494.11871337890625,840.605712890625,-1486.895263671875,-502.27740478515625,843.5753173828125,-1219.263427734375,-494.11871337890625,840.605712890625,-1219.263427734375,-502.27740478515625,843.5753173828125,-1486.895263671875,-510.95989990234375,843.5753173828125,-1486.895263671875,-510.95989990234375,843.5753173828125,-1219.263427734375,-502.27740478515625,843.5753173828125,-1486.895263671875,-510.95989990234375,843.5753173828125,-1219.263427734375,-502.27740478515625,843.5753173828125,-1219.263427734375,-510.95989990234375,843.5753173828125,-1486.895263671875,-519.1187133789062,840.605712890625,-1486.895263671875,-519.1187133789062,840.605712890625,-1219.263427734375,-510.95989990234375,843.5753173828125,-1486.895263671875,-519.1187133789062,840.605712890625,-1219.263427734375,-510.95989990234375,843.5753173828125,-1219.263427734375,-519.1187133789062,840.605712890625,-1486.895263671875,-525.769775390625,835.0247802734375,-1486.895263671875,-525.769775390625,835.0247192382812,-1219.263427734375,-519.1187133789062,840.605712890625,-1486.895263671875,-525.769775390625,835.0247192382812,-1219.263427734375,-519.1187133789062,840.605712890625,-1219.263427734375,-525.769775390625,835.0247802734375,-1486.895263671875,-530.1110229492188,827.505615234375,-1486.895263671875,-530.1110229492188,827.505615234375,-1219.263427734375,-525.769775390625,835.0247802734375,-1486.895263671875,-530.1110229492188,827.505615234375,-1219.263427734375,-525.769775390625,835.0247192382812,-1219.263427734375,-530.1110229492188,827.505615234375,-1486.895263671875,-531.6187133789062,818.955078125,-1486.895263671875,-531.6187133789062,818.955078125,-1219.263427734375,-530.1110229492188,827.505615234375,-1486.895263671875,-531.6187133789062,818.955078125,-1219.263427734375,-530.1110229492188,827.505615234375,-1219.263427734375,-531.6187133789062,818.955078125,-1486.895263671875,-530.1110229492188,810.4046020507812,-1486.895263671875,-530.1110229492188,810.4044799804688,-1219.263427734375,-531.6187133789062,818.955078125,-1486.895263671875,-530.1110229492188,810.4044799804688,-1219.263427734375,-531.6187133789062,818.955078125,-1219.263427734375,-530.1110229492188,810.4046020507812,-1486.895263671875,-525.769775390625,802.8853759765625,-1486.895263671875,-525.769775390625,802.8853759765625,-1219.263427734375,-530.1110229492188,810.4046020507812,-1486.895263671875,-525.769775390625,802.8853759765625,-1219.263427734375,-530.1110229492188,810.4044799804688,-1219.263427734375,-525.769775390625,802.8853759765625,-1486.895263671875,-519.1187133789062,797.3043823242188,-1486.895263671875,-519.1187133789062,797.3043823242188,-1219.263427734375,-525.769775390625,802.8853759765625,-1486.895263671875,-519.1187133789062,797.3043823242188,-1219.263427734375,-525.769775390625,802.8853759765625,-1219.263427734375,-519.1187133789062,797.3043823242188,-1486.895263671875,-510.95989990234375,794.3348999023438,-1486.895263671875,-510.95989990234375,794.3347778320312,-1219.263427734375,-519.1187133789062,797.3043823242188,-1486.895263671875,-510.95989990234375,794.3347778320312,-1219.263427734375,-519.1187133789062,797.3043823242188,-1219.263427734375,-510.95989990234375,794.3348999023438,-1486.895263671875,-502.2774963378906,794.3348999023438,-1486.895263671875,-502.2774963378906,794.3347778320312,-1219.263427734375,-510.95989990234375,794.3348999023438,-1486.895263671875,-502.2774963378906,794.3347778320312,-1219.263427734375,-510.95989990234375,794.3347778320312,-1219.263427734375,-502.2774963378906,794.3348999023438,-1486.895263671875,-494.11871337890625,797.3043823242188,-1486.895263671875,-494.11871337890625,797.3043823242188,-1219.263427734375,-502.2774963378906,794.3348999023438,-1486.895263671875,-494.11871337890625,797.3043823242188,-1219.263427734375,-502.2774963378906,794.3347778320312,-1219.263427734375,-494.11871337890625,797.3043823242188,-1486.895263671875,-487.46759033203125,802.8853759765625,-1486.895263671875,-487.46759033203125,802.8853759765625,-1219.263427734375,-494.11871337890625,797.3043823242188,-1486.895263671875,-487.46759033203125,802.8853759765625,-1219.263427734375,-494.11871337890625,797.3043823242188,-1219.263427734375,-487.46759033203125,802.8853759765625,-1486.895263671875,-483.1263122558594,810.4046020507812,-1486.895263671875,-483.1263122558594,810.4044799804688,-1219.263427734375,-487.46759033203125,802.8853759765625,-1486.895263671875,-483.1263122558594,810.4044799804688,-1219.263427734375,-487.46759033203125,802.8853759765625,-1219.263427734375,-483.1263122558594,810.4046020507812,-1486.895263671875,-481.61871337890625,818.955078125,-1486.895263671875,-481.61871337890625,818.955078125,-1219.263427734375,-483.1263122558594,810.4046020507812,-1486.895263671875,-481.61871337890625,818.955078125,-1219.263427734375,-483.1263122558594,810.4044799804688,-1219.263427734375,-481.61871337890625,818.955078125,-1219.263427734375,-483.1263122558594,827.505615234375,-1219.263427734375,-483.1263122558594,827.5054931640625,-951.6314697265625,-481.61871337890625,818.955078125,-1219.263427734375,-483.1263122558594,827.5054931640625,-951.6314697265625,-481.61871337890625,818.9550170898438,-951.6314697265625,-483.1263122558594,827.505615234375,-1219.263427734375,-487.4674987792969,835.0247192382812,-1219.263427734375,-487.4674987792969,835.0247192382812,-951.6314697265625,-483.1263122558594,827.505615234375,-1219.263427734375,-487.4674987792969,835.0247192382812,-951.6314697265625,-483.1263122558594,827.5054931640625,-951.6314697265625,-487.4674987792969,835.0247192382812,-1219.263427734375,-494.11871337890625,840.605712890625,-1219.263427734375,-494.11871337890625,840.605712890625,-951.6314697265625,-487.4674987792969,835.0247192382812,-1219.263427734375,-494.11871337890625,840.605712890625,-951.6314697265625,-487.4674987792969,835.0247192382812,-951.6314697265625,-494.11871337890625,840.605712890625,-1219.263427734375,-502.27740478515625,843.5753173828125,-1219.263427734375,-502.27740478515625,843.5751953125,-951.6314697265625,-494.11871337890625,840.605712890625,-1219.263427734375,-502.27740478515625,843.5751953125,-951.6314697265625,-494.11871337890625,840.605712890625,-951.6314697265625,-502.27740478515625,843.5753173828125,-1219.263427734375,-510.95989990234375,843.5753173828125,-1219.263427734375,-510.95989990234375,843.5751953125,-951.6314697265625,-502.27740478515625,843.5753173828125,-1219.263427734375,-510.95989990234375,843.5751953125,-951.6314697265625,-502.27740478515625,843.5751953125,-951.6314697265625,-510.95989990234375,843.5753173828125,-1219.263427734375,-519.1187133789062,840.605712890625,-1219.263427734375,-519.1187133789062,840.605712890625,-951.6314697265625,-510.95989990234375,843.5753173828125,-1219.263427734375,-519.1187133789062,840.605712890625,-951.6314697265625,-510.95989990234375,843.5751953125,-951.6314697265625,-519.1187133789062,840.605712890625,-1219.263427734375,-525.769775390625,835.0247192382812,-1219.263427734375,-525.769775390625,835.0247192382812,-951.6314697265625,-519.1187133789062,840.605712890625,-1219.263427734375,-525.769775390625,835.0247192382812,-951.6314697265625,-519.1187133789062,840.605712890625,-951.6314697265625,-525.769775390625,835.0247192382812,-1219.263427734375,-530.1110229492188,827.505615234375,-1219.263427734375,-530.1110229492188,827.5054931640625,-951.6314697265625,-525.769775390625,835.0247192382812,-1219.263427734375,-530.1110229492188,827.5054931640625,-951.6314697265625,-525.769775390625,835.0247192382812,-951.6314697265625,-530.1110229492188,827.505615234375,-1219.263427734375,-531.6187133789062,818.955078125,-1219.263427734375,-531.6187133789062,818.9550170898438,-951.6314697265625,-530.1110229492188,827.505615234375,-1219.263427734375,-531.6187133789062,818.9550170898438,-951.6314697265625,-530.1110229492188,827.5054931640625,-951.6314697265625,-531.6187133789062,818.955078125,-1219.263427734375,-530.1110229492188,810.4044799804688,-1219.263427734375,-530.1110229492188,810.4044799804688,-951.6314697265625,-531.6187133789062,818.955078125,-1219.263427734375,-530.1110229492188,810.4044799804688,-951.6314697265625,-531.6187133789062,818.9550170898438,-951.6314697265625,-530.1110229492188,810.4044799804688,-1219.263427734375,-525.769775390625,802.8853759765625,-1219.263427734375,-525.769775390625,802.8853149414062,-951.6314697265625,-530.1110229492188,810.4044799804688,-1219.263427734375,-525.769775390625,802.8853149414062,-951.6314697265625,-530.1110229492188,810.4044799804688,-951.6314697265625,-525.769775390625,802.8853759765625,-1219.263427734375,-519.1187133789062,797.3043823242188,-1219.263427734375,-519.1187133789062,797.3043823242188,-951.6314697265625,-525.769775390625,802.8853759765625,-1219.263427734375,-519.1187133789062,797.3043823242188,-951.6314697265625,-525.769775390625,802.8853149414062,-951.6314697265625,-519.1187133789062,797.3043823242188,-1219.263427734375,-510.95989990234375,794.3347778320312,-1219.263427734375,-510.95989990234375,794.3347778320312,-951.6314697265625,-519.1187133789062,797.3043823242188,-1219.263427734375,-510.95989990234375,794.3347778320312,-951.6314697265625,-519.1187133789062,797.3043823242188,-951.6314697265625,-510.95989990234375,794.3347778320312,-1219.263427734375,-502.2774963378906,794.3347778320312,-1219.263427734375,-502.2774963378906,794.3347778320312,-951.6314697265625,-510.95989990234375,794.3347778320312,-1219.263427734375,-502.2774963378906,794.3347778320312,-951.6314697265625,-510.95989990234375,794.3347778320312,-951.6314697265625,-502.2774963378906,794.3347778320312,-1219.263427734375,-494.11871337890625,797.3043823242188,-1219.263427734375,-494.11871337890625,797.3043823242188,-951.6314697265625,-502.2774963378906,794.3347778320312,-1219.263427734375,-494.11871337890625,797.3043823242188,-951.6314697265625,-502.2774963378906,794.3347778320312,-951.6314697265625,-494.11871337890625,797.3043823242188,-1219.263427734375,-487.46759033203125,802.8853759765625,-1219.263427734375,-487.46759033203125,802.8853149414062,-951.6314697265625,-494.11871337890625,797.3043823242188,-1219.263427734375,-487.46759033203125,802.8853149414062,-951.6314697265625,-494.11871337890625,797.3043823242188,-951.6314697265625,-487.46759033203125,802.8853759765625,-1219.263427734375,-483.1263122558594,810.4044799804688,-1219.263427734375,-483.1263122558594,810.4044799804688,-951.6314697265625,-487.46759033203125,802.8853759765625,-1219.263427734375,-483.1263122558594,810.4044799804688,-951.6314697265625,-487.46759033203125,802.8853149414062,-951.6314697265625,-483.1263122558594,810.4044799804688,-1219.263427734375,-481.61871337890625,818.955078125,-1219.263427734375,-481.61871337890625,818.9550170898438,-951.6314697265625,-483.1263122558594,810.4044799804688,-1219.263427734375,-481.61871337890625,818.9550170898438,-951.6314697265625,-483.1263122558594,810.4044799804688,-951.6314697265625,-481.61871337890625,818.9550170898438,-951.6314697265625,-483.1263122558594,827.5054931640625,-951.6314697265625,-483.1263122558594,827.5054931640625,-683.9995727539062,-481.61871337890625,818.9550170898438,-951.6314697265625,-483.1263122558594,827.5054931640625,-683.9995727539062,-481.61871337890625,818.9550170898438,-683.9995727539062,-483.1263122558594,827.5054931640625,-951.6314697265625,-487.4674987792969,835.0247192382812,-951.6314697265625,-487.4674987792969,835.0247192382812,-683.9995727539062,-483.1263122558594,827.5054931640625,-951.6314697265625,-487.4674987792969,835.0247192382812,-683.9995727539062,-483.1263122558594,827.5054931640625,-683.9995727539062,-487.4674987792969,835.0247192382812,-951.6314697265625,-494.11871337890625,840.605712890625,-951.6314697265625,-494.11871337890625,840.6055908203125,-683.9995727539062,-487.4674987792969,835.0247192382812,-951.6314697265625,-494.11871337890625,840.6055908203125,-683.9995727539062,-487.4674987792969,835.0247192382812,-683.9995727539062,-494.11871337890625,840.605712890625,-951.6314697265625,-502.27740478515625,843.5751953125,-951.6314697265625,-502.27740478515625,843.5750732421875,-683.9995727539062,-494.11871337890625,840.605712890625,-951.6314697265625,-502.27740478515625,843.5750732421875,-683.9995727539062,-494.11871337890625,840.6055908203125,-683.9995727539062,-502.27740478515625,843.5751953125,-951.6314697265625,-510.95989990234375,843.5751953125,-951.6314697265625,-510.95989990234375,843.5750732421875,-683.9995727539062,-502.27740478515625,843.5751953125,-951.6314697265625,-510.95989990234375,843.5750732421875,-683.9995727539062,-502.27740478515625,843.5750732421875,-683.9995727539062,-510.95989990234375,843.5751953125,-951.6314697265625,-519.1187133789062,840.605712890625,-951.6314697265625,-519.1187133789062,840.6055908203125,-683.9995727539062,-510.95989990234375,843.5751953125,-951.6314697265625,-519.1187133789062,840.6055908203125,-683.9995727539062,-510.95989990234375,843.5750732421875,-683.9995727539062,-519.1187133789062,840.605712890625,-951.6314697265625,-525.769775390625,835.0247192382812,-951.6314697265625,-525.769775390625,835.0247192382812,-683.9995727539062,-519.1187133789062,840.605712890625,-951.6314697265625,-525.769775390625,835.0247192382812,-683.9995727539062,-519.1187133789062,840.6055908203125,-683.9995727539062,-525.769775390625,835.0247192382812,-951.6314697265625,-530.1110229492188,827.5054931640625,-951.6314697265625,-530.1110229492188,827.5054931640625,-683.9995727539062,-525.769775390625,835.0247192382812,-951.6314697265625,-530.1110229492188,827.5054931640625,-683.9995727539062,-525.769775390625,835.0247192382812,-683.9995727539062,-530.1110229492188,827.5054931640625,-951.6314697265625,-531.6187133789062,818.9550170898438,-951.6314697265625,-531.6187133789062,818.9550170898438,-683.9995727539062,-530.1110229492188,827.5054931640625,-951.6314697265625,-531.6187133789062,818.9550170898438,-683.9995727539062,-530.1110229492188,827.5054931640625,-683.9995727539062,-531.6187133789062,818.9550170898438,-951.6314697265625,-530.1110229492188,810.4044799804688,-951.6314697265625,-530.1110229492188,810.4044799804688,-683.9995727539062,-531.6187133789062,818.9550170898438,-951.6314697265625,-530.1110229492188,810.4044799804688,-683.9995727539062,-531.6187133789062,818.9550170898438,-683.9995727539062,-530.1110229492188,810.4044799804688,-951.6314697265625,-525.769775390625,802.8853149414062,-951.6314697265625,-525.769775390625,802.8853149414062,-683.9995727539062,-530.1110229492188,810.4044799804688,-951.6314697265625,-525.769775390625,802.8853149414062,-683.9995727539062,-530.1110229492188,810.4044799804688,-683.9995727539062,-525.769775390625,802.8853149414062,-951.6314697265625,-519.1187133789062,797.3043823242188,-951.6314697265625,-519.1187133789062,797.3043212890625,-683.9995727539062,-525.769775390625,802.8853149414062,-951.6314697265625,-519.1187133789062,797.3043212890625,-683.9995727539062,-525.769775390625,802.8853149414062,-683.9995727539062,-519.1187133789062,797.3043823242188,-951.6314697265625,-510.95989990234375,794.3347778320312,-951.6314697265625,-510.95989990234375,794.3347778320312,-683.9995727539062,-519.1187133789062,797.3043823242188,-951.6314697265625,-510.95989990234375,794.3347778320312,-683.9995727539062,-519.1187133789062,797.3043212890625,-683.9995727539062,-510.95989990234375,794.3347778320312,-951.6314697265625,-502.2774963378906,794.3347778320312,-951.6314697265625,-502.2774963378906,794.3347778320312,-683.9995727539062,-510.95989990234375,794.3347778320312,-951.6314697265625,-502.2774963378906,794.3347778320312,-683.9995727539062,-510.95989990234375,794.3347778320312,-683.9995727539062,-502.2774963378906,794.3347778320312,-951.6314697265625,-494.11871337890625,797.3043823242188,-951.6314697265625,-494.11871337890625,797.3043212890625,-683.9995727539062,-502.2774963378906,794.3347778320312,-951.6314697265625,-494.11871337890625,797.3043212890625,-683.9995727539062,-502.2774963378906,794.3347778320312,-683.9995727539062,-494.11871337890625,797.3043823242188,-951.6314697265625,-487.46759033203125,802.8853149414062,-951.6314697265625,-487.46759033203125,802.8853149414062,-683.9995727539062,-494.11871337890625,797.3043823242188,-951.6314697265625,-487.46759033203125,802.8853149414062,-683.9995727539062,-494.11871337890625,797.3043212890625,-683.9995727539062,-487.46759033203125,802.8853149414062,-951.6314697265625,-483.1263122558594,810.4044799804688,-951.6314697265625,-483.1263122558594,810.4044189453125,-683.9995727539062,-487.46759033203125,802.8853149414062,-951.6314697265625,-483.1263122558594,810.4044189453125,-683.9995727539062,-487.46759033203125,802.8853149414062,-683.9995727539062,-483.1263122558594,810.4044799804688,-951.6314697265625,-481.61871337890625,818.9550170898438,-951.6314697265625,-481.61871337890625,818.9550170898438,-683.9995727539062,-483.1263122558594,810.4044799804688,-951.6314697265625,-481.61871337890625,818.9550170898438,-683.9995727539062,-483.1263122558594,810.4044189453125,-683.9995727539062,-481.61871337890625,818.9550170898438,-683.9995727539062,-483.1263122558594,827.5054931640625,-683.9995727539062,-483.1263122558594,827.50537109375,-416.3677062988281,-481.61871337890625,818.9550170898438,-683.9995727539062,-483.1263122558594,827.50537109375,-416.3677062988281,-481.61871337890625,818.9548950195312,-416.3677062988281,-483.1263122558594,827.5054931640625,-683.9995727539062,-487.4674987792969,835.0247192382812,-683.9995727539062,-487.4674987792969,835.0245971679688,-416.3677062988281,-483.1263122558594,827.5054931640625,-683.9995727539062,-487.4674987792969,835.0245971679688,-416.3677062988281,-483.1263122558594,827.50537109375,-416.3677062988281,-487.4674987792969,835.0247192382812,-683.9995727539062,-494.11871337890625,840.6055908203125,-683.9995727539062,-494.11871337890625,840.6055297851562,-416.3677062988281,-487.4674987792969,835.0247192382812,-683.9995727539062,-494.11871337890625,840.6055297851562,-416.3677062988281,-487.4674987792969,835.0245971679688,-416.3677062988281,-494.11871337890625,840.6055908203125,-683.9995727539062,-502.27740478515625,843.5750732421875,-683.9995727539062,-502.27740478515625,843.5750732421875,-416.3677062988281,-494.11871337890625,840.6055908203125,-683.9995727539062,-502.27740478515625,843.5750732421875,-416.3677062988281,-494.11871337890625,840.6055297851562,-416.3677062988281,-502.27740478515625,843.5750732421875,-683.9995727539062,-510.95989990234375,843.5750732421875,-683.9995727539062,-510.95989990234375,843.5750732421875,-416.3677062988281,-502.27740478515625,843.5750732421875,-683.9995727539062,-510.95989990234375,843.5750732421875,-416.3677062988281,-502.27740478515625,843.5750732421875,-416.3677062988281,-510.95989990234375,843.5750732421875,-683.9995727539062,-519.1187133789062,840.6055908203125,-683.9995727539062,-519.1187133789062,840.6055297851562,-416.3677062988281,-510.95989990234375,843.5750732421875,-683.9995727539062,-519.1187133789062,840.6055297851562,-416.3677062988281,-510.95989990234375,843.5750732421875,-416.3677062988281,-519.1187133789062,840.6055908203125,-683.9995727539062,-525.769775390625,835.0247192382812,-683.9995727539062,-525.769775390625,835.0245971679688,-416.3677062988281,-519.1187133789062,840.6055908203125,-683.9995727539062,-525.769775390625,835.0245971679688,-416.3677062988281,-519.1187133789062,840.6055297851562,-416.3677062988281,-525.769775390625,835.0247192382812,-683.9995727539062,-530.1110229492188,827.5054931640625,-683.9995727539062,-530.1110229492188,827.50537109375,-416.3677062988281,-525.769775390625,835.0247192382812,-683.9995727539062,-530.1110229492188,827.50537109375,-416.3677062988281,-525.769775390625,835.0245971679688,-416.3677062988281,-530.1110229492188,827.5054931640625,-683.9995727539062,-531.6187133789062,818.9550170898438,-683.9995727539062,-531.6187133789062,818.9548950195312,-416.3677062988281,-530.1110229492188,827.5054931640625,-683.9995727539062,-531.6187133789062,818.9548950195312,-416.3677062988281,-530.1110229492188,827.50537109375,-416.3677062988281,-531.6187133789062,818.9550170898438,-683.9995727539062,-530.1110229492188,810.4044799804688,-683.9995727539062,-530.1110229492188,810.4044189453125,-416.3677062988281,-531.6187133789062,818.9550170898438,-683.9995727539062,-530.1110229492188,810.4044189453125,-416.3677062988281,-531.6187133789062,818.9548950195312,-416.3677062988281,-530.1110229492188,810.4044799804688,-683.9995727539062,-525.769775390625,802.8853149414062,-683.9995727539062,-525.769775390625,802.8853149414062,-416.3677062988281,-530.1110229492188,810.4044799804688,-683.9995727539062,-525.769775390625,802.8853149414062,-416.3677062988281,-530.1110229492188,810.4044189453125,-416.3677062988281,-525.769775390625,802.8853149414062,-683.9995727539062,-519.1187133789062,797.3043212890625,-683.9995727539062,-519.1187133789062,797.3043212890625,-416.3677062988281,-525.769775390625,802.8853149414062,-683.9995727539062,-519.1187133789062,797.3043212890625,-416.3677062988281,-525.769775390625,802.8853149414062,-416.3677062988281,-519.1187133789062,797.3043212890625,-683.9995727539062,-510.95989990234375,794.3347778320312,-683.9995727539062,-510.95989990234375,794.334716796875,-416.3677062988281,-519.1187133789062,797.3043212890625,-683.9995727539062,-510.95989990234375,794.334716796875,-416.3677062988281,-519.1187133789062,797.3043212890625,-416.3677062988281,-510.95989990234375,794.3347778320312,-683.9995727539062,-502.2774963378906,794.3347778320312,-683.9995727539062,-502.2774963378906,794.334716796875,-416.3677062988281,-510.95989990234375,794.3347778320312,-683.9995727539062,-502.2774963378906,794.334716796875,-416.3677062988281,-510.95989990234375,794.334716796875,-416.3677062988281,-502.2774963378906,794.3347778320312,-683.9995727539062,-494.11871337890625,797.3043212890625,-683.9995727539062,-494.11871337890625,797.3043212890625,-416.3677062988281,-502.2774963378906,794.3347778320312,-683.9995727539062,-494.11871337890625,797.3043212890625,-416.3677062988281,-502.2774963378906,794.334716796875,-416.3677062988281,-494.11871337890625,797.3043212890625,-683.9995727539062,-487.46759033203125,802.8853149414062,-683.9995727539062,-487.46759033203125,802.8851928710938,-416.3677062988281,-494.11871337890625,797.3043212890625,-683.9995727539062,-487.46759033203125,802.8851928710938,-416.3677062988281,-494.11871337890625,797.3043212890625,-416.3677062988281,-487.46759033203125,802.8853149414062,-683.9995727539062,-483.1263122558594,810.4044189453125,-683.9995727539062,-483.1263122558594,810.4044189453125,-416.3677062988281,-487.46759033203125,802.8853149414062,-683.9995727539062,-483.1263122558594,810.4044189453125,-416.3677062988281,-487.46759033203125,802.8851928710938,-416.3677062988281,-483.1263122558594,810.4044189453125,-683.9995727539062,-481.61871337890625,818.9550170898438,-683.9995727539062,-481.61871337890625,818.9548950195312,-416.3677062988281,-483.1263122558594,810.4044189453125,-683.9995727539062,-481.61871337890625,818.9548950195312,-416.3677062988281,-483.1263122558594,810.4044189453125,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-483.1263122558594,810.4044189453125,-416.3677062988281,-481.61871337890625,818.9548950195312,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-481.61871337890625,818.9548950195312,-416.3677062988281,-483.1263122558594,827.50537109375,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-483.1263122558594,827.50537109375,-416.3677062988281,-487.4674987792969,835.0245971679688,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-487.4674987792969,835.0245971679688,-416.3677062988281,-494.11871337890625,840.6055297851562,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-494.11871337890625,840.6055297851562,-416.3677062988281,-502.27740478515625,843.5750732421875,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-502.27740478515625,843.5750732421875,-416.3677062988281,-510.95989990234375,843.5750732421875,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-510.95989990234375,843.5750732421875,-416.3677062988281,-519.1187133789062,840.6055297851562,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-519.1187133789062,840.6055297851562,-416.3677062988281,-525.769775390625,835.0245971679688,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-525.769775390625,835.0245971679688,-416.3677062988281,-530.1110229492188,827.50537109375,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-530.1110229492188,827.50537109375,-416.3677062988281,-531.6187133789062,818.9548950195312,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-531.6187133789062,818.9548950195312,-416.3677062988281,-530.1110229492188,810.4044189453125,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-530.1110229492188,810.4044189453125,-416.3677062988281,-525.769775390625,802.8853149414062,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-525.769775390625,802.8853149414062,-416.3677062988281,-519.1187133789062,797.3043212890625,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-519.1187133789062,797.3043212890625,-416.3677062988281,-510.95989990234375,794.334716796875,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-510.95989990234375,794.334716796875,-416.3677062988281,-502.2774963378906,794.334716796875,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-502.2774963378906,794.334716796875,-416.3677062988281,-494.11871337890625,797.3043212890625,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-494.11871337890625,797.3043212890625,-416.3677062988281,-487.46759033203125,802.8851928710938,-416.3677062988281,-506.61871337890625,818.9548950195312,-416.3677062988281,-487.46759033203125,802.8851928710938,-416.3677062988281,-483.1263122558594,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-506.61871337890625,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466589122084
| }
| }
| },
| {
| "uuid": "FDC2CB19-7213-46C7-8EC6-035337846FDA",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-406.61871337890625,818.955078125,-1754.5272216796875,-387.4674987792969,835.0247802734375,-1754.5272216796875,-383.1263122558594,827.505615234375,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-383.1263122558594,827.505615234375,-1754.5272216796875,-381.61871337890625,818.955078125,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-402.27740478515625,843.5753173828125,-1754.5272216796875,-394.11871337890625,840.6057739257812,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-394.11871337890625,840.6057739257812,-1754.5272216796875,-387.4674987792969,835.0247802734375,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-419.11871337890625,840.6057739257812,-1754.5272216796875,-410.95989990234375,843.5753173828125,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-410.95989990234375,843.5753173828125,-1754.5272216796875,-402.27740478515625,843.5753173828125,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-430.1109924316406,827.505615234375,-1754.5272216796875,-425.7698059082031,835.0247802734375,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-425.7698059082031,835.0247802734375,-1754.5272216796875,-419.11871337890625,840.6057739257812,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-430.1109924316406,810.4047241210938,-1754.5272216796875,-431.61871337890625,818.955078125,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-431.61871337890625,818.955078125,-1754.5272216796875,-430.1109924316406,827.505615234375,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-419.11871337890625,797.3045043945312,-1754.5272216796875,-425.7698059082031,802.8853759765625,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-425.7698059082031,802.8853759765625,-1754.5272216796875,-430.1109924316406,810.4047241210938,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-402.2774963378906,794.3350219726562,-1754.5272216796875,-410.95989990234375,794.3350219726562,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-410.95989990234375,794.3350219726562,-1754.5272216796875,-419.11871337890625,797.3045043945312,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-387.46759033203125,802.8853759765625,-1754.5272216796875,-394.11871337890625,797.3045043945312,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-394.11871337890625,797.3045043945312,-1754.5272216796875,-402.2774963378906,794.3350219726562,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-381.61871337890625,818.955078125,-1754.5272216796875,-383.1263122558594,810.4046020507812,-1754.5272216796875,-406.61871337890625,818.955078125,-1754.5272216796875,-383.1263122558594,810.4046020507812,-1754.5272216796875,-387.46759033203125,802.8853759765625,-1754.5272216796875,-381.61871337890625,818.955078125,-1754.5272216796875,-383.1263122558594,827.505615234375,-1754.5272216796875,-383.1263122558594,827.505615234375,-1486.895263671875,-381.61871337890625,818.955078125,-1754.5272216796875,-383.1263122558594,827.505615234375,-1486.895263671875,-381.61871337890625,818.955078125,-1486.895263671875,-383.1263122558594,827.505615234375,-1754.5272216796875,-387.4674987792969,835.0247802734375,-1754.5272216796875,-387.4674987792969,835.0247802734375,-1486.895263671875,-383.1263122558594,827.505615234375,-1754.5272216796875,-387.4674987792969,835.0247802734375,-1486.895263671875,-383.1263122558594,827.505615234375,-1486.895263671875,-387.4674987792969,835.0247802734375,-1754.5272216796875,-394.11871337890625,840.6057739257812,-1754.5272216796875,-394.11871337890625,840.605712890625,-1486.895263671875,-387.4674987792969,835.0247802734375,-1754.5272216796875,-394.11871337890625,840.605712890625,-1486.895263671875,-387.4674987792969,835.0247802734375,-1486.895263671875,-394.11871337890625,840.6057739257812,-1754.5272216796875,-402.27740478515625,843.5753173828125,-1754.5272216796875,-402.27740478515625,843.5753173828125,-1486.895263671875,-394.11871337890625,840.6057739257812,-1754.5272216796875,-402.27740478515625,843.5753173828125,-1486.895263671875,-394.11871337890625,840.605712890625,-1486.895263671875,-402.27740478515625,843.5753173828125,-1754.5272216796875,-410.95989990234375,843.5753173828125,-1754.5272216796875,-410.95989990234375,843.5753173828125,-1486.895263671875,-402.27740478515625,843.5753173828125,-1754.5272216796875,-410.95989990234375,843.5753173828125,-1486.895263671875,-402.27740478515625,843.5753173828125,-1486.895263671875,-410.95989990234375,843.5753173828125,-1754.5272216796875,-419.11871337890625,840.6057739257812,-1754.5272216796875,-419.11871337890625,840.605712890625,-1486.895263671875,-410.95989990234375,843.5753173828125,-1754.5272216796875,-419.11871337890625,840.605712890625,-1486.895263671875,-410.95989990234375,843.5753173828125,-1486.895263671875,-419.11871337890625,840.6057739257812,-1754.5272216796875,-425.7698059082031,835.0247802734375,-1754.5272216796875,-425.7698059082031,835.0247802734375,-1486.895263671875,-419.11871337890625,840.6057739257812,-1754.5272216796875,-425.7698059082031,835.0247802734375,-1486.895263671875,-419.11871337890625,840.605712890625,-1486.895263671875,-425.7698059082031,835.0247802734375,-1754.5272216796875,-430.1109924316406,827.505615234375,-1754.5272216796875,-430.1109924316406,827.505615234375,-1486.895263671875,-425.7698059082031,835.0247802734375,-1754.5272216796875,-430.1109924316406,827.505615234375,-1486.895263671875,-425.7698059082031,835.0247802734375,-1486.895263671875,-430.1109924316406,827.505615234375,-1754.5272216796875,-431.61871337890625,818.955078125,-1754.5272216796875,-431.61871337890625,818.955078125,-1486.895263671875,-430.1109924316406,827.505615234375,-1754.5272216796875,-431.61871337890625,818.955078125,-1486.895263671875,-430.1109924316406,827.505615234375,-1486.895263671875,-431.61871337890625,818.955078125,-1754.5272216796875,-430.1109924316406,810.4047241210938,-1754.5272216796875,-430.1109924316406,810.4046020507812,-1486.895263671875,-431.61871337890625,818.955078125,-1754.5272216796875,-430.1109924316406,810.4046020507812,-1486.895263671875,-431.61871337890625,818.955078125,-1486.895263671875,-430.1109924316406,810.4047241210938,-1754.5272216796875,-425.7698059082031,802.8853759765625,-1754.5272216796875,-425.7698059082031,802.8853759765625,-1486.895263671875,-430.1109924316406,810.4047241210938,-1754.5272216796875,-425.7698059082031,802.8853759765625,-1486.895263671875,-430.1109924316406,810.4046020507812,-1486.895263671875,-425.7698059082031,802.8853759765625,-1754.5272216796875,-419.11871337890625,797.3045043945312,-1754.5272216796875,-419.11871337890625,797.3043823242188,-1486.895263671875,-425.7698059082031,802.8853759765625,-1754.5272216796875,-419.11871337890625,797.3043823242188,-1486.895263671875,-425.7698059082031,802.8853759765625,-1486.895263671875,-419.11871337890625,797.3045043945312,-1754.5272216796875,-410.95989990234375,794.3350219726562,-1754.5272216796875,-410.95989990234375,794.3348999023438,-1486.895263671875,-419.11871337890625,797.3045043945312,-1754.5272216796875,-410.95989990234375,794.3348999023438,-1486.895263671875,-419.11871337890625,797.3043823242188,-1486.895263671875,-410.95989990234375,794.3350219726562,-1754.5272216796875,-402.2774963378906,794.3350219726562,-1754.5272216796875,-402.2774963378906,794.3348999023438,-1486.895263671875,-410.95989990234375,794.3350219726562,-1754.5272216796875,-402.2774963378906,794.3348999023438,-1486.895263671875,-410.95989990234375,794.3348999023438,-1486.895263671875,-402.2774963378906,794.3350219726562,-1754.5272216796875,-394.11871337890625,797.3045043945312,-1754.5272216796875,-394.11871337890625,797.3043823242188,-1486.895263671875,-402.2774963378906,794.3350219726562,-1754.5272216796875,-394.11871337890625,797.3043823242188,-1486.895263671875,-402.2774963378906,794.3348999023438,-1486.895263671875,-394.11871337890625,797.3045043945312,-1754.5272216796875,-387.46759033203125,802.8853759765625,-1754.5272216796875,-387.46759033203125,802.8853759765625,-1486.895263671875,-394.11871337890625,797.3045043945312,-1754.5272216796875,-387.46759033203125,802.8853759765625,-1486.895263671875,-394.11871337890625,797.3043823242188,-1486.895263671875,-387.46759033203125,802.8853759765625,-1754.5272216796875,-383.1263122558594,810.4046020507812,-1754.5272216796875,-383.1263122558594,810.4046020507812,-1486.895263671875,-387.46759033203125,802.8853759765625,-1754.5272216796875,-383.1263122558594,810.4046020507812,-1486.895263671875,-387.46759033203125,802.8853759765625,-1486.895263671875,-383.1263122558594,810.4046020507812,-1754.5272216796875,-381.61871337890625,818.955078125,-1754.5272216796875,-381.61871337890625,818.955078125,-1486.895263671875,-383.1263122558594,810.4046020507812,-1754.5272216796875,-381.61871337890625,818.955078125,-1486.895263671875,-383.1263122558594,810.4046020507812,-1486.895263671875,-381.61871337890625,818.955078125,-1486.895263671875,-383.1263122558594,827.505615234375,-1486.895263671875,-383.1263122558594,827.505615234375,-1219.263427734375,-381.61871337890625,818.955078125,-1486.895263671875,-383.1263122558594,827.505615234375,-1219.263427734375,-381.61871337890625,818.955078125,-1219.263427734375,-383.1263122558594,827.505615234375,-1486.895263671875,-387.4674987792969,835.0247802734375,-1486.895263671875,-387.4674987792969,835.0247192382812,-1219.263427734375,-383.1263122558594,827.505615234375,-1486.895263671875,-387.4674987792969,835.0247192382812,-1219.263427734375,-383.1263122558594,827.505615234375,-1219.263427734375,-387.4674987792969,835.0247802734375,-1486.895263671875,-394.11871337890625,840.605712890625,-1486.895263671875,-394.11871337890625,840.605712890625,-1219.263427734375,-387.4674987792969,835.0247802734375,-1486.895263671875,-394.11871337890625,840.605712890625,-1219.263427734375,-387.4674987792969,835.0247192382812,-1219.263427734375,-394.11871337890625,840.605712890625,-1486.895263671875,-402.27740478515625,843.5753173828125,-1486.895263671875,-402.27740478515625,843.5753173828125,-1219.263427734375,-394.11871337890625,840.605712890625,-1486.895263671875,-402.27740478515625,843.5753173828125,-1219.263427734375,-394.11871337890625,840.605712890625,-1219.263427734375,-402.27740478515625,843.5753173828125,-1486.895263671875,-410.95989990234375,843.5753173828125,-1486.895263671875,-410.95989990234375,843.5753173828125,-1219.263427734375,-402.27740478515625,843.5753173828125,-1486.895263671875,-410.95989990234375,843.5753173828125,-1219.263427734375,-402.27740478515625,843.5753173828125,-1219.263427734375,-410.95989990234375,843.5753173828125,-1486.895263671875,-419.11871337890625,840.605712890625,-1486.895263671875,-419.11871337890625,840.605712890625,-1219.263427734375,-410.95989990234375,843.5753173828125,-1486.895263671875,-419.11871337890625,840.605712890625,-1219.263427734375,-410.95989990234375,843.5753173828125,-1219.263427734375,-419.11871337890625,840.605712890625,-1486.895263671875,-425.7698059082031,835.0247802734375,-1486.895263671875,-425.7698059082031,835.0247192382812,-1219.263427734375,-419.11871337890625,840.605712890625,-1486.895263671875,-425.7698059082031,835.0247192382812,-1219.263427734375,-419.11871337890625,840.605712890625,-1219.263427734375,-425.7698059082031,835.0247802734375,-1486.895263671875,-430.1109924316406,827.505615234375,-1486.895263671875,-430.1109924316406,827.505615234375,-1219.263427734375,-425.7698059082031,835.0247802734375,-1486.895263671875,-430.1109924316406,827.505615234375,-1219.263427734375,-425.7698059082031,835.0247192382812,-1219.263427734375,-430.1109924316406,827.505615234375,-1486.895263671875,-431.61871337890625,818.955078125,-1486.895263671875,-431.61871337890625,818.955078125,-1219.263427734375,-430.1109924316406,827.505615234375,-1486.895263671875,-431.61871337890625,818.955078125,-1219.263427734375,-430.1109924316406,827.505615234375,-1219.263427734375,-431.61871337890625,818.955078125,-1486.895263671875,-430.1109924316406,810.4046020507812,-1486.895263671875,-430.1109924316406,810.4044799804688,-1219.263427734375,-431.61871337890625,818.955078125,-1486.895263671875,-430.1109924316406,810.4044799804688,-1219.263427734375,-431.61871337890625,818.955078125,-1219.263427734375,-430.1109924316406,810.4046020507812,-1486.895263671875,-425.7698059082031,802.8853759765625,-1486.895263671875,-425.7698059082031,802.8853759765625,-1219.263427734375,-430.1109924316406,810.4046020507812,-1486.895263671875,-425.7698059082031,802.8853759765625,-1219.263427734375,-430.1109924316406,810.4044799804688,-1219.263427734375,-425.7698059082031,802.8853759765625,-1486.895263671875,-419.11871337890625,797.3043823242188,-1486.895263671875,-419.11871337890625,797.3043823242188,-1219.263427734375,-425.7698059082031,802.8853759765625,-1486.895263671875,-419.11871337890625,797.3043823242188,-1219.263427734375,-425.7698059082031,802.8853759765625,-1219.263427734375,-419.11871337890625,797.3043823242188,-1486.895263671875,-410.95989990234375,794.3348999023438,-1486.895263671875,-410.95989990234375,794.3347778320312,-1219.263427734375,-419.11871337890625,797.3043823242188,-1486.895263671875,-410.95989990234375,794.3347778320312,-1219.263427734375,-419.11871337890625,797.3043823242188,-1219.263427734375,-410.95989990234375,794.3348999023438,-1486.895263671875,-402.2774963378906,794.3348999023438,-1486.895263671875,-402.2774963378906,794.3347778320312,-1219.263427734375,-410.95989990234375,794.3348999023438,-1486.895263671875,-402.2774963378906,794.3347778320312,-1219.263427734375,-410.95989990234375,794.3347778320312,-1219.263427734375,-402.2774963378906,794.3348999023438,-1486.895263671875,-394.11871337890625,797.3043823242188,-1486.895263671875,-394.11871337890625,797.3043823242188,-1219.263427734375,-402.2774963378906,794.3348999023438,-1486.895263671875,-394.11871337890625,797.3043823242188,-1219.263427734375,-402.2774963378906,794.3347778320312,-1219.263427734375,-394.11871337890625,797.3043823242188,-1486.895263671875,-387.46759033203125,802.8853759765625,-1486.895263671875,-387.46759033203125,802.8853759765625,-1219.263427734375,-394.11871337890625,797.3043823242188,-1486.895263671875,-387.46759033203125,802.8853759765625,-1219.263427734375,-394.11871337890625,797.3043823242188,-1219.263427734375,-387.46759033203125,802.8853759765625,-1486.895263671875,-383.1263122558594,810.4046020507812,-1486.895263671875,-383.1263122558594,810.4044799804688,-1219.263427734375,-387.46759033203125,802.8853759765625,-1486.895263671875,-383.1263122558594,810.4044799804688,-1219.263427734375,-387.46759033203125,802.8853759765625,-1219.263427734375,-383.1263122558594,810.4046020507812,-1486.895263671875,-381.61871337890625,818.955078125,-1486.895263671875,-381.61871337890625,818.955078125,-1219.263427734375,-383.1263122558594,810.4046020507812,-1486.895263671875,-381.61871337890625,818.955078125,-1219.263427734375,-383.1263122558594,810.4044799804688,-1219.263427734375,-381.61871337890625,818.955078125,-1219.263427734375,-383.1263122558594,827.505615234375,-1219.263427734375,-383.1263122558594,827.5054931640625,-951.6314697265625,-381.61871337890625,818.955078125,-1219.263427734375,-383.1263122558594,827.5054931640625,-951.6314697265625,-381.61871337890625,818.9550170898438,-951.6314697265625,-383.1263122558594,827.505615234375,-1219.263427734375,-387.4674987792969,835.0247192382812,-1219.263427734375,-387.4674987792969,835.0247192382812,-951.6314697265625,-383.1263122558594,827.505615234375,-1219.263427734375,-387.4674987792969,835.0247192382812,-951.6314697265625,-383.1263122558594,827.5054931640625,-951.6314697265625,-387.4674987792969,835.0247192382812,-1219.263427734375,-394.11871337890625,840.605712890625,-1219.263427734375,-394.11871337890625,840.605712890625,-951.6314697265625,-387.4674987792969,835.0247192382812,-1219.263427734375,-394.11871337890625,840.605712890625,-951.6314697265625,-387.4674987792969,835.0247192382812,-951.6314697265625,-394.11871337890625,840.605712890625,-1219.263427734375,-402.27740478515625,843.5753173828125,-1219.263427734375,-402.27740478515625,843.5751953125,-951.6314697265625,-394.11871337890625,840.605712890625,-1219.263427734375,-402.27740478515625,843.5751953125,-951.6314697265625,-394.11871337890625,840.605712890625,-951.6314697265625,-402.27740478515625,843.5753173828125,-1219.263427734375,-410.95989990234375,843.5753173828125,-1219.263427734375,-410.95989990234375,843.5751953125,-951.6314697265625,-402.27740478515625,843.5753173828125,-1219.263427734375,-410.95989990234375,843.5751953125,-951.6314697265625,-402.27740478515625,843.5751953125,-951.6314697265625,-410.95989990234375,843.5753173828125,-1219.263427734375,-419.11871337890625,840.605712890625,-1219.263427734375,-419.11871337890625,840.605712890625,-951.6314697265625,-410.95989990234375,843.5753173828125,-1219.263427734375,-419.11871337890625,840.605712890625,-951.6314697265625,-410.95989990234375,843.5751953125,-951.6314697265625,-419.11871337890625,840.605712890625,-1219.263427734375,-425.7698059082031,835.0247192382812,-1219.263427734375,-425.7698059082031,835.0247192382812,-951.6314697265625,-419.11871337890625,840.605712890625,-1219.263427734375,-425.7698059082031,835.0247192382812,-951.6314697265625,-419.11871337890625,840.605712890625,-951.6314697265625,-425.7698059082031,835.0247192382812,-1219.263427734375,-430.1109924316406,827.505615234375,-1219.263427734375,-430.1109924316406,827.5054931640625,-951.6314697265625,-425.7698059082031,835.0247192382812,-1219.263427734375,-430.1109924316406,827.5054931640625,-951.6314697265625,-425.7698059082031,835.0247192382812,-951.6314697265625,-430.1109924316406,827.505615234375,-1219.263427734375,-431.61871337890625,818.955078125,-1219.263427734375,-431.61871337890625,818.9550170898438,-951.6314697265625,-430.1109924316406,827.505615234375,-1219.263427734375,-431.61871337890625,818.9550170898438,-951.6314697265625,-430.1109924316406,827.5054931640625,-951.6314697265625,-431.61871337890625,818.955078125,-1219.263427734375,-430.1109924316406,810.4044799804688,-1219.263427734375,-430.1109924316406,810.4044799804688,-951.6314697265625,-431.61871337890625,818.955078125,-1219.263427734375,-430.1109924316406,810.4044799804688,-951.6314697265625,-431.61871337890625,818.9550170898438,-951.6314697265625,-430.1109924316406,810.4044799804688,-1219.263427734375,-425.7698059082031,802.8853759765625,-1219.263427734375,-425.7698059082031,802.8853149414062,-951.6314697265625,-430.1109924316406,810.4044799804688,-1219.263427734375,-425.7698059082031,802.8853149414062,-951.6314697265625,-430.1109924316406,810.4044799804688,-951.6314697265625,-425.7698059082031,802.8853759765625,-1219.263427734375,-419.11871337890625,797.3043823242188,-1219.263427734375,-419.11871337890625,797.3043823242188,-951.6314697265625,-425.7698059082031,802.8853759765625,-1219.263427734375,-419.11871337890625,797.3043823242188,-951.6314697265625,-425.7698059082031,802.8853149414062,-951.6314697265625,-419.11871337890625,797.3043823242188,-1219.263427734375,-410.95989990234375,794.3347778320312,-1219.263427734375,-410.95989990234375,794.3347778320312,-951.6314697265625,-419.11871337890625,797.3043823242188,-1219.263427734375,-410.95989990234375,794.3347778320312,-951.6314697265625,-419.11871337890625,797.3043823242188,-951.6314697265625,-410.95989990234375,794.3347778320312,-1219.263427734375,-402.2774963378906,794.3347778320312,-1219.263427734375,-402.2774963378906,794.3347778320312,-951.6314697265625,-410.95989990234375,794.3347778320312,-1219.263427734375,-402.2774963378906,794.3347778320312,-951.6314697265625,-410.95989990234375,794.3347778320312,-951.6314697265625,-402.2774963378906,794.3347778320312,-1219.263427734375,-394.11871337890625,797.3043823242188,-1219.263427734375,-394.11871337890625,797.3043823242188,-951.6314697265625,-402.2774963378906,794.3347778320312,-1219.263427734375,-394.11871337890625,797.3043823242188,-951.6314697265625,-402.2774963378906,794.3347778320312,-951.6314697265625,-394.11871337890625,797.3043823242188,-1219.263427734375,-387.46759033203125,802.8853759765625,-1219.263427734375,-387.46759033203125,802.8853149414062,-951.6314697265625,-394.11871337890625,797.3043823242188,-1219.263427734375,-387.46759033203125,802.8853149414062,-951.6314697265625,-394.11871337890625,797.3043823242188,-951.6314697265625,-387.46759033203125,802.8853759765625,-1219.263427734375,-383.1263122558594,810.4044799804688,-1219.263427734375,-383.1263122558594,810.4044799804688,-951.6314697265625,-387.46759033203125,802.8853759765625,-1219.263427734375,-383.1263122558594,810.4044799804688,-951.6314697265625,-387.46759033203125,802.8853149414062,-951.6314697265625,-383.1263122558594,810.4044799804688,-1219.263427734375,-381.61871337890625,818.955078125,-1219.263427734375,-381.61871337890625,818.9550170898438,-951.6314697265625,-383.1263122558594,810.4044799804688,-1219.263427734375,-381.61871337890625,818.9550170898438,-951.6314697265625,-383.1263122558594,810.4044799804688,-951.6314697265625,-381.61871337890625,818.9550170898438,-951.6314697265625,-383.1263122558594,827.5054931640625,-951.6314697265625,-383.1263122558594,827.5054931640625,-683.9995727539062,-381.61871337890625,818.9550170898438,-951.6314697265625,-383.1263122558594,827.5054931640625,-683.9995727539062,-381.61871337890625,818.9550170898438,-683.9995727539062,-383.1263122558594,827.5054931640625,-951.6314697265625,-387.4674987792969,835.0247192382812,-951.6314697265625,-387.4674987792969,835.0247192382812,-683.9995727539062,-383.1263122558594,827.5054931640625,-951.6314697265625,-387.4674987792969,835.0247192382812,-683.9995727539062,-383.1263122558594,827.5054931640625,-683.9995727539062,-387.4674987792969,835.0247192382812,-951.6314697265625,-394.11871337890625,840.605712890625,-951.6314697265625,-394.11871337890625,840.6055908203125,-683.9995727539062,-387.4674987792969,835.0247192382812,-951.6314697265625,-394.11871337890625,840.6055908203125,-683.9995727539062,-387.4674987792969,835.0247192382812,-683.9995727539062,-394.11871337890625,840.605712890625,-951.6314697265625,-402.27740478515625,843.5751953125,-951.6314697265625,-402.27740478515625,843.5750732421875,-683.9995727539062,-394.11871337890625,840.605712890625,-951.6314697265625,-402.27740478515625,843.5750732421875,-683.9995727539062,-394.11871337890625,840.6055908203125,-683.9995727539062,-402.27740478515625,843.5751953125,-951.6314697265625,-410.95989990234375,843.5751953125,-951.6314697265625,-410.95989990234375,843.5750732421875,-683.9995727539062,-402.27740478515625,843.5751953125,-951.6314697265625,-410.95989990234375,843.5750732421875,-683.9995727539062,-402.27740478515625,843.5750732421875,-683.9995727539062,-410.95989990234375,843.5751953125,-951.6314697265625,-419.11871337890625,840.605712890625,-951.6314697265625,-419.11871337890625,840.6055908203125,-683.9995727539062,-410.95989990234375,843.5751953125,-951.6314697265625,-419.11871337890625,840.6055908203125,-683.9995727539062,-410.95989990234375,843.5750732421875,-683.9995727539062,-419.11871337890625,840.605712890625,-951.6314697265625,-425.7698059082031,835.0247192382812,-951.6314697265625,-425.7698059082031,835.0247192382812,-683.9995727539062,-419.11871337890625,840.605712890625,-951.6314697265625,-425.7698059082031,835.0247192382812,-683.9995727539062,-419.11871337890625,840.6055908203125,-683.9995727539062,-425.7698059082031,835.0247192382812,-951.6314697265625,-430.1109924316406,827.5054931640625,-951.6314697265625,-430.1109924316406,827.5054931640625,-683.9995727539062,-425.7698059082031,835.0247192382812,-951.6314697265625,-430.1109924316406,827.5054931640625,-683.9995727539062,-425.7698059082031,835.0247192382812,-683.9995727539062,-430.1109924316406,827.5054931640625,-951.6314697265625,-431.61871337890625,818.9550170898438,-951.6314697265625,-431.61871337890625,818.9550170898438,-683.9995727539062,-430.1109924316406,827.5054931640625,-951.6314697265625,-431.61871337890625,818.9550170898438,-683.9995727539062,-430.1109924316406,827.5054931640625,-683.9995727539062,-431.61871337890625,818.9550170898438,-951.6314697265625,-430.1109924316406,810.4044799804688,-951.6314697265625,-430.1109924316406,810.4044799804688,-683.9995727539062,-431.61871337890625,818.9550170898438,-951.6314697265625,-430.1109924316406,810.4044799804688,-683.9995727539062,-431.61871337890625,818.9550170898438,-683.9995727539062,-430.1109924316406,810.4044799804688,-951.6314697265625,-425.7698059082031,802.8853149414062,-951.6314697265625,-425.7698059082031,802.8853149414062,-683.9995727539062,-430.1109924316406,810.4044799804688,-951.6314697265625,-425.7698059082031,802.8853149414062,-683.9995727539062,-430.1109924316406,810.4044799804688,-683.9995727539062,-425.7698059082031,802.8853149414062,-951.6314697265625,-419.11871337890625,797.3043823242188,-951.6314697265625,-419.11871337890625,797.3043212890625,-683.9995727539062,-425.7698059082031,802.8853149414062,-951.6314697265625,-419.11871337890625,797.3043212890625,-683.9995727539062,-425.7698059082031,802.8853149414062,-683.9995727539062,-419.11871337890625,797.3043823242188,-951.6314697265625,-410.95989990234375,794.3347778320312,-951.6314697265625,-410.95989990234375,794.3347778320312,-683.9995727539062,-419.11871337890625,797.3043823242188,-951.6314697265625,-410.95989990234375,794.3347778320312,-683.9995727539062,-419.11871337890625,797.3043212890625,-683.9995727539062,-410.95989990234375,794.3347778320312,-951.6314697265625,-402.2774963378906,794.3347778320312,-951.6314697265625,-402.2774963378906,794.3347778320312,-683.9995727539062,-410.95989990234375,794.3347778320312,-951.6314697265625,-402.2774963378906,794.3347778320312,-683.9995727539062,-410.95989990234375,794.3347778320312,-683.9995727539062,-402.2774963378906,794.3347778320312,-951.6314697265625,-394.11871337890625,797.3043823242188,-951.6314697265625,-394.11871337890625,797.3043212890625,-683.9995727539062,-402.2774963378906,794.3347778320312,-951.6314697265625,-394.11871337890625,797.3043212890625,-683.9995727539062,-402.2774963378906,794.3347778320312,-683.9995727539062,-394.11871337890625,797.3043823242188,-951.6314697265625,-387.46759033203125,802.8853149414062,-951.6314697265625,-387.46759033203125,802.8853149414062,-683.9995727539062,-394.11871337890625,797.3043823242188,-951.6314697265625,-387.46759033203125,802.8853149414062,-683.9995727539062,-394.11871337890625,797.3043212890625,-683.9995727539062,-387.46759033203125,802.8853149414062,-951.6314697265625,-383.1263122558594,810.4044799804688,-951.6314697265625,-383.1263122558594,810.4044189453125,-683.9995727539062,-387.46759033203125,802.8853149414062,-951.6314697265625,-383.1263122558594,810.4044189453125,-683.9995727539062,-387.46759033203125,802.8853149414062,-683.9995727539062,-383.1263122558594,810.4044799804688,-951.6314697265625,-381.61871337890625,818.9550170898438,-951.6314697265625,-381.61871337890625,818.9550170898438,-683.9995727539062,-383.1263122558594,810.4044799804688,-951.6314697265625,-381.61871337890625,818.9550170898438,-683.9995727539062,-383.1263122558594,810.4044189453125,-683.9995727539062,-381.61871337890625,818.9550170898438,-683.9995727539062,-383.1263122558594,827.5054931640625,-683.9995727539062,-383.1263122558594,827.50537109375,-416.3677062988281,-381.61871337890625,818.9550170898438,-683.9995727539062,-383.1263122558594,827.50537109375,-416.3677062988281,-381.61871337890625,818.9548950195312,-416.3677062988281,-383.1263122558594,827.5054931640625,-683.9995727539062,-387.4674987792969,835.0247192382812,-683.9995727539062,-387.4674987792969,835.0245971679688,-416.3677062988281,-383.1263122558594,827.5054931640625,-683.9995727539062,-387.4674987792969,835.0245971679688,-416.3677062988281,-383.1263122558594,827.50537109375,-416.3677062988281,-387.4674987792969,835.0247192382812,-683.9995727539062,-394.11871337890625,840.6055908203125,-683.9995727539062,-394.11871337890625,840.6055297851562,-416.3677062988281,-387.4674987792969,835.0247192382812,-683.9995727539062,-394.11871337890625,840.6055297851562,-416.3677062988281,-387.4674987792969,835.0245971679688,-416.3677062988281,-394.11871337890625,840.6055908203125,-683.9995727539062,-402.27740478515625,843.5750732421875,-683.9995727539062,-402.27740478515625,843.5750732421875,-416.3677062988281,-394.11871337890625,840.6055908203125,-683.9995727539062,-402.27740478515625,843.5750732421875,-416.3677062988281,-394.11871337890625,840.6055297851562,-416.3677062988281,-402.27740478515625,843.5750732421875,-683.9995727539062,-410.95989990234375,843.5750732421875,-683.9995727539062,-410.95989990234375,843.5750732421875,-416.3677062988281,-402.27740478515625,843.5750732421875,-683.9995727539062,-410.95989990234375,843.5750732421875,-416.3677062988281,-402.27740478515625,843.5750732421875,-416.3677062988281,-410.95989990234375,843.5750732421875,-683.9995727539062,-419.11871337890625,840.6055908203125,-683.9995727539062,-419.11871337890625,840.6055297851562,-416.3677062988281,-410.95989990234375,843.5750732421875,-683.9995727539062,-419.11871337890625,840.6055297851562,-416.3677062988281,-410.95989990234375,843.5750732421875,-416.3677062988281,-419.11871337890625,840.6055908203125,-683.9995727539062,-425.7698059082031,835.0247192382812,-683.9995727539062,-425.7698059082031,835.0245971679688,-416.3677062988281,-419.11871337890625,840.6055908203125,-683.9995727539062,-425.7698059082031,835.0245971679688,-416.3677062988281,-419.11871337890625,840.6055297851562,-416.3677062988281,-425.7698059082031,835.0247192382812,-683.9995727539062,-430.1109924316406,827.5054931640625,-683.9995727539062,-430.1109924316406,827.50537109375,-416.3677062988281,-425.7698059082031,835.0247192382812,-683.9995727539062,-430.1109924316406,827.50537109375,-416.3677062988281,-425.7698059082031,835.0245971679688,-416.3677062988281,-430.1109924316406,827.5054931640625,-683.9995727539062,-431.61871337890625,818.9550170898438,-683.9995727539062,-431.61871337890625,818.9548950195312,-416.3677062988281,-430.1109924316406,827.5054931640625,-683.9995727539062,-431.61871337890625,818.9548950195312,-416.3677062988281,-430.1109924316406,827.50537109375,-416.3677062988281,-431.61871337890625,818.9550170898438,-683.9995727539062,-430.1109924316406,810.4044799804688,-683.9995727539062,-430.1109924316406,810.4044189453125,-416.3677062988281,-431.61871337890625,818.9550170898438,-683.9995727539062,-430.1109924316406,810.4044189453125,-416.3677062988281,-431.61871337890625,818.9548950195312,-416.3677062988281,-430.1109924316406,810.4044799804688,-683.9995727539062,-425.7698059082031,802.8853149414062,-683.9995727539062,-425.7698059082031,802.8853149414062,-416.3677062988281,-430.1109924316406,810.4044799804688,-683.9995727539062,-425.7698059082031,802.8853149414062,-416.3677062988281,-430.1109924316406,810.4044189453125,-416.3677062988281,-425.7698059082031,802.8853149414062,-683.9995727539062,-419.11871337890625,797.3043212890625,-683.9995727539062,-419.11871337890625,797.3043212890625,-416.3677062988281,-425.7698059082031,802.8853149414062,-683.9995727539062,-419.11871337890625,797.3043212890625,-416.3677062988281,-425.7698059082031,802.8853149414062,-416.3677062988281,-419.11871337890625,797.3043212890625,-683.9995727539062,-410.95989990234375,794.3347778320312,-683.9995727539062,-410.95989990234375,794.334716796875,-416.3677062988281,-419.11871337890625,797.3043212890625,-683.9995727539062,-410.95989990234375,794.334716796875,-416.3677062988281,-419.11871337890625,797.3043212890625,-416.3677062988281,-410.95989990234375,794.3347778320312,-683.9995727539062,-402.2774963378906,794.3347778320312,-683.9995727539062,-402.2774963378906,794.334716796875,-416.3677062988281,-410.95989990234375,794.3347778320312,-683.9995727539062,-402.2774963378906,794.334716796875,-416.3677062988281,-410.95989990234375,794.334716796875,-416.3677062988281,-402.2774963378906,794.3347778320312,-683.9995727539062,-394.11871337890625,797.3043212890625,-683.9995727539062,-394.11871337890625,797.3043212890625,-416.3677062988281,-402.2774963378906,794.3347778320312,-683.9995727539062,-394.11871337890625,797.3043212890625,-416.3677062988281,-402.2774963378906,794.334716796875,-416.3677062988281,-394.11871337890625,797.3043212890625,-683.9995727539062,-387.46759033203125,802.8853149414062,-683.9995727539062,-387.46759033203125,802.8851928710938,-416.3677062988281,-394.11871337890625,797.3043212890625,-683.9995727539062,-387.46759033203125,802.8851928710938,-416.3677062988281,-394.11871337890625,797.3043212890625,-416.3677062988281,-387.46759033203125,802.8853149414062,-683.9995727539062,-383.1263122558594,810.4044189453125,-683.9995727539062,-383.1263122558594,810.4044189453125,-416.3677062988281,-387.46759033203125,802.8853149414062,-683.9995727539062,-383.1263122558594,810.4044189453125,-416.3677062988281,-387.46759033203125,802.8851928710938,-416.3677062988281,-383.1263122558594,810.4044189453125,-683.9995727539062,-381.61871337890625,818.9550170898438,-683.9995727539062,-381.61871337890625,818.9548950195312,-416.3677062988281,-383.1263122558594,810.4044189453125,-683.9995727539062,-381.61871337890625,818.9548950195312,-416.3677062988281,-383.1263122558594,810.4044189453125,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-383.1263122558594,810.4044189453125,-416.3677062988281,-381.61871337890625,818.9548950195312,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-381.61871337890625,818.9548950195312,-416.3677062988281,-383.1263122558594,827.50537109375,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-383.1263122558594,827.50537109375,-416.3677062988281,-387.4674987792969,835.0245971679688,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-387.4674987792969,835.0245971679688,-416.3677062988281,-394.11871337890625,840.6055297851562,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-394.11871337890625,840.6055297851562,-416.3677062988281,-402.27740478515625,843.5750732421875,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-402.27740478515625,843.5750732421875,-416.3677062988281,-410.95989990234375,843.5750732421875,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-410.95989990234375,843.5750732421875,-416.3677062988281,-419.11871337890625,840.6055297851562,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-419.11871337890625,840.6055297851562,-416.3677062988281,-425.7698059082031,835.0245971679688,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-425.7698059082031,835.0245971679688,-416.3677062988281,-430.1109924316406,827.50537109375,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-430.1109924316406,827.50537109375,-416.3677062988281,-431.61871337890625,818.9548950195312,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-431.61871337890625,818.9548950195312,-416.3677062988281,-430.1109924316406,810.4044189453125,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-430.1109924316406,810.4044189453125,-416.3677062988281,-425.7698059082031,802.8853149414062,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-425.7698059082031,802.8853149414062,-416.3677062988281,-419.11871337890625,797.3043212890625,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-419.11871337890625,797.3043212890625,-416.3677062988281,-410.95989990234375,794.334716796875,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-410.95989990234375,794.334716796875,-416.3677062988281,-402.2774963378906,794.334716796875,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-402.2774963378906,794.334716796875,-416.3677062988281,-394.11871337890625,797.3043212890625,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-394.11871337890625,797.3043212890625,-416.3677062988281,-387.46759033203125,802.8851928710938,-416.3677062988281,-406.61871337890625,818.9548950195312,-416.3677062988281,-387.46759033203125,802.8851928710938,-416.3677062988281,-383.1263122558594,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-406.61871337890625,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466589122084
| }
| }
| },
| {
| "uuid": "6572B77D-89F1-4C9D-910A-6A819F1DD720",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-306.61871337890625,818.955078125,-1754.5272216796875,-287.4674987792969,835.0247802734375,-1754.5272216796875,-283.1263122558594,827.505615234375,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-283.1263122558594,827.505615234375,-1754.5272216796875,-281.61871337890625,818.955078125,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-302.27740478515625,843.5753173828125,-1754.5272216796875,-294.11871337890625,840.6057739257812,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-294.11871337890625,840.6057739257812,-1754.5272216796875,-287.4674987792969,835.0247802734375,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-319.11871337890625,840.6057739257812,-1754.5272216796875,-310.95989990234375,843.5753173828125,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-310.95989990234375,843.5753173828125,-1754.5272216796875,-302.27740478515625,843.5753173828125,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-330.1109924316406,827.505615234375,-1754.5272216796875,-325.7698059082031,835.0247802734375,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-325.7698059082031,835.0247802734375,-1754.5272216796875,-319.11871337890625,840.6057739257812,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-330.1109924316406,810.4047241210938,-1754.5272216796875,-331.61871337890625,818.955078125,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-331.61871337890625,818.955078125,-1754.5272216796875,-330.1109924316406,827.505615234375,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-319.11871337890625,797.3045043945312,-1754.5272216796875,-325.7698059082031,802.8853759765625,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-325.7698059082031,802.8853759765625,-1754.5272216796875,-330.1109924316406,810.4047241210938,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-302.2774963378906,794.3350219726562,-1754.5272216796875,-310.95989990234375,794.3350219726562,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-310.95989990234375,794.3350219726562,-1754.5272216796875,-319.11871337890625,797.3045043945312,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-287.46759033203125,802.8853759765625,-1754.5272216796875,-294.11871337890625,797.3045043945312,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-294.11871337890625,797.3045043945312,-1754.5272216796875,-302.2774963378906,794.3350219726562,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-281.61871337890625,818.955078125,-1754.5272216796875,-283.1263122558594,810.4046020507812,-1754.5272216796875,-306.61871337890625,818.955078125,-1754.5272216796875,-283.1263122558594,810.4046020507812,-1754.5272216796875,-287.46759033203125,802.8853759765625,-1754.5272216796875,-281.61871337890625,818.955078125,-1754.5272216796875,-283.1263122558594,827.505615234375,-1754.5272216796875,-283.1263122558594,827.505615234375,-1486.895263671875,-281.61871337890625,818.955078125,-1754.5272216796875,-283.1263122558594,827.505615234375,-1486.895263671875,-281.61871337890625,818.955078125,-1486.895263671875,-283.1263122558594,827.505615234375,-1754.5272216796875,-287.4674987792969,835.0247802734375,-1754.5272216796875,-287.4674987792969,835.0247802734375,-1486.895263671875,-283.1263122558594,827.505615234375,-1754.5272216796875,-287.4674987792969,835.0247802734375,-1486.895263671875,-283.1263122558594,827.505615234375,-1486.895263671875,-287.4674987792969,835.0247802734375,-1754.5272216796875,-294.11871337890625,840.6057739257812,-1754.5272216796875,-294.11871337890625,840.605712890625,-1486.895263671875,-287.4674987792969,835.0247802734375,-1754.5272216796875,-294.11871337890625,840.605712890625,-1486.895263671875,-287.4674987792969,835.0247802734375,-1486.895263671875,-294.11871337890625,840.6057739257812,-1754.5272216796875,-302.27740478515625,843.5753173828125,-1754.5272216796875,-302.27740478515625,843.5753173828125,-1486.895263671875,-294.11871337890625,840.6057739257812,-1754.5272216796875,-302.27740478515625,843.5753173828125,-1486.895263671875,-294.11871337890625,840.605712890625,-1486.895263671875,-302.27740478515625,843.5753173828125,-1754.5272216796875,-310.95989990234375,843.5753173828125,-1754.5272216796875,-310.95989990234375,843.5753173828125,-1486.895263671875,-302.27740478515625,843.5753173828125,-1754.5272216796875,-310.95989990234375,843.5753173828125,-1486.895263671875,-302.27740478515625,843.5753173828125,-1486.895263671875,-310.95989990234375,843.5753173828125,-1754.5272216796875,-319.11871337890625,840.6057739257812,-1754.5272216796875,-319.11871337890625,840.605712890625,-1486.895263671875,-310.95989990234375,843.5753173828125,-1754.5272216796875,-319.11871337890625,840.605712890625,-1486.895263671875,-310.95989990234375,843.5753173828125,-1486.895263671875,-319.11871337890625,840.6057739257812,-1754.5272216796875,-325.7698059082031,835.0247802734375,-1754.5272216796875,-325.7698059082031,835.0247802734375,-1486.895263671875,-319.11871337890625,840.6057739257812,-1754.5272216796875,-325.7698059082031,835.0247802734375,-1486.895263671875,-319.11871337890625,840.605712890625,-1486.895263671875,-325.7698059082031,835.0247802734375,-1754.5272216796875,-330.1109924316406,827.505615234375,-1754.5272216796875,-330.1109924316406,827.505615234375,-1486.895263671875,-325.7698059082031,835.0247802734375,-1754.5272216796875,-330.1109924316406,827.505615234375,-1486.895263671875,-325.7698059082031,835.0247802734375,-1486.895263671875,-330.1109924316406,827.505615234375,-1754.5272216796875,-331.61871337890625,818.955078125,-1754.5272216796875,-331.61871337890625,818.955078125,-1486.895263671875,-330.1109924316406,827.505615234375,-1754.5272216796875,-331.61871337890625,818.955078125,-1486.895263671875,-330.1109924316406,827.505615234375,-1486.895263671875,-331.61871337890625,818.955078125,-1754.5272216796875,-330.1109924316406,810.4047241210938,-1754.5272216796875,-330.1109924316406,810.4046020507812,-1486.895263671875,-331.61871337890625,818.955078125,-1754.5272216796875,-330.1109924316406,810.4046020507812,-1486.895263671875,-331.61871337890625,818.955078125,-1486.895263671875,-330.1109924316406,810.4047241210938,-1754.5272216796875,-325.7698059082031,802.8853759765625,-1754.5272216796875,-325.7698059082031,802.8853759765625,-1486.895263671875,-330.1109924316406,810.4047241210938,-1754.5272216796875,-325.7698059082031,802.8853759765625,-1486.895263671875,-330.1109924316406,810.4046020507812,-1486.895263671875,-325.7698059082031,802.8853759765625,-1754.5272216796875,-319.11871337890625,797.3045043945312,-1754.5272216796875,-319.11871337890625,797.3043823242188,-1486.895263671875,-325.7698059082031,802.8853759765625,-1754.5272216796875,-319.11871337890625,797.3043823242188,-1486.895263671875,-325.7698059082031,802.8853759765625,-1486.895263671875,-319.11871337890625,797.3045043945312,-1754.5272216796875,-310.95989990234375,794.3350219726562,-1754.5272216796875,-310.95989990234375,794.3348999023438,-1486.895263671875,-319.11871337890625,797.3045043945312,-1754.5272216796875,-310.95989990234375,794.3348999023438,-1486.895263671875,-319.11871337890625,797.3043823242188,-1486.895263671875,-310.95989990234375,794.3350219726562,-1754.5272216796875,-302.2774963378906,794.3350219726562,-1754.5272216796875,-302.2774963378906,794.3348999023438,-1486.895263671875,-310.95989990234375,794.3350219726562,-1754.5272216796875,-302.2774963378906,794.3348999023438,-1486.895263671875,-310.95989990234375,794.3348999023438,-1486.895263671875,-302.2774963378906,794.3350219726562,-1754.5272216796875,-294.11871337890625,797.3045043945312,-1754.5272216796875,-294.11871337890625,797.3043823242188,-1486.895263671875,-302.2774963378906,794.3350219726562,-1754.5272216796875,-294.11871337890625,797.3043823242188,-1486.895263671875,-302.2774963378906,794.3348999023438,-1486.895263671875,-294.11871337890625,797.3045043945312,-1754.5272216796875,-287.46759033203125,802.8853759765625,-1754.5272216796875,-287.46759033203125,802.8853759765625,-1486.895263671875,-294.11871337890625,797.3045043945312,-1754.5272216796875,-287.46759033203125,802.8853759765625,-1486.895263671875,-294.11871337890625,797.3043823242188,-1486.895263671875,-287.46759033203125,802.8853759765625,-1754.5272216796875,-283.1263122558594,810.4046020507812,-1754.5272216796875,-283.1263122558594,810.4046020507812,-1486.895263671875,-287.46759033203125,802.8853759765625,-1754.5272216796875,-283.1263122558594,810.4046020507812,-1486.895263671875,-287.46759033203125,802.8853759765625,-1486.895263671875,-283.1263122558594,810.4046020507812,-1754.5272216796875,-281.61871337890625,818.955078125,-1754.5272216796875,-281.61871337890625,818.955078125,-1486.895263671875,-283.1263122558594,810.4046020507812,-1754.5272216796875,-281.61871337890625,818.955078125,-1486.895263671875,-283.1263122558594,810.4046020507812,-1486.895263671875,-281.61871337890625,818.955078125,-1486.895263671875,-283.1263122558594,827.505615234375,-1486.895263671875,-283.1263122558594,827.505615234375,-1219.263427734375,-281.61871337890625,818.955078125,-1486.895263671875,-283.1263122558594,827.505615234375,-1219.263427734375,-281.61871337890625,818.955078125,-1219.263427734375,-283.1263122558594,827.505615234375,-1486.895263671875,-287.4674987792969,835.0247802734375,-1486.895263671875,-287.4674987792969,835.0247192382812,-1219.263427734375,-283.1263122558594,827.505615234375,-1486.895263671875,-287.4674987792969,835.0247192382812,-1219.263427734375,-283.1263122558594,827.505615234375,-1219.263427734375,-287.4674987792969,835.0247802734375,-1486.895263671875,-294.11871337890625,840.605712890625,-1486.895263671875,-294.11871337890625,840.605712890625,-1219.263427734375,-287.4674987792969,835.0247802734375,-1486.895263671875,-294.11871337890625,840.605712890625,-1219.263427734375,-287.4674987792969,835.0247192382812,-1219.263427734375,-294.11871337890625,840.605712890625,-1486.895263671875,-302.27740478515625,843.5753173828125,-1486.895263671875,-302.27740478515625,843.5753173828125,-1219.263427734375,-294.11871337890625,840.605712890625,-1486.895263671875,-302.27740478515625,843.5753173828125,-1219.263427734375,-294.11871337890625,840.605712890625,-1219.263427734375,-302.27740478515625,843.5753173828125,-1486.895263671875,-310.95989990234375,843.5753173828125,-1486.895263671875,-310.95989990234375,843.5753173828125,-1219.263427734375,-302.27740478515625,843.5753173828125,-1486.895263671875,-310.95989990234375,843.5753173828125,-1219.263427734375,-302.27740478515625,843.5753173828125,-1219.263427734375,-310.95989990234375,843.5753173828125,-1486.895263671875,-319.11871337890625,840.605712890625,-1486.895263671875,-319.11871337890625,840.605712890625,-1219.263427734375,-310.95989990234375,843.5753173828125,-1486.895263671875,-319.11871337890625,840.605712890625,-1219.263427734375,-310.95989990234375,843.5753173828125,-1219.263427734375,-319.11871337890625,840.605712890625,-1486.895263671875,-325.7698059082031,835.0247802734375,-1486.895263671875,-325.7698059082031,835.0247192382812,-1219.263427734375,-319.11871337890625,840.605712890625,-1486.895263671875,-325.7698059082031,835.0247192382812,-1219.263427734375,-319.11871337890625,840.605712890625,-1219.263427734375,-325.7698059082031,835.0247802734375,-1486.895263671875,-330.1109924316406,827.505615234375,-1486.895263671875,-330.1109924316406,827.505615234375,-1219.263427734375,-325.7698059082031,835.0247802734375,-1486.895263671875,-330.1109924316406,827.505615234375,-1219.263427734375,-325.7698059082031,835.0247192382812,-1219.263427734375,-330.1109924316406,827.505615234375,-1486.895263671875,-331.61871337890625,818.955078125,-1486.895263671875,-331.61871337890625,818.955078125,-1219.263427734375,-330.1109924316406,827.505615234375,-1486.895263671875,-331.61871337890625,818.955078125,-1219.263427734375,-330.1109924316406,827.505615234375,-1219.263427734375,-331.61871337890625,818.955078125,-1486.895263671875,-330.1109924316406,810.4046020507812,-1486.895263671875,-330.1109924316406,810.4044799804688,-1219.263427734375,-331.61871337890625,818.955078125,-1486.895263671875,-330.1109924316406,810.4044799804688,-1219.263427734375,-331.61871337890625,818.955078125,-1219.263427734375,-330.1109924316406,810.4046020507812,-1486.895263671875,-325.7698059082031,802.8853759765625,-1486.895263671875,-325.7698059082031,802.8853759765625,-1219.263427734375,-330.1109924316406,810.4046020507812,-1486.895263671875,-325.7698059082031,802.8853759765625,-1219.263427734375,-330.1109924316406,810.4044799804688,-1219.263427734375,-325.7698059082031,802.8853759765625,-1486.895263671875,-319.11871337890625,797.3043823242188,-1486.895263671875,-319.11871337890625,797.3043823242188,-1219.263427734375,-325.7698059082031,802.8853759765625,-1486.895263671875,-319.11871337890625,797.3043823242188,-1219.263427734375,-325.7698059082031,802.8853759765625,-1219.263427734375,-319.11871337890625,797.3043823242188,-1486.895263671875,-310.95989990234375,794.3348999023438,-1486.895263671875,-310.95989990234375,794.3347778320312,-1219.263427734375,-319.11871337890625,797.3043823242188,-1486.895263671875,-310.95989990234375,794.3347778320312,-1219.263427734375,-319.11871337890625,797.3043823242188,-1219.263427734375,-310.95989990234375,794.3348999023438,-1486.895263671875,-302.2774963378906,794.3348999023438,-1486.895263671875,-302.2774963378906,794.3347778320312,-1219.263427734375,-310.95989990234375,794.3348999023438,-1486.895263671875,-302.2774963378906,794.3347778320312,-1219.263427734375,-310.95989990234375,794.3347778320312,-1219.263427734375,-302.2774963378906,794.3348999023438,-1486.895263671875,-294.11871337890625,797.3043823242188,-1486.895263671875,-294.11871337890625,797.3043823242188,-1219.263427734375,-302.2774963378906,794.3348999023438,-1486.895263671875,-294.11871337890625,797.3043823242188,-1219.263427734375,-302.2774963378906,794.3347778320312,-1219.263427734375,-294.11871337890625,797.3043823242188,-1486.895263671875,-287.46759033203125,802.8853759765625,-1486.895263671875,-287.46759033203125,802.8853759765625,-1219.263427734375,-294.11871337890625,797.3043823242188,-1486.895263671875,-287.46759033203125,802.8853759765625,-1219.263427734375,-294.11871337890625,797.3043823242188,-1219.263427734375,-287.46759033203125,802.8853759765625,-1486.895263671875,-283.1263122558594,810.4046020507812,-1486.895263671875,-283.1263122558594,810.4044799804688,-1219.263427734375,-287.46759033203125,802.8853759765625,-1486.895263671875,-283.1263122558594,810.4044799804688,-1219.263427734375,-287.46759033203125,802.8853759765625,-1219.263427734375,-283.1263122558594,810.4046020507812,-1486.895263671875,-281.61871337890625,818.955078125,-1486.895263671875,-281.61871337890625,818.955078125,-1219.263427734375,-283.1263122558594,810.4046020507812,-1486.895263671875,-281.61871337890625,818.955078125,-1219.263427734375,-283.1263122558594,810.4044799804688,-1219.263427734375,-281.61871337890625,818.955078125,-1219.263427734375,-283.1263122558594,827.505615234375,-1219.263427734375,-283.1263122558594,827.5054931640625,-951.6314697265625,-281.61871337890625,818.955078125,-1219.263427734375,-283.1263122558594,827.5054931640625,-951.6314697265625,-281.61871337890625,818.9550170898438,-951.6314697265625,-283.1263122558594,827.505615234375,-1219.263427734375,-287.4674987792969,835.0247192382812,-1219.263427734375,-287.4674987792969,835.0247192382812,-951.6314697265625,-283.1263122558594,827.505615234375,-1219.263427734375,-287.4674987792969,835.0247192382812,-951.6314697265625,-283.1263122558594,827.5054931640625,-951.6314697265625,-287.4674987792969,835.0247192382812,-1219.263427734375,-294.11871337890625,840.605712890625,-1219.263427734375,-294.11871337890625,840.605712890625,-951.6314697265625,-287.4674987792969,835.0247192382812,-1219.263427734375,-294.11871337890625,840.605712890625,-951.6314697265625,-287.4674987792969,835.0247192382812,-951.6314697265625,-294.11871337890625,840.605712890625,-1219.263427734375,-302.27740478515625,843.5753173828125,-1219.263427734375,-302.27740478515625,843.5751953125,-951.6314697265625,-294.11871337890625,840.605712890625,-1219.263427734375,-302.27740478515625,843.5751953125,-951.6314697265625,-294.11871337890625,840.605712890625,-951.6314697265625,-302.27740478515625,843.5753173828125,-1219.263427734375,-310.95989990234375,843.5753173828125,-1219.263427734375,-310.95989990234375,843.5751953125,-951.6314697265625,-302.27740478515625,843.5753173828125,-1219.263427734375,-310.95989990234375,843.5751953125,-951.6314697265625,-302.27740478515625,843.5751953125,-951.6314697265625,-310.95989990234375,843.5753173828125,-1219.263427734375,-319.11871337890625,840.605712890625,-1219.263427734375,-319.11871337890625,840.605712890625,-951.6314697265625,-310.95989990234375,843.5753173828125,-1219.263427734375,-319.11871337890625,840.605712890625,-951.6314697265625,-310.95989990234375,843.5751953125,-951.6314697265625,-319.11871337890625,840.605712890625,-1219.263427734375,-325.7698059082031,835.0247192382812,-1219.263427734375,-325.7698059082031,835.0247192382812,-951.6314697265625,-319.11871337890625,840.605712890625,-1219.263427734375,-325.7698059082031,835.0247192382812,-951.6314697265625,-319.11871337890625,840.605712890625,-951.6314697265625,-325.7698059082031,835.0247192382812,-1219.263427734375,-330.1109924316406,827.505615234375,-1219.263427734375,-330.1109924316406,827.5054931640625,-951.6314697265625,-325.7698059082031,835.0247192382812,-1219.263427734375,-330.1109924316406,827.5054931640625,-951.6314697265625,-325.7698059082031,835.0247192382812,-951.6314697265625,-330.1109924316406,827.505615234375,-1219.263427734375,-331.61871337890625,818.955078125,-1219.263427734375,-331.61871337890625,818.9550170898438,-951.6314697265625,-330.1109924316406,827.505615234375,-1219.263427734375,-331.61871337890625,818.9550170898438,-951.6314697265625,-330.1109924316406,827.5054931640625,-951.6314697265625,-331.61871337890625,818.955078125,-1219.263427734375,-330.1109924316406,810.4044799804688,-1219.263427734375,-330.1109924316406,810.4044799804688,-951.6314697265625,-331.61871337890625,818.955078125,-1219.263427734375,-330.1109924316406,810.4044799804688,-951.6314697265625,-331.61871337890625,818.9550170898438,-951.6314697265625,-330.1109924316406,810.4044799804688,-1219.263427734375,-325.7698059082031,802.8853759765625,-1219.263427734375,-325.7698059082031,802.8853149414062,-951.6314697265625,-330.1109924316406,810.4044799804688,-1219.263427734375,-325.7698059082031,802.8853149414062,-951.6314697265625,-330.1109924316406,810.4044799804688,-951.6314697265625,-325.7698059082031,802.8853759765625,-1219.263427734375,-319.11871337890625,797.3043823242188,-1219.263427734375,-319.11871337890625,797.3043823242188,-951.6314697265625,-325.7698059082031,802.8853759765625,-1219.263427734375,-319.11871337890625,797.3043823242188,-951.6314697265625,-325.7698059082031,802.8853149414062,-951.6314697265625,-319.11871337890625,797.3043823242188,-1219.263427734375,-310.95989990234375,794.3347778320312,-1219.263427734375,-310.95989990234375,794.3347778320312,-951.6314697265625,-319.11871337890625,797.3043823242188,-1219.263427734375,-310.95989990234375,794.3347778320312,-951.6314697265625,-319.11871337890625,797.3043823242188,-951.6314697265625,-310.95989990234375,794.3347778320312,-1219.263427734375,-302.2774963378906,794.3347778320312,-1219.263427734375,-302.2774963378906,794.3347778320312,-951.6314697265625,-310.95989990234375,794.3347778320312,-1219.263427734375,-302.2774963378906,794.3347778320312,-951.6314697265625,-310.95989990234375,794.3347778320312,-951.6314697265625,-302.2774963378906,794.3347778320312,-1219.263427734375,-294.11871337890625,797.3043823242188,-1219.263427734375,-294.11871337890625,797.3043823242188,-951.6314697265625,-302.2774963378906,794.3347778320312,-1219.263427734375,-294.11871337890625,797.3043823242188,-951.6314697265625,-302.2774963378906,794.3347778320312,-951.6314697265625,-294.11871337890625,797.3043823242188,-1219.263427734375,-287.46759033203125,802.8853759765625,-1219.263427734375,-287.46759033203125,802.8853149414062,-951.6314697265625,-294.11871337890625,797.3043823242188,-1219.263427734375,-287.46759033203125,802.8853149414062,-951.6314697265625,-294.11871337890625,797.3043823242188,-951.6314697265625,-287.46759033203125,802.8853759765625,-1219.263427734375,-283.1263122558594,810.4044799804688,-1219.263427734375,-283.1263122558594,810.4044799804688,-951.6314697265625,-287.46759033203125,802.8853759765625,-1219.263427734375,-283.1263122558594,810.4044799804688,-951.6314697265625,-287.46759033203125,802.8853149414062,-951.6314697265625,-283.1263122558594,810.4044799804688,-1219.263427734375,-281.61871337890625,818.955078125,-1219.263427734375,-281.61871337890625,818.9550170898438,-951.6314697265625,-283.1263122558594,810.4044799804688,-1219.263427734375,-281.61871337890625,818.9550170898438,-951.6314697265625,-283.1263122558594,810.4044799804688,-951.6314697265625,-281.61871337890625,818.9550170898438,-951.6314697265625,-283.1263122558594,827.5054931640625,-951.6314697265625,-283.1263122558594,827.5054931640625,-683.9995727539062,-281.61871337890625,818.9550170898438,-951.6314697265625,-283.1263122558594,827.5054931640625,-683.9995727539062,-281.61871337890625,818.9550170898438,-683.9995727539062,-283.1263122558594,827.5054931640625,-951.6314697265625,-287.4674987792969,835.0247192382812,-951.6314697265625,-287.4674987792969,835.0247192382812,-683.9995727539062,-283.1263122558594,827.5054931640625,-951.6314697265625,-287.4674987792969,835.0247192382812,-683.9995727539062,-283.1263122558594,827.5054931640625,-683.9995727539062,-287.4674987792969,835.0247192382812,-951.6314697265625,-294.11871337890625,840.605712890625,-951.6314697265625,-294.11871337890625,840.6055908203125,-683.9995727539062,-287.4674987792969,835.0247192382812,-951.6314697265625,-294.11871337890625,840.6055908203125,-683.9995727539062,-287.4674987792969,835.0247192382812,-683.9995727539062,-294.11871337890625,840.605712890625,-951.6314697265625,-302.27740478515625,843.5751953125,-951.6314697265625,-302.27740478515625,843.5750732421875,-683.9995727539062,-294.11871337890625,840.605712890625,-951.6314697265625,-302.27740478515625,843.5750732421875,-683.9995727539062,-294.11871337890625,840.6055908203125,-683.9995727539062,-302.27740478515625,843.5751953125,-951.6314697265625,-310.95989990234375,843.5751953125,-951.6314697265625,-310.95989990234375,843.5750732421875,-683.9995727539062,-302.27740478515625,843.5751953125,-951.6314697265625,-310.95989990234375,843.5750732421875,-683.9995727539062,-302.27740478515625,843.5750732421875,-683.9995727539062,-310.95989990234375,843.5751953125,-951.6314697265625,-319.11871337890625,840.605712890625,-951.6314697265625,-319.11871337890625,840.6055908203125,-683.9995727539062,-310.95989990234375,843.5751953125,-951.6314697265625,-319.11871337890625,840.6055908203125,-683.9995727539062,-310.95989990234375,843.5750732421875,-683.9995727539062,-319.11871337890625,840.605712890625,-951.6314697265625,-325.7698059082031,835.0247192382812,-951.6314697265625,-325.7698059082031,835.0247192382812,-683.9995727539062,-319.11871337890625,840.605712890625,-951.6314697265625,-325.7698059082031,835.0247192382812,-683.9995727539062,-319.11871337890625,840.6055908203125,-683.9995727539062,-325.7698059082031,835.0247192382812,-951.6314697265625,-330.1109924316406,827.5054931640625,-951.6314697265625,-330.1109924316406,827.5054931640625,-683.9995727539062,-325.7698059082031,835.0247192382812,-951.6314697265625,-330.1109924316406,827.5054931640625,-683.9995727539062,-325.7698059082031,835.0247192382812,-683.9995727539062,-330.1109924316406,827.5054931640625,-951.6314697265625,-331.61871337890625,818.9550170898438,-951.6314697265625,-331.61871337890625,818.9550170898438,-683.9995727539062,-330.1109924316406,827.5054931640625,-951.6314697265625,-331.61871337890625,818.9550170898438,-683.9995727539062,-330.1109924316406,827.5054931640625,-683.9995727539062,-331.61871337890625,818.9550170898438,-951.6314697265625,-330.1109924316406,810.4044799804688,-951.6314697265625,-330.1109924316406,810.4044799804688,-683.9995727539062,-331.61871337890625,818.9550170898438,-951.6314697265625,-330.1109924316406,810.4044799804688,-683.9995727539062,-331.61871337890625,818.9550170898438,-683.9995727539062,-330.1109924316406,810.4044799804688,-951.6314697265625,-325.7698059082031,802.8853149414062,-951.6314697265625,-325.7698059082031,802.8853149414062,-683.9995727539062,-330.1109924316406,810.4044799804688,-951.6314697265625,-325.7698059082031,802.8853149414062,-683.9995727539062,-330.1109924316406,810.4044799804688,-683.9995727539062,-325.7698059082031,802.8853149414062,-951.6314697265625,-319.11871337890625,797.3043823242188,-951.6314697265625,-319.11871337890625,797.3043212890625,-683.9995727539062,-325.7698059082031,802.8853149414062,-951.6314697265625,-319.11871337890625,797.3043212890625,-683.9995727539062,-325.7698059082031,802.8853149414062,-683.9995727539062,-319.11871337890625,797.3043823242188,-951.6314697265625,-310.95989990234375,794.3347778320312,-951.6314697265625,-310.95989990234375,794.3347778320312,-683.9995727539062,-319.11871337890625,797.3043823242188,-951.6314697265625,-310.95989990234375,794.3347778320312,-683.9995727539062,-319.11871337890625,797.3043212890625,-683.9995727539062,-310.95989990234375,794.3347778320312,-951.6314697265625,-302.2774963378906,794.3347778320312,-951.6314697265625,-302.2774963378906,794.3347778320312,-683.9995727539062,-310.95989990234375,794.3347778320312,-951.6314697265625,-302.2774963378906,794.3347778320312,-683.9995727539062,-310.95989990234375,794.3347778320312,-683.9995727539062,-302.2774963378906,794.3347778320312,-951.6314697265625,-294.11871337890625,797.3043823242188,-951.6314697265625,-294.11871337890625,797.3043212890625,-683.9995727539062,-302.2774963378906,794.3347778320312,-951.6314697265625,-294.11871337890625,797.3043212890625,-683.9995727539062,-302.2774963378906,794.3347778320312,-683.9995727539062,-294.11871337890625,797.3043823242188,-951.6314697265625,-287.46759033203125,802.8853149414062,-951.6314697265625,-287.46759033203125,802.8853149414062,-683.9995727539062,-294.11871337890625,797.3043823242188,-951.6314697265625,-287.46759033203125,802.8853149414062,-683.9995727539062,-294.11871337890625,797.3043212890625,-683.9995727539062,-287.46759033203125,802.8853149414062,-951.6314697265625,-283.1263122558594,810.4044799804688,-951.6314697265625,-283.1263122558594,810.4044189453125,-683.9995727539062,-287.46759033203125,802.8853149414062,-951.6314697265625,-283.1263122558594,810.4044189453125,-683.9995727539062,-287.46759033203125,802.8853149414062,-683.9995727539062,-283.1263122558594,810.4044799804688,-951.6314697265625,-281.61871337890625,818.9550170898438,-951.6314697265625,-281.61871337890625,818.9550170898438,-683.9995727539062,-283.1263122558594,810.4044799804688,-951.6314697265625,-281.61871337890625,818.9550170898438,-683.9995727539062,-283.1263122558594,810.4044189453125,-683.9995727539062,-281.61871337890625,818.9550170898438,-683.9995727539062,-283.1263122558594,827.5054931640625,-683.9995727539062,-283.1263122558594,827.50537109375,-416.3677062988281,-281.61871337890625,818.9550170898438,-683.9995727539062,-283.1263122558594,827.50537109375,-416.3677062988281,-281.61871337890625,818.9548950195312,-416.3677062988281,-283.1263122558594,827.5054931640625,-683.9995727539062,-287.4674987792969,835.0247192382812,-683.9995727539062,-287.4674987792969,835.0245971679688,-416.3677062988281,-283.1263122558594,827.5054931640625,-683.9995727539062,-287.4674987792969,835.0245971679688,-416.3677062988281,-283.1263122558594,827.50537109375,-416.3677062988281,-287.4674987792969,835.0247192382812,-683.9995727539062,-294.11871337890625,840.6055908203125,-683.9995727539062,-294.11871337890625,840.6055297851562,-416.3677062988281,-287.4674987792969,835.0247192382812,-683.9995727539062,-294.11871337890625,840.6055297851562,-416.3677062988281,-287.4674987792969,835.0245971679688,-416.3677062988281,-294.11871337890625,840.6055908203125,-683.9995727539062,-302.27740478515625,843.5750732421875,-683.9995727539062,-302.27740478515625,843.5750732421875,-416.3677062988281,-294.11871337890625,840.6055908203125,-683.9995727539062,-302.27740478515625,843.5750732421875,-416.3677062988281,-294.11871337890625,840.6055297851562,-416.3677062988281,-302.27740478515625,843.5750732421875,-683.9995727539062,-310.95989990234375,843.5750732421875,-683.9995727539062,-310.95989990234375,843.5750732421875,-416.3677062988281,-302.27740478515625,843.5750732421875,-683.9995727539062,-310.95989990234375,843.5750732421875,-416.3677062988281,-302.27740478515625,843.5750732421875,-416.3677062988281,-310.95989990234375,843.5750732421875,-683.9995727539062,-319.11871337890625,840.6055908203125,-683.9995727539062,-319.11871337890625,840.6055297851562,-416.3677062988281,-310.95989990234375,843.5750732421875,-683.9995727539062,-319.11871337890625,840.6055297851562,-416.3677062988281,-310.95989990234375,843.5750732421875,-416.3677062988281,-319.11871337890625,840.6055908203125,-683.9995727539062,-325.7698059082031,835.0247192382812,-683.9995727539062,-325.7698059082031,835.0245971679688,-416.3677062988281,-319.11871337890625,840.6055908203125,-683.9995727539062,-325.7698059082031,835.0245971679688,-416.3677062988281,-319.11871337890625,840.6055297851562,-416.3677062988281,-325.7698059082031,835.0247192382812,-683.9995727539062,-330.1109924316406,827.5054931640625,-683.9995727539062,-330.1109924316406,827.50537109375,-416.3677062988281,-325.7698059082031,835.0247192382812,-683.9995727539062,-330.1109924316406,827.50537109375,-416.3677062988281,-325.7698059082031,835.0245971679688,-416.3677062988281,-330.1109924316406,827.5054931640625,-683.9995727539062,-331.61871337890625,818.9550170898438,-683.9995727539062,-331.61871337890625,818.9548950195312,-416.3677062988281,-330.1109924316406,827.5054931640625,-683.9995727539062,-331.61871337890625,818.9548950195312,-416.3677062988281,-330.1109924316406,827.50537109375,-416.3677062988281,-331.61871337890625,818.9550170898438,-683.9995727539062,-330.1109924316406,810.4044799804688,-683.9995727539062,-330.1109924316406,810.4044189453125,-416.3677062988281,-331.61871337890625,818.9550170898438,-683.9995727539062,-330.1109924316406,810.4044189453125,-416.3677062988281,-331.61871337890625,818.9548950195312,-416.3677062988281,-330.1109924316406,810.4044799804688,-683.9995727539062,-325.7698059082031,802.8853149414062,-683.9995727539062,-325.7698059082031,802.8853149414062,-416.3677062988281,-330.1109924316406,810.4044799804688,-683.9995727539062,-325.7698059082031,802.8853149414062,-416.3677062988281,-330.1109924316406,810.4044189453125,-416.3677062988281,-325.7698059082031,802.8853149414062,-683.9995727539062,-319.11871337890625,797.3043212890625,-683.9995727539062,-319.11871337890625,797.3043212890625,-416.3677062988281,-325.7698059082031,802.8853149414062,-683.9995727539062,-319.11871337890625,797.3043212890625,-416.3677062988281,-325.7698059082031,802.8853149414062,-416.3677062988281,-319.11871337890625,797.3043212890625,-683.9995727539062,-310.95989990234375,794.3347778320312,-683.9995727539062,-310.95989990234375,794.334716796875,-416.3677062988281,-319.11871337890625,797.3043212890625,-683.9995727539062,-310.95989990234375,794.334716796875,-416.3677062988281,-319.11871337890625,797.3043212890625,-416.3677062988281,-310.95989990234375,794.3347778320312,-683.9995727539062,-302.2774963378906,794.3347778320312,-683.9995727539062,-302.2774963378906,794.334716796875,-416.3677062988281,-310.95989990234375,794.3347778320312,-683.9995727539062,-302.2774963378906,794.334716796875,-416.3677062988281,-310.95989990234375,794.334716796875,-416.3677062988281,-302.2774963378906,794.3347778320312,-683.9995727539062,-294.11871337890625,797.3043212890625,-683.9995727539062,-294.11871337890625,797.3043212890625,-416.3677062988281,-302.2774963378906,794.3347778320312,-683.9995727539062,-294.11871337890625,797.3043212890625,-416.3677062988281,-302.2774963378906,794.334716796875,-416.3677062988281,-294.11871337890625,797.3043212890625,-683.9995727539062,-287.46759033203125,802.8853149414062,-683.9995727539062,-287.46759033203125,802.8851928710938,-416.3677062988281,-294.11871337890625,797.3043212890625,-683.9995727539062,-287.46759033203125,802.8851928710938,-416.3677062988281,-294.11871337890625,797.3043212890625,-416.3677062988281,-287.46759033203125,802.8853149414062,-683.9995727539062,-283.1263122558594,810.4044189453125,-683.9995727539062,-283.1263122558594,810.4044189453125,-416.3677062988281,-287.46759033203125,802.8853149414062,-683.9995727539062,-283.1263122558594,810.4044189453125,-416.3677062988281,-287.46759033203125,802.8851928710938,-416.3677062988281,-283.1263122558594,810.4044189453125,-683.9995727539062,-281.61871337890625,818.9550170898438,-683.9995727539062,-281.61871337890625,818.9548950195312,-416.3677062988281,-283.1263122558594,810.4044189453125,-683.9995727539062,-281.61871337890625,818.9548950195312,-416.3677062988281,-283.1263122558594,810.4044189453125,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-283.1263122558594,810.4044189453125,-416.3677062988281,-281.61871337890625,818.9548950195312,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-281.61871337890625,818.9548950195312,-416.3677062988281,-283.1263122558594,827.50537109375,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-283.1263122558594,827.50537109375,-416.3677062988281,-287.4674987792969,835.0245971679688,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-287.4674987792969,835.0245971679688,-416.3677062988281,-294.11871337890625,840.6055297851562,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-294.11871337890625,840.6055297851562,-416.3677062988281,-302.27740478515625,843.5750732421875,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-302.27740478515625,843.5750732421875,-416.3677062988281,-310.95989990234375,843.5750732421875,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-310.95989990234375,843.5750732421875,-416.3677062988281,-319.11871337890625,840.6055297851562,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-319.11871337890625,840.6055297851562,-416.3677062988281,-325.7698059082031,835.0245971679688,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-325.7698059082031,835.0245971679688,-416.3677062988281,-330.1109924316406,827.50537109375,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-330.1109924316406,827.50537109375,-416.3677062988281,-331.61871337890625,818.9548950195312,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-331.61871337890625,818.9548950195312,-416.3677062988281,-330.1109924316406,810.4044189453125,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-330.1109924316406,810.4044189453125,-416.3677062988281,-325.7698059082031,802.8853149414062,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-325.7698059082031,802.8853149414062,-416.3677062988281,-319.11871337890625,797.3043212890625,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-319.11871337890625,797.3043212890625,-416.3677062988281,-310.95989990234375,794.334716796875,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-310.95989990234375,794.334716796875,-416.3677062988281,-302.2774963378906,794.334716796875,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-302.2774963378906,794.334716796875,-416.3677062988281,-294.11871337890625,797.3043212890625,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-294.11871337890625,797.3043212890625,-416.3677062988281,-287.46759033203125,802.8851928710938,-416.3677062988281,-306.61871337890625,818.9548950195312,-416.3677062988281,-287.46759033203125,802.8851928710938,-416.3677062988281,-283.1263122558594,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-306.61871337890625,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466589122084
| }
| }
| },
| {
| "uuid": "B2BB191F-C3CB-4D13-AB11-0BE6A4B3E9B7",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-206.6186981201172,818.955078125,-1754.5272216796875,-187.46749877929688,835.0247802734375,-1754.5272216796875,-183.1262969970703,827.505615234375,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-183.1262969970703,827.505615234375,-1754.5272216796875,-181.6186981201172,818.955078125,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-202.27749633789062,843.5753173828125,-1754.5272216796875,-194.1186981201172,840.6057739257812,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-194.1186981201172,840.6057739257812,-1754.5272216796875,-187.46749877929688,835.0247802734375,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-219.1186981201172,840.6057739257812,-1754.5272216796875,-210.95989990234375,843.5753173828125,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-210.95989990234375,843.5753173828125,-1754.5272216796875,-202.27749633789062,843.5753173828125,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-230.11099243164062,827.505615234375,-1754.5272216796875,-225.76980590820312,835.0247802734375,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-225.76980590820312,835.0247802734375,-1754.5272216796875,-219.1186981201172,840.6057739257812,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-230.11099243164062,810.4047241210938,-1754.5272216796875,-231.6186981201172,818.955078125,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-231.6186981201172,818.955078125,-1754.5272216796875,-230.11099243164062,827.505615234375,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-219.1186981201172,797.3045043945312,-1754.5272216796875,-225.76980590820312,802.8853759765625,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-225.76980590820312,802.8853759765625,-1754.5272216796875,-230.11099243164062,810.4047241210938,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-202.27749633789062,794.3350219726562,-1754.5272216796875,-210.95989990234375,794.3350219726562,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-210.95989990234375,794.3350219726562,-1754.5272216796875,-219.1186981201172,797.3045043945312,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-187.4676055908203,802.8853759765625,-1754.5272216796875,-194.1186981201172,797.3045043945312,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-194.1186981201172,797.3045043945312,-1754.5272216796875,-202.27749633789062,794.3350219726562,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-181.6186981201172,818.955078125,-1754.5272216796875,-183.1262969970703,810.4046020507812,-1754.5272216796875,-206.6186981201172,818.955078125,-1754.5272216796875,-183.1262969970703,810.4046020507812,-1754.5272216796875,-187.4676055908203,802.8853759765625,-1754.5272216796875,-181.6186981201172,818.955078125,-1754.5272216796875,-183.1262969970703,827.505615234375,-1754.5272216796875,-183.1262969970703,827.505615234375,-1486.895263671875,-181.6186981201172,818.955078125,-1754.5272216796875,-183.1262969970703,827.505615234375,-1486.895263671875,-181.6186981201172,818.955078125,-1486.895263671875,-183.1262969970703,827.505615234375,-1754.5272216796875,-187.46749877929688,835.0247802734375,-1754.5272216796875,-187.46749877929688,835.0247802734375,-1486.895263671875,-183.1262969970703,827.505615234375,-1754.5272216796875,-187.46749877929688,835.0247802734375,-1486.895263671875,-183.1262969970703,827.505615234375,-1486.895263671875,-187.46749877929688,835.0247802734375,-1754.5272216796875,-194.1186981201172,840.6057739257812,-1754.5272216796875,-194.1186981201172,840.605712890625,-1486.895263671875,-187.46749877929688,835.0247802734375,-1754.5272216796875,-194.1186981201172,840.605712890625,-1486.895263671875,-187.46749877929688,835.0247802734375,-1486.895263671875,-194.1186981201172,840.6057739257812,-1754.5272216796875,-202.27749633789062,843.5753173828125,-1754.5272216796875,-202.27749633789062,843.5753173828125,-1486.895263671875,-194.1186981201172,840.6057739257812,-1754.5272216796875,-202.27749633789062,843.5753173828125,-1486.895263671875,-194.1186981201172,840.605712890625,-1486.895263671875,-202.27749633789062,843.5753173828125,-1754.5272216796875,-210.95989990234375,843.5753173828125,-1754.5272216796875,-210.95989990234375,843.5753173828125,-1486.895263671875,-202.27749633789062,843.5753173828125,-1754.5272216796875,-210.95989990234375,843.5753173828125,-1486.895263671875,-202.27749633789062,843.5753173828125,-1486.895263671875,-210.95989990234375,843.5753173828125,-1754.5272216796875,-219.1186981201172,840.6057739257812,-1754.5272216796875,-219.1186981201172,840.605712890625,-1486.895263671875,-210.95989990234375,843.5753173828125,-1754.5272216796875,-219.1186981201172,840.605712890625,-1486.895263671875,-210.95989990234375,843.5753173828125,-1486.895263671875,-219.1186981201172,840.6057739257812,-1754.5272216796875,-225.76980590820312,835.0247802734375,-1754.5272216796875,-225.76980590820312,835.0247802734375,-1486.895263671875,-219.1186981201172,840.6057739257812,-1754.5272216796875,-225.76980590820312,835.0247802734375,-1486.895263671875,-219.1186981201172,840.605712890625,-1486.895263671875,-225.76980590820312,835.0247802734375,-1754.5272216796875,-230.11099243164062,827.505615234375,-1754.5272216796875,-230.11099243164062,827.505615234375,-1486.895263671875,-225.76980590820312,835.0247802734375,-1754.5272216796875,-230.11099243164062,827.505615234375,-1486.895263671875,-225.76980590820312,835.0247802734375,-1486.895263671875,-230.11099243164062,827.505615234375,-1754.5272216796875,-231.6186981201172,818.955078125,-1754.5272216796875,-231.6186981201172,818.955078125,-1486.895263671875,-230.11099243164062,827.505615234375,-1754.5272216796875,-231.6186981201172,818.955078125,-1486.895263671875,-230.11099243164062,827.505615234375,-1486.895263671875,-231.6186981201172,818.955078125,-1754.5272216796875,-230.11099243164062,810.4047241210938,-1754.5272216796875,-230.11099243164062,810.4046020507812,-1486.895263671875,-231.6186981201172,818.955078125,-1754.5272216796875,-230.11099243164062,810.4046020507812,-1486.895263671875,-231.6186981201172,818.955078125,-1486.895263671875,-230.11099243164062,810.4047241210938,-1754.5272216796875,-225.76980590820312,802.8853759765625,-1754.5272216796875,-225.76980590820312,802.8853759765625,-1486.895263671875,-230.11099243164062,810.4047241210938,-1754.5272216796875,-225.76980590820312,802.8853759765625,-1486.895263671875,-230.11099243164062,810.4046020507812,-1486.895263671875,-225.76980590820312,802.8853759765625,-1754.5272216796875,-219.1186981201172,797.3045043945312,-1754.5272216796875,-219.1186981201172,797.3043823242188,-1486.895263671875,-225.76980590820312,802.8853759765625,-1754.5272216796875,-219.1186981201172,797.3043823242188,-1486.895263671875,-225.76980590820312,802.8853759765625,-1486.895263671875,-219.1186981201172,797.3045043945312,-1754.5272216796875,-210.95989990234375,794.3350219726562,-1754.5272216796875,-210.95989990234375,794.3348999023438,-1486.895263671875,-219.1186981201172,797.3045043945312,-1754.5272216796875,-210.95989990234375,794.3348999023438,-1486.895263671875,-219.1186981201172,797.3043823242188,-1486.895263671875,-210.95989990234375,794.3350219726562,-1754.5272216796875,-202.27749633789062,794.3350219726562,-1754.5272216796875,-202.27749633789062,794.3348999023438,-1486.895263671875,-210.95989990234375,794.3350219726562,-1754.5272216796875,-202.27749633789062,794.3348999023438,-1486.895263671875,-210.95989990234375,794.3348999023438,-1486.895263671875,-202.27749633789062,794.3350219726562,-1754.5272216796875,-194.1186981201172,797.3045043945312,-1754.5272216796875,-194.1186981201172,797.3043823242188,-1486.895263671875,-202.27749633789062,794.3350219726562,-1754.5272216796875,-194.1186981201172,797.3043823242188,-1486.895263671875,-202.27749633789062,794.3348999023438,-1486.895263671875,-194.1186981201172,797.3045043945312,-1754.5272216796875,-187.4676055908203,802.8853759765625,-1754.5272216796875,-187.4676055908203,802.8853759765625,-1486.895263671875,-194.1186981201172,797.3045043945312,-1754.5272216796875,-187.4676055908203,802.8853759765625,-1486.895263671875,-194.1186981201172,797.3043823242188,-1486.895263671875,-187.4676055908203,802.8853759765625,-1754.5272216796875,-183.1262969970703,810.4046020507812,-1754.5272216796875,-183.1262969970703,810.4046020507812,-1486.895263671875,-187.4676055908203,802.8853759765625,-1754.5272216796875,-183.1262969970703,810.4046020507812,-1486.895263671875,-187.4676055908203,802.8853759765625,-1486.895263671875,-183.1262969970703,810.4046020507812,-1754.5272216796875,-181.6186981201172,818.955078125,-1754.5272216796875,-181.6186981201172,818.955078125,-1486.895263671875,-183.1262969970703,810.4046020507812,-1754.5272216796875,-181.6186981201172,818.955078125,-1486.895263671875,-183.1262969970703,810.4046020507812,-1486.895263671875,-181.6186981201172,818.955078125,-1486.895263671875,-183.1262969970703,827.505615234375,-1486.895263671875,-183.1262969970703,827.505615234375,-1219.263427734375,-181.6186981201172,818.955078125,-1486.895263671875,-183.1262969970703,827.505615234375,-1219.263427734375,-181.6186981201172,818.955078125,-1219.263427734375,-183.1262969970703,827.505615234375,-1486.895263671875,-187.46749877929688,835.0247802734375,-1486.895263671875,-187.46749877929688,835.0247192382812,-1219.263427734375,-183.1262969970703,827.505615234375,-1486.895263671875,-187.46749877929688,835.0247192382812,-1219.263427734375,-183.1262969970703,827.505615234375,-1219.263427734375,-187.46749877929688,835.0247802734375,-1486.895263671875,-194.1186981201172,840.605712890625,-1486.895263671875,-194.1186981201172,840.605712890625,-1219.263427734375,-187.46749877929688,835.0247802734375,-1486.895263671875,-194.1186981201172,840.605712890625,-1219.263427734375,-187.46749877929688,835.0247192382812,-1219.263427734375,-194.1186981201172,840.605712890625,-1486.895263671875,-202.27749633789062,843.5753173828125,-1486.895263671875,-202.27749633789062,843.5753173828125,-1219.263427734375,-194.1186981201172,840.605712890625,-1486.895263671875,-202.27749633789062,843.5753173828125,-1219.263427734375,-194.1186981201172,840.605712890625,-1219.263427734375,-202.27749633789062,843.5753173828125,-1486.895263671875,-210.95989990234375,843.5753173828125,-1486.895263671875,-210.95989990234375,843.5753173828125,-1219.263427734375,-202.27749633789062,843.5753173828125,-1486.895263671875,-210.95989990234375,843.5753173828125,-1219.263427734375,-202.27749633789062,843.5753173828125,-1219.263427734375,-210.95989990234375,843.5753173828125,-1486.895263671875,-219.1186981201172,840.605712890625,-1486.895263671875,-219.1186981201172,840.605712890625,-1219.263427734375,-210.95989990234375,843.5753173828125,-1486.895263671875,-219.1186981201172,840.605712890625,-1219.263427734375,-210.95989990234375,843.5753173828125,-1219.263427734375,-219.1186981201172,840.605712890625,-1486.895263671875,-225.76980590820312,835.0247802734375,-1486.895263671875,-225.76980590820312,835.0247192382812,-1219.263427734375,-219.1186981201172,840.605712890625,-1486.895263671875,-225.76980590820312,835.0247192382812,-1219.263427734375,-219.1186981201172,840.605712890625,-1219.263427734375,-225.76980590820312,835.0247802734375,-1486.895263671875,-230.11099243164062,827.505615234375,-1486.895263671875,-230.11099243164062,827.505615234375,-1219.263427734375,-225.76980590820312,835.0247802734375,-1486.895263671875,-230.11099243164062,827.505615234375,-1219.263427734375,-225.76980590820312,835.0247192382812,-1219.263427734375,-230.11099243164062,827.505615234375,-1486.895263671875,-231.6186981201172,818.955078125,-1486.895263671875,-231.6186981201172,818.955078125,-1219.263427734375,-230.11099243164062,827.505615234375,-1486.895263671875,-231.6186981201172,818.955078125,-1219.263427734375,-230.11099243164062,827.505615234375,-1219.263427734375,-231.6186981201172,818.955078125,-1486.895263671875,-230.11099243164062,810.4046020507812,-1486.895263671875,-230.11099243164062,810.4044799804688,-1219.263427734375,-231.6186981201172,818.955078125,-1486.895263671875,-230.11099243164062,810.4044799804688,-1219.263427734375,-231.6186981201172,818.955078125,-1219.263427734375,-230.11099243164062,810.4046020507812,-1486.895263671875,-225.76980590820312,802.8853759765625,-1486.895263671875,-225.76980590820312,802.8853759765625,-1219.263427734375,-230.11099243164062,810.4046020507812,-1486.895263671875,-225.76980590820312,802.8853759765625,-1219.263427734375,-230.11099243164062,810.4044799804688,-1219.263427734375,-225.76980590820312,802.8853759765625,-1486.895263671875,-219.1186981201172,797.3043823242188,-1486.895263671875,-219.1186981201172,797.3043823242188,-1219.263427734375,-225.76980590820312,802.8853759765625,-1486.895263671875,-219.1186981201172,797.3043823242188,-1219.263427734375,-225.76980590820312,802.8853759765625,-1219.263427734375,-219.1186981201172,797.3043823242188,-1486.895263671875,-210.95989990234375,794.3348999023438,-1486.895263671875,-210.95989990234375,794.3347778320312,-1219.263427734375,-219.1186981201172,797.3043823242188,-1486.895263671875,-210.95989990234375,794.3347778320312,-1219.263427734375,-219.1186981201172,797.3043823242188,-1219.263427734375,-210.95989990234375,794.3348999023438,-1486.895263671875,-202.27749633789062,794.3348999023438,-1486.895263671875,-202.27749633789062,794.3347778320312,-1219.263427734375,-210.95989990234375,794.3348999023438,-1486.895263671875,-202.27749633789062,794.3347778320312,-1219.263427734375,-210.95989990234375,794.3347778320312,-1219.263427734375,-202.27749633789062,794.3348999023438,-1486.895263671875,-194.1186981201172,797.3043823242188,-1486.895263671875,-194.1186981201172,797.3043823242188,-1219.263427734375,-202.27749633789062,794.3348999023438,-1486.895263671875,-194.1186981201172,797.3043823242188,-1219.263427734375,-202.27749633789062,794.3347778320312,-1219.263427734375,-194.1186981201172,797.3043823242188,-1486.895263671875,-187.4676055908203,802.8853759765625,-1486.895263671875,-187.4676055908203,802.8853759765625,-1219.263427734375,-194.1186981201172,797.3043823242188,-1486.895263671875,-187.4676055908203,802.8853759765625,-1219.263427734375,-194.1186981201172,797.3043823242188,-1219.263427734375,-187.4676055908203,802.8853759765625,-1486.895263671875,-183.1262969970703,810.4046020507812,-1486.895263671875,-183.1262969970703,810.4044799804688,-1219.263427734375,-187.4676055908203,802.8853759765625,-1486.895263671875,-183.1262969970703,810.4044799804688,-1219.263427734375,-187.4676055908203,802.8853759765625,-1219.263427734375,-183.1262969970703,810.4046020507812,-1486.895263671875,-181.6186981201172,818.955078125,-1486.895263671875,-181.6186981201172,818.955078125,-1219.263427734375,-183.1262969970703,810.4046020507812,-1486.895263671875,-181.6186981201172,818.955078125,-1219.263427734375,-183.1262969970703,810.4044799804688,-1219.263427734375,-181.6186981201172,818.955078125,-1219.263427734375,-183.1262969970703,827.505615234375,-1219.263427734375,-183.1262969970703,827.5054931640625,-951.6314697265625,-181.6186981201172,818.955078125,-1219.263427734375,-183.1262969970703,827.5054931640625,-951.6314697265625,-181.6186981201172,818.9550170898438,-951.6314697265625,-183.1262969970703,827.505615234375,-1219.263427734375,-187.46749877929688,835.0247192382812,-1219.263427734375,-187.46749877929688,835.0247192382812,-951.6314697265625,-183.1262969970703,827.505615234375,-1219.263427734375,-187.46749877929688,835.0247192382812,-951.6314697265625,-183.1262969970703,827.5054931640625,-951.6314697265625,-187.46749877929688,835.0247192382812,-1219.263427734375,-194.1186981201172,840.605712890625,-1219.263427734375,-194.1186981201172,840.605712890625,-951.6314697265625,-187.46749877929688,835.0247192382812,-1219.263427734375,-194.1186981201172,840.605712890625,-951.6314697265625,-187.46749877929688,835.0247192382812,-951.6314697265625,-194.1186981201172,840.605712890625,-1219.263427734375,-202.27749633789062,843.5753173828125,-1219.263427734375,-202.27749633789062,843.5751953125,-951.6314697265625,-194.1186981201172,840.605712890625,-1219.263427734375,-202.27749633789062,843.5751953125,-951.6314697265625,-194.1186981201172,840.605712890625,-951.6314697265625,-202.27749633789062,843.5753173828125,-1219.263427734375,-210.95989990234375,843.5753173828125,-1219.263427734375,-210.95989990234375,843.5751953125,-951.6314697265625,-202.27749633789062,843.5753173828125,-1219.263427734375,-210.95989990234375,843.5751953125,-951.6314697265625,-202.27749633789062,843.5751953125,-951.6314697265625,-210.95989990234375,843.5753173828125,-1219.263427734375,-219.1186981201172,840.605712890625,-1219.263427734375,-219.1186981201172,840.605712890625,-951.6314697265625,-210.95989990234375,843.5753173828125,-1219.263427734375,-219.1186981201172,840.605712890625,-951.6314697265625,-210.95989990234375,843.5751953125,-951.6314697265625,-219.1186981201172,840.605712890625,-1219.263427734375,-225.76980590820312,835.0247192382812,-1219.263427734375,-225.76980590820312,835.0247192382812,-951.6314697265625,-219.1186981201172,840.605712890625,-1219.263427734375,-225.76980590820312,835.0247192382812,-951.6314697265625,-219.1186981201172,840.605712890625,-951.6314697265625,-225.76980590820312,835.0247192382812,-1219.263427734375,-230.11099243164062,827.505615234375,-1219.263427734375,-230.11099243164062,827.5054931640625,-951.6314697265625,-225.76980590820312,835.0247192382812,-1219.263427734375,-230.11099243164062,827.5054931640625,-951.6314697265625,-225.76980590820312,835.0247192382812,-951.6314697265625,-230.11099243164062,827.505615234375,-1219.263427734375,-231.6186981201172,818.955078125,-1219.263427734375,-231.6186981201172,818.9550170898438,-951.6314697265625,-230.11099243164062,827.505615234375,-1219.263427734375,-231.6186981201172,818.9550170898438,-951.6314697265625,-230.11099243164062,827.5054931640625,-951.6314697265625,-231.6186981201172,818.955078125,-1219.263427734375,-230.11099243164062,810.4044799804688,-1219.263427734375,-230.11099243164062,810.4044799804688,-951.6314697265625,-231.6186981201172,818.955078125,-1219.263427734375,-230.11099243164062,810.4044799804688,-951.6314697265625,-231.6186981201172,818.9550170898438,-951.6314697265625,-230.11099243164062,810.4044799804688,-1219.263427734375,-225.76980590820312,802.8853759765625,-1219.263427734375,-225.76980590820312,802.8853149414062,-951.6314697265625,-230.11099243164062,810.4044799804688,-1219.263427734375,-225.76980590820312,802.8853149414062,-951.6314697265625,-230.11099243164062,810.4044799804688,-951.6314697265625,-225.76980590820312,802.8853759765625,-1219.263427734375,-219.1186981201172,797.3043823242188,-1219.263427734375,-219.1186981201172,797.3043823242188,-951.6314697265625,-225.76980590820312,802.8853759765625,-1219.263427734375,-219.1186981201172,797.3043823242188,-951.6314697265625,-225.76980590820312,802.8853149414062,-951.6314697265625,-219.1186981201172,797.3043823242188,-1219.263427734375,-210.95989990234375,794.3347778320312,-1219.263427734375,-210.95989990234375,794.3347778320312,-951.6314697265625,-219.1186981201172,797.3043823242188,-1219.263427734375,-210.95989990234375,794.3347778320312,-951.6314697265625,-219.1186981201172,797.3043823242188,-951.6314697265625,-210.95989990234375,794.3347778320312,-1219.263427734375,-202.27749633789062,794.3347778320312,-1219.263427734375,-202.27749633789062,794.3347778320312,-951.6314697265625,-210.95989990234375,794.3347778320312,-1219.263427734375,-202.27749633789062,794.3347778320312,-951.6314697265625,-210.95989990234375,794.3347778320312,-951.6314697265625,-202.27749633789062,794.3347778320312,-1219.263427734375,-194.1186981201172,797.3043823242188,-1219.263427734375,-194.1186981201172,797.3043823242188,-951.6314697265625,-202.27749633789062,794.3347778320312,-1219.263427734375,-194.1186981201172,797.3043823242188,-951.6314697265625,-202.27749633789062,794.3347778320312,-951.6314697265625,-194.1186981201172,797.3043823242188,-1219.263427734375,-187.4676055908203,802.8853759765625,-1219.263427734375,-187.4676055908203,802.8853149414062,-951.6314697265625,-194.1186981201172,797.3043823242188,-1219.263427734375,-187.4676055908203,802.8853149414062,-951.6314697265625,-194.1186981201172,797.3043823242188,-951.6314697265625,-187.4676055908203,802.8853759765625,-1219.263427734375,-183.1262969970703,810.4044799804688,-1219.263427734375,-183.1262969970703,810.4044799804688,-951.6314697265625,-187.4676055908203,802.8853759765625,-1219.263427734375,-183.1262969970703,810.4044799804688,-951.6314697265625,-187.4676055908203,802.8853149414062,-951.6314697265625,-183.1262969970703,810.4044799804688,-1219.263427734375,-181.6186981201172,818.955078125,-1219.263427734375,-181.6186981201172,818.9550170898438,-951.6314697265625,-183.1262969970703,810.4044799804688,-1219.263427734375,-181.6186981201172,818.9550170898438,-951.6314697265625,-183.1262969970703,810.4044799804688,-951.6314697265625,-181.6186981201172,818.9550170898438,-951.6314697265625,-183.1262969970703,827.5054931640625,-951.6314697265625,-183.1262969970703,827.5054931640625,-683.9995727539062,-181.6186981201172,818.9550170898438,-951.6314697265625,-183.1262969970703,827.5054931640625,-683.9995727539062,-181.6186981201172,818.9550170898438,-683.9995727539062,-183.1262969970703,827.5054931640625,-951.6314697265625,-187.46749877929688,835.0247192382812,-951.6314697265625,-187.46749877929688,835.0247192382812,-683.9995727539062,-183.1262969970703,827.5054931640625,-951.6314697265625,-187.46749877929688,835.0247192382812,-683.9995727539062,-183.1262969970703,827.5054931640625,-683.9995727539062,-187.46749877929688,835.0247192382812,-951.6314697265625,-194.1186981201172,840.605712890625,-951.6314697265625,-194.1186981201172,840.6055908203125,-683.9995727539062,-187.46749877929688,835.0247192382812,-951.6314697265625,-194.1186981201172,840.6055908203125,-683.9995727539062,-187.46749877929688,835.0247192382812,-683.9995727539062,-194.1186981201172,840.605712890625,-951.6314697265625,-202.27749633789062,843.5751953125,-951.6314697265625,-202.27749633789062,843.5750732421875,-683.9995727539062,-194.1186981201172,840.605712890625,-951.6314697265625,-202.27749633789062,843.5750732421875,-683.9995727539062,-194.1186981201172,840.6055908203125,-683.9995727539062,-202.27749633789062,843.5751953125,-951.6314697265625,-210.95989990234375,843.5751953125,-951.6314697265625,-210.95989990234375,843.5750732421875,-683.9995727539062,-202.27749633789062,843.5751953125,-951.6314697265625,-210.95989990234375,843.5750732421875,-683.9995727539062,-202.27749633789062,843.5750732421875,-683.9995727539062,-210.95989990234375,843.5751953125,-951.6314697265625,-219.1186981201172,840.605712890625,-951.6314697265625,-219.1186981201172,840.6055908203125,-683.9995727539062,-210.95989990234375,843.5751953125,-951.6314697265625,-219.1186981201172,840.6055908203125,-683.9995727539062,-210.95989990234375,843.5750732421875,-683.9995727539062,-219.1186981201172,840.605712890625,-951.6314697265625,-225.76980590820312,835.0247192382812,-951.6314697265625,-225.76980590820312,835.0247192382812,-683.9995727539062,-219.1186981201172,840.605712890625,-951.6314697265625,-225.76980590820312,835.0247192382812,-683.9995727539062,-219.1186981201172,840.6055908203125,-683.9995727539062,-225.76980590820312,835.0247192382812,-951.6314697265625,-230.11099243164062,827.5054931640625,-951.6314697265625,-230.11099243164062,827.5054931640625,-683.9995727539062,-225.76980590820312,835.0247192382812,-951.6314697265625,-230.11099243164062,827.5054931640625,-683.9995727539062,-225.76980590820312,835.0247192382812,-683.9995727539062,-230.11099243164062,827.5054931640625,-951.6314697265625,-231.6186981201172,818.9550170898438,-951.6314697265625,-231.6186981201172,818.9550170898438,-683.9995727539062,-230.11099243164062,827.5054931640625,-951.6314697265625,-231.6186981201172,818.9550170898438,-683.9995727539062,-230.11099243164062,827.5054931640625,-683.9995727539062,-231.6186981201172,818.9550170898438,-951.6314697265625,-230.11099243164062,810.4044799804688,-951.6314697265625,-230.11099243164062,810.4044799804688,-683.9995727539062,-231.6186981201172,818.9550170898438,-951.6314697265625,-230.11099243164062,810.4044799804688,-683.9995727539062,-231.6186981201172,818.9550170898438,-683.9995727539062,-230.11099243164062,810.4044799804688,-951.6314697265625,-225.76980590820312,802.8853149414062,-951.6314697265625,-225.76980590820312,802.8853149414062,-683.9995727539062,-230.11099243164062,810.4044799804688,-951.6314697265625,-225.76980590820312,802.8853149414062,-683.9995727539062,-230.11099243164062,810.4044799804688,-683.9995727539062,-225.76980590820312,802.8853149414062,-951.6314697265625,-219.1186981201172,797.3043823242188,-951.6314697265625,-219.1186981201172,797.3043212890625,-683.9995727539062,-225.76980590820312,802.8853149414062,-951.6314697265625,-219.1186981201172,797.3043212890625,-683.9995727539062,-225.76980590820312,802.8853149414062,-683.9995727539062,-219.1186981201172,797.3043823242188,-951.6314697265625,-210.95989990234375,794.3347778320312,-951.6314697265625,-210.95989990234375,794.3347778320312,-683.9995727539062,-219.1186981201172,797.3043823242188,-951.6314697265625,-210.95989990234375,794.3347778320312,-683.9995727539062,-219.1186981201172,797.3043212890625,-683.9995727539062,-210.95989990234375,794.3347778320312,-951.6314697265625,-202.27749633789062,794.3347778320312,-951.6314697265625,-202.27749633789062,794.3347778320312,-683.9995727539062,-210.95989990234375,794.3347778320312,-951.6314697265625,-202.27749633789062,794.3347778320312,-683.9995727539062,-210.95989990234375,794.3347778320312,-683.9995727539062,-202.27749633789062,794.3347778320312,-951.6314697265625,-194.1186981201172,797.3043823242188,-951.6314697265625,-194.1186981201172,797.3043212890625,-683.9995727539062,-202.27749633789062,794.3347778320312,-951.6314697265625,-194.1186981201172,797.3043212890625,-683.9995727539062,-202.27749633789062,794.3347778320312,-683.9995727539062,-194.1186981201172,797.3043823242188,-951.6314697265625,-187.4676055908203,802.8853149414062,-951.6314697265625,-187.4676055908203,802.8853149414062,-683.9995727539062,-194.1186981201172,797.3043823242188,-951.6314697265625,-187.4676055908203,802.8853149414062,-683.9995727539062,-194.1186981201172,797.3043212890625,-683.9995727539062,-187.4676055908203,802.8853149414062,-951.6314697265625,-183.1262969970703,810.4044799804688,-951.6314697265625,-183.1262969970703,810.4044189453125,-683.9995727539062,-187.4676055908203,802.8853149414062,-951.6314697265625,-183.1262969970703,810.4044189453125,-683.9995727539062,-187.4676055908203,802.8853149414062,-683.9995727539062,-183.1262969970703,810.4044799804688,-951.6314697265625,-181.6186981201172,818.9550170898438,-951.6314697265625,-181.6186981201172,818.9550170898438,-683.9995727539062,-183.1262969970703,810.4044799804688,-951.6314697265625,-181.6186981201172,818.9550170898438,-683.9995727539062,-183.1262969970703,810.4044189453125,-683.9995727539062,-181.6186981201172,818.9550170898438,-683.9995727539062,-183.1262969970703,827.5054931640625,-683.9995727539062,-183.1262969970703,827.50537109375,-416.3677062988281,-181.6186981201172,818.9550170898438,-683.9995727539062,-183.1262969970703,827.50537109375,-416.3677062988281,-181.6186981201172,818.9548950195312,-416.3677062988281,-183.1262969970703,827.5054931640625,-683.9995727539062,-187.46749877929688,835.0247192382812,-683.9995727539062,-187.46749877929688,835.0245971679688,-416.3677062988281,-183.1262969970703,827.5054931640625,-683.9995727539062,-187.46749877929688,835.0245971679688,-416.3677062988281,-183.1262969970703,827.50537109375,-416.3677062988281,-187.46749877929688,835.0247192382812,-683.9995727539062,-194.1186981201172,840.6055908203125,-683.9995727539062,-194.1186981201172,840.6055297851562,-416.3677062988281,-187.46749877929688,835.0247192382812,-683.9995727539062,-194.1186981201172,840.6055297851562,-416.3677062988281,-187.46749877929688,835.0245971679688,-416.3677062988281,-194.1186981201172,840.6055908203125,-683.9995727539062,-202.27749633789062,843.5750732421875,-683.9995727539062,-202.27749633789062,843.5750732421875,-416.3677062988281,-194.1186981201172,840.6055908203125,-683.9995727539062,-202.27749633789062,843.5750732421875,-416.3677062988281,-194.1186981201172,840.6055297851562,-416.3677062988281,-202.27749633789062,843.5750732421875,-683.9995727539062,-210.95989990234375,843.5750732421875,-683.9995727539062,-210.95989990234375,843.5750732421875,-416.3677062988281,-202.27749633789062,843.5750732421875,-683.9995727539062,-210.95989990234375,843.5750732421875,-416.3677062988281,-202.27749633789062,843.5750732421875,-416.3677062988281,-210.95989990234375,843.5750732421875,-683.9995727539062,-219.1186981201172,840.6055908203125,-683.9995727539062,-219.1186981201172,840.6055297851562,-416.3677062988281,-210.95989990234375,843.5750732421875,-683.9995727539062,-219.1186981201172,840.6055297851562,-416.3677062988281,-210.95989990234375,843.5750732421875,-416.3677062988281,-219.1186981201172,840.6055908203125,-683.9995727539062,-225.76980590820312,835.0247192382812,-683.9995727539062,-225.76980590820312,835.0245971679688,-416.3677062988281,-219.1186981201172,840.6055908203125,-683.9995727539062,-225.76980590820312,835.0245971679688,-416.3677062988281,-219.1186981201172,840.6055297851562,-416.3677062988281,-225.76980590820312,835.0247192382812,-683.9995727539062,-230.11099243164062,827.5054931640625,-683.9995727539062,-230.11099243164062,827.50537109375,-416.3677062988281,-225.76980590820312,835.0247192382812,-683.9995727539062,-230.11099243164062,827.50537109375,-416.3677062988281,-225.76980590820312,835.0245971679688,-416.3677062988281,-230.11099243164062,827.5054931640625,-683.9995727539062,-231.6186981201172,818.9550170898438,-683.9995727539062,-231.6186981201172,818.9548950195312,-416.3677062988281,-230.11099243164062,827.5054931640625,-683.9995727539062,-231.6186981201172,818.9548950195312,-416.3677062988281,-230.11099243164062,827.50537109375,-416.3677062988281,-231.6186981201172,818.9550170898438,-683.9995727539062,-230.11099243164062,810.4044799804688,-683.9995727539062,-230.11099243164062,810.4044189453125,-416.3677062988281,-231.6186981201172,818.9550170898438,-683.9995727539062,-230.11099243164062,810.4044189453125,-416.3677062988281,-231.6186981201172,818.9548950195312,-416.3677062988281,-230.11099243164062,810.4044799804688,-683.9995727539062,-225.76980590820312,802.8853149414062,-683.9995727539062,-225.76980590820312,802.8853149414062,-416.3677062988281,-230.11099243164062,810.4044799804688,-683.9995727539062,-225.76980590820312,802.8853149414062,-416.3677062988281,-230.11099243164062,810.4044189453125,-416.3677062988281,-225.76980590820312,802.8853149414062,-683.9995727539062,-219.1186981201172,797.3043212890625,-683.9995727539062,-219.1186981201172,797.3043212890625,-416.3677062988281,-225.76980590820312,802.8853149414062,-683.9995727539062,-219.1186981201172,797.3043212890625,-416.3677062988281,-225.76980590820312,802.8853149414062,-416.3677062988281,-219.1186981201172,797.3043212890625,-683.9995727539062,-210.95989990234375,794.3347778320312,-683.9995727539062,-210.95989990234375,794.334716796875,-416.3677062988281,-219.1186981201172,797.3043212890625,-683.9995727539062,-210.95989990234375,794.334716796875,-416.3677062988281,-219.1186981201172,797.3043212890625,-416.3677062988281,-210.95989990234375,794.3347778320312,-683.9995727539062,-202.27749633789062,794.3347778320312,-683.9995727539062,-202.27749633789062,794.334716796875,-416.3677062988281,-210.95989990234375,794.3347778320312,-683.9995727539062,-202.27749633789062,794.334716796875,-416.3677062988281,-210.95989990234375,794.334716796875,-416.3677062988281,-202.27749633789062,794.3347778320312,-683.9995727539062,-194.1186981201172,797.3043212890625,-683.9995727539062,-194.1186981201172,797.3043212890625,-416.3677062988281,-202.27749633789062,794.3347778320312,-683.9995727539062,-194.1186981201172,797.3043212890625,-416.3677062988281,-202.27749633789062,794.334716796875,-416.3677062988281,-194.1186981201172,797.3043212890625,-683.9995727539062,-187.4676055908203,802.8853149414062,-683.9995727539062,-187.4676055908203,802.8851928710938,-416.3677062988281,-194.1186981201172,797.3043212890625,-683.9995727539062,-187.4676055908203,802.8851928710938,-416.3677062988281,-194.1186981201172,797.3043212890625,-416.3677062988281,-187.4676055908203,802.8853149414062,-683.9995727539062,-183.1262969970703,810.4044189453125,-683.9995727539062,-183.1262969970703,810.4044189453125,-416.3677062988281,-187.4676055908203,802.8853149414062,-683.9995727539062,-183.1262969970703,810.4044189453125,-416.3677062988281,-187.4676055908203,802.8851928710938,-416.3677062988281,-183.1262969970703,810.4044189453125,-683.9995727539062,-181.6186981201172,818.9550170898438,-683.9995727539062,-181.6186981201172,818.9548950195312,-416.3677062988281,-183.1262969970703,810.4044189453125,-683.9995727539062,-181.6186981201172,818.9548950195312,-416.3677062988281,-183.1262969970703,810.4044189453125,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-183.1262969970703,810.4044189453125,-416.3677062988281,-181.6186981201172,818.9548950195312,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-181.6186981201172,818.9548950195312,-416.3677062988281,-183.1262969970703,827.50537109375,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-183.1262969970703,827.50537109375,-416.3677062988281,-187.46749877929688,835.0245971679688,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-187.46749877929688,835.0245971679688,-416.3677062988281,-194.1186981201172,840.6055297851562,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-194.1186981201172,840.6055297851562,-416.3677062988281,-202.27749633789062,843.5750732421875,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-202.27749633789062,843.5750732421875,-416.3677062988281,-210.95989990234375,843.5750732421875,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-210.95989990234375,843.5750732421875,-416.3677062988281,-219.1186981201172,840.6055297851562,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-219.1186981201172,840.6055297851562,-416.3677062988281,-225.76980590820312,835.0245971679688,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-225.76980590820312,835.0245971679688,-416.3677062988281,-230.11099243164062,827.50537109375,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-230.11099243164062,827.50537109375,-416.3677062988281,-231.6186981201172,818.9548950195312,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-231.6186981201172,818.9548950195312,-416.3677062988281,-230.11099243164062,810.4044189453125,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-230.11099243164062,810.4044189453125,-416.3677062988281,-225.76980590820312,802.8853149414062,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-225.76980590820312,802.8853149414062,-416.3677062988281,-219.1186981201172,797.3043212890625,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-219.1186981201172,797.3043212890625,-416.3677062988281,-210.95989990234375,794.334716796875,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-210.95989990234375,794.334716796875,-416.3677062988281,-202.27749633789062,794.334716796875,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-202.27749633789062,794.334716796875,-416.3677062988281,-194.1186981201172,797.3043212890625,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-194.1186981201172,797.3043212890625,-416.3677062988281,-187.4676055908203,802.8851928710938,-416.3677062988281,-206.6186981201172,818.9548950195312,-416.3677062988281,-187.4676055908203,802.8851928710938,-416.3677062988281,-183.1262969970703,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-206.6186981201172,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466584757576
| }
| }
| },
| {
| "uuid": "9189B744-88C0-469A-B6D4-48AEACA1FC63",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-106.61869812011719,818.955078125,-1754.5272216796875,-87.46749877929688,835.0247802734375,-1754.5272216796875,-83.12629699707031,827.505615234375,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-83.12629699707031,827.505615234375,-1754.5272216796875,-81.61869812011719,818.955078125,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-102.27749633789062,843.5753173828125,-1754.5272216796875,-94.11869812011719,840.6057739257812,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-94.11869812011719,840.6057739257812,-1754.5272216796875,-87.46749877929688,835.0247802734375,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-119.11869812011719,840.6057739257812,-1754.5272216796875,-110.95989990234375,843.5753173828125,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-110.95989990234375,843.5753173828125,-1754.5272216796875,-102.27749633789062,843.5753173828125,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-130.11099243164062,827.505615234375,-1754.5272216796875,-125.7697982788086,835.0247802734375,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-125.7697982788086,835.0247802734375,-1754.5272216796875,-119.11869812011719,840.6057739257812,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-130.11099243164062,810.4047241210938,-1754.5272216796875,-131.6186981201172,818.955078125,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-131.6186981201172,818.955078125,-1754.5272216796875,-130.11099243164062,827.505615234375,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-119.11869812011719,797.3045043945312,-1754.5272216796875,-125.7697982788086,802.8853759765625,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-125.7697982788086,802.8853759765625,-1754.5272216796875,-130.11099243164062,810.4047241210938,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-102.27749633789062,794.3350219726562,-1754.5272216796875,-110.95989990234375,794.3350219726562,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-110.95989990234375,794.3350219726562,-1754.5272216796875,-119.11869812011719,797.3045043945312,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-87.46759796142578,802.8853759765625,-1754.5272216796875,-94.11869812011719,797.3045043945312,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-94.11869812011719,797.3045043945312,-1754.5272216796875,-102.27749633789062,794.3350219726562,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-81.61869812011719,818.955078125,-1754.5272216796875,-83.12629699707031,810.4046020507812,-1754.5272216796875,-106.61869812011719,818.955078125,-1754.5272216796875,-83.12629699707031,810.4046020507812,-1754.5272216796875,-87.46759796142578,802.8853759765625,-1754.5272216796875,-81.61869812011719,818.955078125,-1754.5272216796875,-83.12629699707031,827.505615234375,-1754.5272216796875,-83.12629699707031,827.505615234375,-1486.895263671875,-81.61869812011719,818.955078125,-1754.5272216796875,-83.12629699707031,827.505615234375,-1486.895263671875,-81.61869812011719,818.955078125,-1486.895263671875,-83.12629699707031,827.505615234375,-1754.5272216796875,-87.46749877929688,835.0247802734375,-1754.5272216796875,-87.46749877929688,835.0247802734375,-1486.895263671875,-83.12629699707031,827.505615234375,-1754.5272216796875,-87.46749877929688,835.0247802734375,-1486.895263671875,-83.12629699707031,827.505615234375,-1486.895263671875,-87.46749877929688,835.0247802734375,-1754.5272216796875,-94.11869812011719,840.6057739257812,-1754.5272216796875,-94.11869812011719,840.605712890625,-1486.895263671875,-87.46749877929688,835.0247802734375,-1754.5272216796875,-94.11869812011719,840.605712890625,-1486.895263671875,-87.46749877929688,835.0247802734375,-1486.895263671875,-94.11869812011719,840.6057739257812,-1754.5272216796875,-102.27749633789062,843.5753173828125,-1754.5272216796875,-102.27749633789062,843.5753173828125,-1486.895263671875,-94.11869812011719,840.6057739257812,-1754.5272216796875,-102.27749633789062,843.5753173828125,-1486.895263671875,-94.11869812011719,840.605712890625,-1486.895263671875,-102.27749633789062,843.5753173828125,-1754.5272216796875,-110.95989990234375,843.5753173828125,-1754.5272216796875,-110.95989990234375,843.5753173828125,-1486.895263671875,-102.27749633789062,843.5753173828125,-1754.5272216796875,-110.95989990234375,843.5753173828125,-1486.895263671875,-102.27749633789062,843.5753173828125,-1486.895263671875,-110.95989990234375,843.5753173828125,-1754.5272216796875,-119.11869812011719,840.6057739257812,-1754.5272216796875,-119.11869812011719,840.605712890625,-1486.895263671875,-110.95989990234375,843.5753173828125,-1754.5272216796875,-119.11869812011719,840.605712890625,-1486.895263671875,-110.95989990234375,843.5753173828125,-1486.895263671875,-119.11869812011719,840.6057739257812,-1754.5272216796875,-125.7697982788086,835.0247802734375,-1754.5272216796875,-125.7697982788086,835.0247802734375,-1486.895263671875,-119.11869812011719,840.6057739257812,-1754.5272216796875,-125.7697982788086,835.0247802734375,-1486.895263671875,-119.11869812011719,840.605712890625,-1486.895263671875,-125.7697982788086,835.0247802734375,-1754.5272216796875,-130.11099243164062,827.505615234375,-1754.5272216796875,-130.11099243164062,827.505615234375,-1486.895263671875,-125.7697982788086,835.0247802734375,-1754.5272216796875,-130.11099243164062,827.505615234375,-1486.895263671875,-125.7697982788086,835.0247802734375,-1486.895263671875,-130.11099243164062,827.505615234375,-1754.5272216796875,-131.6186981201172,818.955078125,-1754.5272216796875,-131.6186981201172,818.955078125,-1486.895263671875,-130.11099243164062,827.505615234375,-1754.5272216796875,-131.6186981201172,818.955078125,-1486.895263671875,-130.11099243164062,827.505615234375,-1486.895263671875,-131.6186981201172,818.955078125,-1754.5272216796875,-130.11099243164062,810.4047241210938,-1754.5272216796875,-130.11099243164062,810.4046020507812,-1486.895263671875,-131.6186981201172,818.955078125,-1754.5272216796875,-130.11099243164062,810.4046020507812,-1486.895263671875,-131.6186981201172,818.955078125,-1486.895263671875,-130.11099243164062,810.4047241210938,-1754.5272216796875,-125.7697982788086,802.8853759765625,-1754.5272216796875,-125.7697982788086,802.8853759765625,-1486.895263671875,-130.11099243164062,810.4047241210938,-1754.5272216796875,-125.7697982788086,802.8853759765625,-1486.895263671875,-130.11099243164062,810.4046020507812,-1486.895263671875,-125.7697982788086,802.8853759765625,-1754.5272216796875,-119.11869812011719,797.3045043945312,-1754.5272216796875,-119.11869812011719,797.3043823242188,-1486.895263671875,-125.7697982788086,802.8853759765625,-1754.5272216796875,-119.11869812011719,797.3043823242188,-1486.895263671875,-125.7697982788086,802.8853759765625,-1486.895263671875,-119.11869812011719,797.3045043945312,-1754.5272216796875,-110.95989990234375,794.3350219726562,-1754.5272216796875,-110.95989990234375,794.3348999023438,-1486.895263671875,-119.11869812011719,797.3045043945312,-1754.5272216796875,-110.95989990234375,794.3348999023438,-1486.895263671875,-119.11869812011719,797.3043823242188,-1486.895263671875,-110.95989990234375,794.3350219726562,-1754.5272216796875,-102.27749633789062,794.3350219726562,-1754.5272216796875,-102.27749633789062,794.3348999023438,-1486.895263671875,-110.95989990234375,794.3350219726562,-1754.5272216796875,-102.27749633789062,794.3348999023438,-1486.895263671875,-110.95989990234375,794.3348999023438,-1486.895263671875,-102.27749633789062,794.3350219726562,-1754.5272216796875,-94.11869812011719,797.3045043945312,-1754.5272216796875,-94.11869812011719,797.3043823242188,-1486.895263671875,-102.27749633789062,794.3350219726562,-1754.5272216796875,-94.11869812011719,797.3043823242188,-1486.895263671875,-102.27749633789062,794.3348999023438,-1486.895263671875,-94.11869812011719,797.3045043945312,-1754.5272216796875,-87.46759796142578,802.8853759765625,-1754.5272216796875,-87.46759796142578,802.8853759765625,-1486.895263671875,-94.11869812011719,797.3045043945312,-1754.5272216796875,-87.46759796142578,802.8853759765625,-1486.895263671875,-94.11869812011719,797.3043823242188,-1486.895263671875,-87.46759796142578,802.8853759765625,-1754.5272216796875,-83.12629699707031,810.4046020507812,-1754.5272216796875,-83.12629699707031,810.4046020507812,-1486.895263671875,-87.46759796142578,802.8853759765625,-1754.5272216796875,-83.12629699707031,810.4046020507812,-1486.895263671875,-87.46759796142578,802.8853759765625,-1486.895263671875,-83.12629699707031,810.4046020507812,-1754.5272216796875,-81.61869812011719,818.955078125,-1754.5272216796875,-81.61869812011719,818.955078125,-1486.895263671875,-83.12629699707031,810.4046020507812,-1754.5272216796875,-81.61869812011719,818.955078125,-1486.895263671875,-83.12629699707031,810.4046020507812,-1486.895263671875,-81.61869812011719,818.955078125,-1486.895263671875,-83.12629699707031,827.505615234375,-1486.895263671875,-83.12629699707031,827.505615234375,-1219.263427734375,-81.61869812011719,818.955078125,-1486.895263671875,-83.12629699707031,827.505615234375,-1219.263427734375,-81.61869812011719,818.955078125,-1219.263427734375,-83.12629699707031,827.505615234375,-1486.895263671875,-87.46749877929688,835.0247802734375,-1486.895263671875,-87.46749877929688,835.0247192382812,-1219.263427734375,-83.12629699707031,827.505615234375,-1486.895263671875,-87.46749877929688,835.0247192382812,-1219.263427734375,-83.12629699707031,827.505615234375,-1219.263427734375,-87.46749877929688,835.0247802734375,-1486.895263671875,-94.11869812011719,840.605712890625,-1486.895263671875,-94.11869812011719,840.605712890625,-1219.263427734375,-87.46749877929688,835.0247802734375,-1486.895263671875,-94.11869812011719,840.605712890625,-1219.263427734375,-87.46749877929688,835.0247192382812,-1219.263427734375,-94.11869812011719,840.605712890625,-1486.895263671875,-102.27749633789062,843.5753173828125,-1486.895263671875,-102.27749633789062,843.5753173828125,-1219.263427734375,-94.11869812011719,840.605712890625,-1486.895263671875,-102.27749633789062,843.5753173828125,-1219.263427734375,-94.11869812011719,840.605712890625,-1219.263427734375,-102.27749633789062,843.5753173828125,-1486.895263671875,-110.95989990234375,843.5753173828125,-1486.895263671875,-110.95989990234375,843.5753173828125,-1219.263427734375,-102.27749633789062,843.5753173828125,-1486.895263671875,-110.95989990234375,843.5753173828125,-1219.263427734375,-102.27749633789062,843.5753173828125,-1219.263427734375,-110.95989990234375,843.5753173828125,-1486.895263671875,-119.11869812011719,840.605712890625,-1486.895263671875,-119.11869812011719,840.605712890625,-1219.263427734375,-110.95989990234375,843.5753173828125,-1486.895263671875,-119.11869812011719,840.605712890625,-1219.263427734375,-110.95989990234375,843.5753173828125,-1219.263427734375,-119.11869812011719,840.605712890625,-1486.895263671875,-125.7697982788086,835.0247802734375,-1486.895263671875,-125.7697982788086,835.0247192382812,-1219.263427734375,-119.11869812011719,840.605712890625,-1486.895263671875,-125.7697982788086,835.0247192382812,-1219.263427734375,-119.11869812011719,840.605712890625,-1219.263427734375,-125.7697982788086,835.0247802734375,-1486.895263671875,-130.11099243164062,827.505615234375,-1486.895263671875,-130.11099243164062,827.505615234375,-1219.263427734375,-125.7697982788086,835.0247802734375,-1486.895263671875,-130.11099243164062,827.505615234375,-1219.263427734375,-125.7697982788086,835.0247192382812,-1219.263427734375,-130.11099243164062,827.505615234375,-1486.895263671875,-131.6186981201172,818.955078125,-1486.895263671875,-131.6186981201172,818.955078125,-1219.263427734375,-130.11099243164062,827.505615234375,-1486.895263671875,-131.6186981201172,818.955078125,-1219.263427734375,-130.11099243164062,827.505615234375,-1219.263427734375,-131.6186981201172,818.955078125,-1486.895263671875,-130.11099243164062,810.4046020507812,-1486.895263671875,-130.11099243164062,810.4044799804688,-1219.263427734375,-131.6186981201172,818.955078125,-1486.895263671875,-130.11099243164062,810.4044799804688,-1219.263427734375,-131.6186981201172,818.955078125,-1219.263427734375,-130.11099243164062,810.4046020507812,-1486.895263671875,-125.7697982788086,802.8853759765625,-1486.895263671875,-125.7697982788086,802.8853759765625,-1219.263427734375,-130.11099243164062,810.4046020507812,-1486.895263671875,-125.7697982788086,802.8853759765625,-1219.263427734375,-130.11099243164062,810.4044799804688,-1219.263427734375,-125.7697982788086,802.8853759765625,-1486.895263671875,-119.11869812011719,797.3043823242188,-1486.895263671875,-119.11869812011719,797.3043823242188,-1219.263427734375,-125.7697982788086,802.8853759765625,-1486.895263671875,-119.11869812011719,797.3043823242188,-1219.263427734375,-125.7697982788086,802.8853759765625,-1219.263427734375,-119.11869812011719,797.3043823242188,-1486.895263671875,-110.95989990234375,794.3348999023438,-1486.895263671875,-110.95989990234375,794.3347778320312,-1219.263427734375,-119.11869812011719,797.3043823242188,-1486.895263671875,-110.95989990234375,794.3347778320312,-1219.263427734375,-119.11869812011719,797.3043823242188,-1219.263427734375,-110.95989990234375,794.3348999023438,-1486.895263671875,-102.27749633789062,794.3348999023438,-1486.895263671875,-102.27749633789062,794.3347778320312,-1219.263427734375,-110.95989990234375,794.3348999023438,-1486.895263671875,-102.27749633789062,794.3347778320312,-1219.263427734375,-110.95989990234375,794.3347778320312,-1219.263427734375,-102.27749633789062,794.3348999023438,-1486.895263671875,-94.11869812011719,797.3043823242188,-1486.895263671875,-94.11869812011719,797.3043823242188,-1219.263427734375,-102.27749633789062,794.3348999023438,-1486.895263671875,-94.11869812011719,797.3043823242188,-1219.263427734375,-102.27749633789062,794.3347778320312,-1219.263427734375,-94.11869812011719,797.3043823242188,-1486.895263671875,-87.46759796142578,802.8853759765625,-1486.895263671875,-87.46759796142578,802.8853759765625,-1219.263427734375,-94.11869812011719,797.3043823242188,-1486.895263671875,-87.46759796142578,802.8853759765625,-1219.263427734375,-94.11869812011719,797.3043823242188,-1219.263427734375,-87.46759796142578,802.8853759765625,-1486.895263671875,-83.12629699707031,810.4046020507812,-1486.895263671875,-83.12629699707031,810.4044799804688,-1219.263427734375,-87.46759796142578,802.8853759765625,-1486.895263671875,-83.12629699707031,810.4044799804688,-1219.263427734375,-87.46759796142578,802.8853759765625,-1219.263427734375,-83.12629699707031,810.4046020507812,-1486.895263671875,-81.61869812011719,818.955078125,-1486.895263671875,-81.61869812011719,818.955078125,-1219.263427734375,-83.12629699707031,810.4046020507812,-1486.895263671875,-81.61869812011719,818.955078125,-1219.263427734375,-83.12629699707031,810.4044799804688,-1219.263427734375,-81.61869812011719,818.955078125,-1219.263427734375,-83.12629699707031,827.505615234375,-1219.263427734375,-83.12629699707031,827.5054931640625,-951.6314697265625,-81.61869812011719,818.955078125,-1219.263427734375,-83.12629699707031,827.5054931640625,-951.6314697265625,-81.61869812011719,818.9550170898438,-951.6314697265625,-83.12629699707031,827.505615234375,-1219.263427734375,-87.46749877929688,835.0247192382812,-1219.263427734375,-87.46749877929688,835.0247192382812,-951.6314697265625,-83.12629699707031,827.505615234375,-1219.263427734375,-87.46749877929688,835.0247192382812,-951.6314697265625,-83.12629699707031,827.5054931640625,-951.6314697265625,-87.46749877929688,835.0247192382812,-1219.263427734375,-94.11869812011719,840.605712890625,-1219.263427734375,-94.11869812011719,840.605712890625,-951.6314697265625,-87.46749877929688,835.0247192382812,-1219.263427734375,-94.11869812011719,840.605712890625,-951.6314697265625,-87.46749877929688,835.0247192382812,-951.6314697265625,-94.11869812011719,840.605712890625,-1219.263427734375,-102.27749633789062,843.5753173828125,-1219.263427734375,-102.27749633789062,843.5751953125,-951.6314697265625,-94.11869812011719,840.605712890625,-1219.263427734375,-102.27749633789062,843.5751953125,-951.6314697265625,-94.11869812011719,840.605712890625,-951.6314697265625,-102.27749633789062,843.5753173828125,-1219.263427734375,-110.95989990234375,843.5753173828125,-1219.263427734375,-110.95989990234375,843.5751953125,-951.6314697265625,-102.27749633789062,843.5753173828125,-1219.263427734375,-110.95989990234375,843.5751953125,-951.6314697265625,-102.27749633789062,843.5751953125,-951.6314697265625,-110.95989990234375,843.5753173828125,-1219.263427734375,-119.11869812011719,840.605712890625,-1219.263427734375,-119.11869812011719,840.605712890625,-951.6314697265625,-110.95989990234375,843.5753173828125,-1219.263427734375,-119.11869812011719,840.605712890625,-951.6314697265625,-110.95989990234375,843.5751953125,-951.6314697265625,-119.11869812011719,840.605712890625,-1219.263427734375,-125.7697982788086,835.0247192382812,-1219.263427734375,-125.7697982788086,835.0247192382812,-951.6314697265625,-119.11869812011719,840.605712890625,-1219.263427734375,-125.7697982788086,835.0247192382812,-951.6314697265625,-119.11869812011719,840.605712890625,-951.6314697265625,-125.7697982788086,835.0247192382812,-1219.263427734375,-130.11099243164062,827.505615234375,-1219.263427734375,-130.11099243164062,827.5054931640625,-951.6314697265625,-125.7697982788086,835.0247192382812,-1219.263427734375,-130.11099243164062,827.5054931640625,-951.6314697265625,-125.7697982788086,835.0247192382812,-951.6314697265625,-130.11099243164062,827.505615234375,-1219.263427734375,-131.6186981201172,818.955078125,-1219.263427734375,-131.6186981201172,818.9550170898438,-951.6314697265625,-130.11099243164062,827.505615234375,-1219.263427734375,-131.6186981201172,818.9550170898438,-951.6314697265625,-130.11099243164062,827.5054931640625,-951.6314697265625,-131.6186981201172,818.955078125,-1219.263427734375,-130.11099243164062,810.4044799804688,-1219.263427734375,-130.11099243164062,810.4044799804688,-951.6314697265625,-131.6186981201172,818.955078125,-1219.263427734375,-130.11099243164062,810.4044799804688,-951.6314697265625,-131.6186981201172,818.9550170898438,-951.6314697265625,-130.11099243164062,810.4044799804688,-1219.263427734375,-125.7697982788086,802.8853759765625,-1219.263427734375,-125.7697982788086,802.8853149414062,-951.6314697265625,-130.11099243164062,810.4044799804688,-1219.263427734375,-125.7697982788086,802.8853149414062,-951.6314697265625,-130.11099243164062,810.4044799804688,-951.6314697265625,-125.7697982788086,802.8853759765625,-1219.263427734375,-119.11869812011719,797.3043823242188,-1219.263427734375,-119.11869812011719,797.3043823242188,-951.6314697265625,-125.7697982788086,802.8853759765625,-1219.263427734375,-119.11869812011719,797.3043823242188,-951.6314697265625,-125.7697982788086,802.8853149414062,-951.6314697265625,-119.11869812011719,797.3043823242188,-1219.263427734375,-110.95989990234375,794.3347778320312,-1219.263427734375,-110.95989990234375,794.3347778320312,-951.6314697265625,-119.11869812011719,797.3043823242188,-1219.263427734375,-110.95989990234375,794.3347778320312,-951.6314697265625,-119.11869812011719,797.3043823242188,-951.6314697265625,-110.95989990234375,794.3347778320312,-1219.263427734375,-102.27749633789062,794.3347778320312,-1219.263427734375,-102.27749633789062,794.3347778320312,-951.6314697265625,-110.95989990234375,794.3347778320312,-1219.263427734375,-102.27749633789062,794.3347778320312,-951.6314697265625,-110.95989990234375,794.3347778320312,-951.6314697265625,-102.27749633789062,794.3347778320312,-1219.263427734375,-94.11869812011719,797.3043823242188,-1219.263427734375,-94.11869812011719,797.3043823242188,-951.6314697265625,-102.27749633789062,794.3347778320312,-1219.263427734375,-94.11869812011719,797.3043823242188,-951.6314697265625,-102.27749633789062,794.3347778320312,-951.6314697265625,-94.11869812011719,797.3043823242188,-1219.263427734375,-87.46759796142578,802.8853759765625,-1219.263427734375,-87.46759796142578,802.8853149414062,-951.6314697265625,-94.11869812011719,797.3043823242188,-1219.263427734375,-87.46759796142578,802.8853149414062,-951.6314697265625,-94.11869812011719,797.3043823242188,-951.6314697265625,-87.46759796142578,802.8853759765625,-1219.263427734375,-83.12629699707031,810.4044799804688,-1219.263427734375,-83.12629699707031,810.4044799804688,-951.6314697265625,-87.46759796142578,802.8853759765625,-1219.263427734375,-83.12629699707031,810.4044799804688,-951.6314697265625,-87.46759796142578,802.8853149414062,-951.6314697265625,-83.12629699707031,810.4044799804688,-1219.263427734375,-81.61869812011719,818.955078125,-1219.263427734375,-81.61869812011719,818.9550170898438,-951.6314697265625,-83.12629699707031,810.4044799804688,-1219.263427734375,-81.61869812011719,818.9550170898438,-951.6314697265625,-83.12629699707031,810.4044799804688,-951.6314697265625,-81.61869812011719,818.9550170898438,-951.6314697265625,-83.12629699707031,827.5054931640625,-951.6314697265625,-83.12629699707031,827.5054931640625,-683.9995727539062,-81.61869812011719,818.9550170898438,-951.6314697265625,-83.12629699707031,827.5054931640625,-683.9995727539062,-81.61869812011719,818.9550170898438,-683.9995727539062,-83.12629699707031,827.5054931640625,-951.6314697265625,-87.46749877929688,835.0247192382812,-951.6314697265625,-87.46749877929688,835.0247192382812,-683.9995727539062,-83.12629699707031,827.5054931640625,-951.6314697265625,-87.46749877929688,835.0247192382812,-683.9995727539062,-83.12629699707031,827.5054931640625,-683.9995727539062,-87.46749877929688,835.0247192382812,-951.6314697265625,-94.11869812011719,840.605712890625,-951.6314697265625,-94.11869812011719,840.6055908203125,-683.9995727539062,-87.46749877929688,835.0247192382812,-951.6314697265625,-94.11869812011719,840.6055908203125,-683.9995727539062,-87.46749877929688,835.0247192382812,-683.9995727539062,-94.11869812011719,840.605712890625,-951.6314697265625,-102.27749633789062,843.5751953125,-951.6314697265625,-102.27749633789062,843.5750732421875,-683.9995727539062,-94.11869812011719,840.605712890625,-951.6314697265625,-102.27749633789062,843.5750732421875,-683.9995727539062,-94.11869812011719,840.6055908203125,-683.9995727539062,-102.27749633789062,843.5751953125,-951.6314697265625,-110.95989990234375,843.5751953125,-951.6314697265625,-110.95989990234375,843.5750732421875,-683.9995727539062,-102.27749633789062,843.5751953125,-951.6314697265625,-110.95989990234375,843.5750732421875,-683.9995727539062,-102.27749633789062,843.5750732421875,-683.9995727539062,-110.95989990234375,843.5751953125,-951.6314697265625,-119.11869812011719,840.605712890625,-951.6314697265625,-119.11869812011719,840.6055908203125,-683.9995727539062,-110.95989990234375,843.5751953125,-951.6314697265625,-119.11869812011719,840.6055908203125,-683.9995727539062,-110.95989990234375,843.5750732421875,-683.9995727539062,-119.11869812011719,840.605712890625,-951.6314697265625,-125.7697982788086,835.0247192382812,-951.6314697265625,-125.7697982788086,835.0247192382812,-683.9995727539062,-119.11869812011719,840.605712890625,-951.6314697265625,-125.7697982788086,835.0247192382812,-683.9995727539062,-119.11869812011719,840.6055908203125,-683.9995727539062,-125.7697982788086,835.0247192382812,-951.6314697265625,-130.11099243164062,827.5054931640625,-951.6314697265625,-130.11099243164062,827.5054931640625,-683.9995727539062,-125.7697982788086,835.0247192382812,-951.6314697265625,-130.11099243164062,827.5054931640625,-683.9995727539062,-125.7697982788086,835.0247192382812,-683.9995727539062,-130.11099243164062,827.5054931640625,-951.6314697265625,-131.6186981201172,818.9550170898438,-951.6314697265625,-131.6186981201172,818.9550170898438,-683.9995727539062,-130.11099243164062,827.5054931640625,-951.6314697265625,-131.6186981201172,818.9550170898438,-683.9995727539062,-130.11099243164062,827.5054931640625,-683.9995727539062,-131.6186981201172,818.9550170898438,-951.6314697265625,-130.11099243164062,810.4044799804688,-951.6314697265625,-130.11099243164062,810.4044799804688,-683.9995727539062,-131.6186981201172,818.9550170898438,-951.6314697265625,-130.11099243164062,810.4044799804688,-683.9995727539062,-131.6186981201172,818.9550170898438,-683.9995727539062,-130.11099243164062,810.4044799804688,-951.6314697265625,-125.7697982788086,802.8853149414062,-951.6314697265625,-125.7697982788086,802.8853149414062,-683.9995727539062,-130.11099243164062,810.4044799804688,-951.6314697265625,-125.7697982788086,802.8853149414062,-683.9995727539062,-130.11099243164062,810.4044799804688,-683.9995727539062,-125.7697982788086,802.8853149414062,-951.6314697265625,-119.11869812011719,797.3043823242188,-951.6314697265625,-119.11869812011719,797.3043212890625,-683.9995727539062,-125.7697982788086,802.8853149414062,-951.6314697265625,-119.11869812011719,797.3043212890625,-683.9995727539062,-125.7697982788086,802.8853149414062,-683.9995727539062,-119.11869812011719,797.3043823242188,-951.6314697265625,-110.95989990234375,794.3347778320312,-951.6314697265625,-110.95989990234375,794.3347778320312,-683.9995727539062,-119.11869812011719,797.3043823242188,-951.6314697265625,-110.95989990234375,794.3347778320312,-683.9995727539062,-119.11869812011719,797.3043212890625,-683.9995727539062,-110.95989990234375,794.3347778320312,-951.6314697265625,-102.27749633789062,794.3347778320312,-951.6314697265625,-102.27749633789062,794.3347778320312,-683.9995727539062,-110.95989990234375,794.3347778320312,-951.6314697265625,-102.27749633789062,794.3347778320312,-683.9995727539062,-110.95989990234375,794.3347778320312,-683.9995727539062,-102.27749633789062,794.3347778320312,-951.6314697265625,-94.11869812011719,797.3043823242188,-951.6314697265625,-94.11869812011719,797.3043212890625,-683.9995727539062,-102.27749633789062,794.3347778320312,-951.6314697265625,-94.11869812011719,797.3043212890625,-683.9995727539062,-102.27749633789062,794.3347778320312,-683.9995727539062,-94.11869812011719,797.3043823242188,-951.6314697265625,-87.46759796142578,802.8853149414062,-951.6314697265625,-87.46759796142578,802.8853149414062,-683.9995727539062,-94.11869812011719,797.3043823242188,-951.6314697265625,-87.46759796142578,802.8853149414062,-683.9995727539062,-94.11869812011719,797.3043212890625,-683.9995727539062,-87.46759796142578,802.8853149414062,-951.6314697265625,-83.12629699707031,810.4044799804688,-951.6314697265625,-83.12629699707031,810.4044189453125,-683.9995727539062,-87.46759796142578,802.8853149414062,-951.6314697265625,-83.12629699707031,810.4044189453125,-683.9995727539062,-87.46759796142578,802.8853149414062,-683.9995727539062,-83.12629699707031,810.4044799804688,-951.6314697265625,-81.61869812011719,818.9550170898438,-951.6314697265625,-81.61869812011719,818.9550170898438,-683.9995727539062,-83.12629699707031,810.4044799804688,-951.6314697265625,-81.61869812011719,818.9550170898438,-683.9995727539062,-83.12629699707031,810.4044189453125,-683.9995727539062,-81.61869812011719,818.9550170898438,-683.9995727539062,-83.12629699707031,827.5054931640625,-683.9995727539062,-83.12629699707031,827.50537109375,-416.3677062988281,-81.61869812011719,818.9550170898438,-683.9995727539062,-83.12629699707031,827.50537109375,-416.3677062988281,-81.61869812011719,818.9548950195312,-416.3677062988281,-83.12629699707031,827.5054931640625,-683.9995727539062,-87.46749877929688,835.0247192382812,-683.9995727539062,-87.46749877929688,835.0245971679688,-416.3677062988281,-83.12629699707031,827.5054931640625,-683.9995727539062,-87.46749877929688,835.0245971679688,-416.3677062988281,-83.12629699707031,827.50537109375,-416.3677062988281,-87.46749877929688,835.0247192382812,-683.9995727539062,-94.11869812011719,840.6055908203125,-683.9995727539062,-94.11869812011719,840.6055297851562,-416.3677062988281,-87.46749877929688,835.0247192382812,-683.9995727539062,-94.11869812011719,840.6055297851562,-416.3677062988281,-87.46749877929688,835.0245971679688,-416.3677062988281,-94.11869812011719,840.6055908203125,-683.9995727539062,-102.27749633789062,843.5750732421875,-683.9995727539062,-102.27749633789062,843.5750732421875,-416.3677062988281,-94.11869812011719,840.6055908203125,-683.9995727539062,-102.27749633789062,843.5750732421875,-416.3677062988281,-94.11869812011719,840.6055297851562,-416.3677062988281,-102.27749633789062,843.5750732421875,-683.9995727539062,-110.95989990234375,843.5750732421875,-683.9995727539062,-110.95989990234375,843.5750732421875,-416.3677062988281,-102.27749633789062,843.5750732421875,-683.9995727539062,-110.95989990234375,843.5750732421875,-416.3677062988281,-102.27749633789062,843.5750732421875,-416.3677062988281,-110.95989990234375,843.5750732421875,-683.9995727539062,-119.11869812011719,840.6055908203125,-683.9995727539062,-119.11869812011719,840.6055297851562,-416.3677062988281,-110.95989990234375,843.5750732421875,-683.9995727539062,-119.11869812011719,840.6055297851562,-416.3677062988281,-110.95989990234375,843.5750732421875,-416.3677062988281,-119.11869812011719,840.6055908203125,-683.9995727539062,-125.7697982788086,835.0247192382812,-683.9995727539062,-125.7697982788086,835.0245971679688,-416.3677062988281,-119.11869812011719,840.6055908203125,-683.9995727539062,-125.7697982788086,835.0245971679688,-416.3677062988281,-119.11869812011719,840.6055297851562,-416.3677062988281,-125.7697982788086,835.0247192382812,-683.9995727539062,-130.11099243164062,827.5054931640625,-683.9995727539062,-130.11099243164062,827.50537109375,-416.3677062988281,-125.7697982788086,835.0247192382812,-683.9995727539062,-130.11099243164062,827.50537109375,-416.3677062988281,-125.7697982788086,835.0245971679688,-416.3677062988281,-130.11099243164062,827.5054931640625,-683.9995727539062,-131.6186981201172,818.9550170898438,-683.9995727539062,-131.6186981201172,818.9548950195312,-416.3677062988281,-130.11099243164062,827.5054931640625,-683.9995727539062,-131.6186981201172,818.9548950195312,-416.3677062988281,-130.11099243164062,827.50537109375,-416.3677062988281,-131.6186981201172,818.9550170898438,-683.9995727539062,-130.11099243164062,810.4044799804688,-683.9995727539062,-130.11099243164062,810.4044189453125,-416.3677062988281,-131.6186981201172,818.9550170898438,-683.9995727539062,-130.11099243164062,810.4044189453125,-416.3677062988281,-131.6186981201172,818.9548950195312,-416.3677062988281,-130.11099243164062,810.4044799804688,-683.9995727539062,-125.7697982788086,802.8853149414062,-683.9995727539062,-125.7697982788086,802.8853149414062,-416.3677062988281,-130.11099243164062,810.4044799804688,-683.9995727539062,-125.7697982788086,802.8853149414062,-416.3677062988281,-130.11099243164062,810.4044189453125,-416.3677062988281,-125.7697982788086,802.8853149414062,-683.9995727539062,-119.11869812011719,797.3043212890625,-683.9995727539062,-119.11869812011719,797.3043212890625,-416.3677062988281,-125.7697982788086,802.8853149414062,-683.9995727539062,-119.11869812011719,797.3043212890625,-416.3677062988281,-125.7697982788086,802.8853149414062,-416.3677062988281,-119.11869812011719,797.3043212890625,-683.9995727539062,-110.95989990234375,794.3347778320312,-683.9995727539062,-110.95989990234375,794.334716796875,-416.3677062988281,-119.11869812011719,797.3043212890625,-683.9995727539062,-110.95989990234375,794.334716796875,-416.3677062988281,-119.11869812011719,797.3043212890625,-416.3677062988281,-110.95989990234375,794.3347778320312,-683.9995727539062,-102.27749633789062,794.3347778320312,-683.9995727539062,-102.27749633789062,794.334716796875,-416.3677062988281,-110.95989990234375,794.3347778320312,-683.9995727539062,-102.27749633789062,794.334716796875,-416.3677062988281,-110.95989990234375,794.334716796875,-416.3677062988281,-102.27749633789062,794.3347778320312,-683.9995727539062,-94.11869812011719,797.3043212890625,-683.9995727539062,-94.11869812011719,797.3043212890625,-416.3677062988281,-102.27749633789062,794.3347778320312,-683.9995727539062,-94.11869812011719,797.3043212890625,-416.3677062988281,-102.27749633789062,794.334716796875,-416.3677062988281,-94.11869812011719,797.3043212890625,-683.9995727539062,-87.46759796142578,802.8853149414062,-683.9995727539062,-87.46759796142578,802.8851928710938,-416.3677062988281,-94.11869812011719,797.3043212890625,-683.9995727539062,-87.46759796142578,802.8851928710938,-416.3677062988281,-94.11869812011719,797.3043212890625,-416.3677062988281,-87.46759796142578,802.8853149414062,-683.9995727539062,-83.12629699707031,810.4044189453125,-683.9995727539062,-83.12629699707031,810.4044189453125,-416.3677062988281,-87.46759796142578,802.8853149414062,-683.9995727539062,-83.12629699707031,810.4044189453125,-416.3677062988281,-87.46759796142578,802.8851928710938,-416.3677062988281,-83.12629699707031,810.4044189453125,-683.9995727539062,-81.61869812011719,818.9550170898438,-683.9995727539062,-81.61869812011719,818.9548950195312,-416.3677062988281,-83.12629699707031,810.4044189453125,-683.9995727539062,-81.61869812011719,818.9548950195312,-416.3677062988281,-83.12629699707031,810.4044189453125,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-83.12629699707031,810.4044189453125,-416.3677062988281,-81.61869812011719,818.9548950195312,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-81.61869812011719,818.9548950195312,-416.3677062988281,-83.12629699707031,827.50537109375,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-83.12629699707031,827.50537109375,-416.3677062988281,-87.46749877929688,835.0245971679688,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-87.46749877929688,835.0245971679688,-416.3677062988281,-94.11869812011719,840.6055297851562,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-94.11869812011719,840.6055297851562,-416.3677062988281,-102.27749633789062,843.5750732421875,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-102.27749633789062,843.5750732421875,-416.3677062988281,-110.95989990234375,843.5750732421875,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-110.95989990234375,843.5750732421875,-416.3677062988281,-119.11869812011719,840.6055297851562,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-119.11869812011719,840.6055297851562,-416.3677062988281,-125.7697982788086,835.0245971679688,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-125.7697982788086,835.0245971679688,-416.3677062988281,-130.11099243164062,827.50537109375,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-130.11099243164062,827.50537109375,-416.3677062988281,-131.6186981201172,818.9548950195312,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-131.6186981201172,818.9548950195312,-416.3677062988281,-130.11099243164062,810.4044189453125,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-130.11099243164062,810.4044189453125,-416.3677062988281,-125.7697982788086,802.8853149414062,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-125.7697982788086,802.8853149414062,-416.3677062988281,-119.11869812011719,797.3043212890625,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-119.11869812011719,797.3043212890625,-416.3677062988281,-110.95989990234375,794.334716796875,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-110.95989990234375,794.334716796875,-416.3677062988281,-102.27749633789062,794.334716796875,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-102.27749633789062,794.334716796875,-416.3677062988281,-94.11869812011719,797.3043212890625,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-94.11869812011719,797.3043212890625,-416.3677062988281,-87.46759796142578,802.8851928710938,-416.3677062988281,-106.61869812011719,818.9548950195312,-416.3677062988281,-87.46759796142578,802.8851928710938,-416.3677062988281,-83.12629699707031,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-106.61869812011719,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466584757576
| }
| }
| },
| {
| "uuid": "B7D5E062-672C-490A-BDE7-5208FE6F6623",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-6.61870002746582,818.955078125,-1754.5272216796875,12.532500267028809,835.0247802734375,-1754.5272216796875,16.873699188232422,827.505615234375,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,16.873699188232422,827.505615234375,-1754.5272216796875,18.38129997253418,818.955078125,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,-2.277400016784668,843.5753173828125,-1754.5272216796875,5.88129997253418,840.6057739257812,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,5.88129997253418,840.6057739257812,-1754.5272216796875,12.532500267028809,835.0247802734375,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,-19.11870002746582,840.6057739257812,-1754.5272216796875,-10.95989990234375,843.5753173828125,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,-10.95989990234375,843.5753173828125,-1754.5272216796875,-2.277400016784668,843.5753173828125,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,-30.111000061035156,827.505615234375,-1754.5272216796875,-25.769800186157227,835.0247802734375,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,-25.769800186157227,835.0247802734375,-1754.5272216796875,-19.11870002746582,840.6057739257812,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,-30.111000061035156,810.4047241210938,-1754.5272216796875,-31.61870002746582,818.955078125,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,-31.61870002746582,818.955078125,-1754.5272216796875,-30.111000061035156,827.505615234375,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,-19.11870002746582,797.3045043945312,-1754.5272216796875,-25.769800186157227,802.8853759765625,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,-25.769800186157227,802.8853759765625,-1754.5272216796875,-30.111000061035156,810.4047241210938,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,-2.2774999141693115,794.3350219726562,-1754.5272216796875,-10.95989990234375,794.3350219726562,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,-10.95989990234375,794.3350219726562,-1754.5272216796875,-19.11870002746582,797.3045043945312,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,12.532400131225586,802.8853759765625,-1754.5272216796875,5.88129997253418,797.3045043945312,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,5.88129997253418,797.3045043945312,-1754.5272216796875,-2.2774999141693115,794.3350219726562,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,18.38129997253418,818.955078125,-1754.5272216796875,16.873699188232422,810.4046020507812,-1754.5272216796875,-6.61870002746582,818.955078125,-1754.5272216796875,16.873699188232422,810.4046020507812,-1754.5272216796875,12.532400131225586,802.8853759765625,-1754.5272216796875,18.38129997253418,818.955078125,-1754.5272216796875,16.873699188232422,827.505615234375,-1754.5272216796875,16.873699188232422,827.505615234375,-1486.895263671875,18.38129997253418,818.955078125,-1754.5272216796875,16.873699188232422,827.505615234375,-1486.895263671875,18.38129997253418,818.955078125,-1486.895263671875,16.873699188232422,827.505615234375,-1754.5272216796875,12.532500267028809,835.0247802734375,-1754.5272216796875,12.532500267028809,835.0247802734375,-1486.895263671875,16.873699188232422,827.505615234375,-1754.5272216796875,12.532500267028809,835.0247802734375,-1486.895263671875,16.873699188232422,827.505615234375,-1486.895263671875,12.532500267028809,835.0247802734375,-1754.5272216796875,5.88129997253418,840.6057739257812,-1754.5272216796875,5.88129997253418,840.605712890625,-1486.895263671875,12.532500267028809,835.0247802734375,-1754.5272216796875,5.88129997253418,840.605712890625,-1486.895263671875,12.532500267028809,835.0247802734375,-1486.895263671875,5.88129997253418,840.6057739257812,-1754.5272216796875,-2.277400016784668,843.5753173828125,-1754.5272216796875,-2.277400016784668,843.5753173828125,-1486.895263671875,5.88129997253418,840.6057739257812,-1754.5272216796875,-2.277400016784668,843.5753173828125,-1486.895263671875,5.88129997253418,840.605712890625,-1486.895263671875,-2.277400016784668,843.5753173828125,-1754.5272216796875,-10.95989990234375,843.5753173828125,-1754.5272216796875,-10.95989990234375,843.5753173828125,-1486.895263671875,-2.277400016784668,843.5753173828125,-1754.5272216796875,-10.95989990234375,843.5753173828125,-1486.895263671875,-2.277400016784668,843.5753173828125,-1486.895263671875,-10.95989990234375,843.5753173828125,-1754.5272216796875,-19.11870002746582,840.6057739257812,-1754.5272216796875,-19.11870002746582,840.605712890625,-1486.895263671875,-10.95989990234375,843.5753173828125,-1754.5272216796875,-19.11870002746582,840.605712890625,-1486.895263671875,-10.95989990234375,843.5753173828125,-1486.895263671875,-19.11870002746582,840.6057739257812,-1754.5272216796875,-25.769800186157227,835.0247802734375,-1754.5272216796875,-25.769800186157227,835.0247802734375,-1486.895263671875,-19.11870002746582,840.6057739257812,-1754.5272216796875,-25.769800186157227,835.0247802734375,-1486.895263671875,-19.11870002746582,840.605712890625,-1486.895263671875,-25.769800186157227,835.0247802734375,-1754.5272216796875,-30.111000061035156,827.505615234375,-1754.5272216796875,-30.111000061035156,827.505615234375,-1486.895263671875,-25.769800186157227,835.0247802734375,-1754.5272216796875,-30.111000061035156,827.505615234375,-1486.895263671875,-25.769800186157227,835.0247802734375,-1486.895263671875,-30.111000061035156,827.505615234375,-1754.5272216796875,-31.61870002746582,818.955078125,-1754.5272216796875,-31.61870002746582,818.955078125,-1486.895263671875,-30.111000061035156,827.505615234375,-1754.5272216796875,-31.61870002746582,818.955078125,-1486.895263671875,-30.111000061035156,827.505615234375,-1486.895263671875,-31.61870002746582,818.955078125,-1754.5272216796875,-30.111000061035156,810.4047241210938,-1754.5272216796875,-30.111000061035156,810.4046020507812,-1486.895263671875,-31.61870002746582,818.955078125,-1754.5272216796875,-30.111000061035156,810.4046020507812,-1486.895263671875,-31.61870002746582,818.955078125,-1486.895263671875,-30.111000061035156,810.4047241210938,-1754.5272216796875,-25.769800186157227,802.8853759765625,-1754.5272216796875,-25.769800186157227,802.8853759765625,-1486.895263671875,-30.111000061035156,810.4047241210938,-1754.5272216796875,-25.769800186157227,802.8853759765625,-1486.895263671875,-30.111000061035156,810.4046020507812,-1486.895263671875,-25.769800186157227,802.8853759765625,-1754.5272216796875,-19.11870002746582,797.3045043945312,-1754.5272216796875,-19.11870002746582,797.3043823242188,-1486.895263671875,-25.769800186157227,802.8853759765625,-1754.5272216796875,-19.11870002746582,797.3043823242188,-1486.895263671875,-25.769800186157227,802.8853759765625,-1486.895263671875,-19.11870002746582,797.3045043945312,-1754.5272216796875,-10.95989990234375,794.3350219726562,-1754.5272216796875,-10.95989990234375,794.3348999023438,-1486.895263671875,-19.11870002746582,797.3045043945312,-1754.5272216796875,-10.95989990234375,794.3348999023438,-1486.895263671875,-19.11870002746582,797.3043823242188,-1486.895263671875,-10.95989990234375,794.3350219726562,-1754.5272216796875,-2.2774999141693115,794.3350219726562,-1754.5272216796875,-2.2774999141693115,794.3348999023438,-1486.895263671875,-10.95989990234375,794.3350219726562,-1754.5272216796875,-2.2774999141693115,794.3348999023438,-1486.895263671875,-10.95989990234375,794.3348999023438,-1486.895263671875,-2.2774999141693115,794.3350219726562,-1754.5272216796875,5.88129997253418,797.3045043945312,-1754.5272216796875,5.88129997253418,797.3043823242188,-1486.895263671875,-2.2774999141693115,794.3350219726562,-1754.5272216796875,5.88129997253418,797.3043823242188,-1486.895263671875,-2.2774999141693115,794.3348999023438,-1486.895263671875,5.88129997253418,797.3045043945312,-1754.5272216796875,12.532400131225586,802.8853759765625,-1754.5272216796875,12.532400131225586,802.8853759765625,-1486.895263671875,5.88129997253418,797.3045043945312,-1754.5272216796875,12.532400131225586,802.8853759765625,-1486.895263671875,5.88129997253418,797.3043823242188,-1486.895263671875,12.532400131225586,802.8853759765625,-1754.5272216796875,16.873699188232422,810.4046020507812,-1754.5272216796875,16.873699188232422,810.4046020507812,-1486.895263671875,12.532400131225586,802.8853759765625,-1754.5272216796875,16.873699188232422,810.4046020507812,-1486.895263671875,12.532400131225586,802.8853759765625,-1486.895263671875,16.873699188232422,810.4046020507812,-1754.5272216796875,18.38129997253418,818.955078125,-1754.5272216796875,18.38129997253418,818.955078125,-1486.895263671875,16.873699188232422,810.4046020507812,-1754.5272216796875,18.38129997253418,818.955078125,-1486.895263671875,16.873699188232422,810.4046020507812,-1486.895263671875,18.38129997253418,818.955078125,-1486.895263671875,16.873699188232422,827.505615234375,-1486.895263671875,16.873699188232422,827.505615234375,-1219.263427734375,18.38129997253418,818.955078125,-1486.895263671875,16.873699188232422,827.505615234375,-1219.263427734375,18.38129997253418,818.955078125,-1219.263427734375,16.873699188232422,827.505615234375,-1486.895263671875,12.532500267028809,835.0247802734375,-1486.895263671875,12.532500267028809,835.0247192382812,-1219.263427734375,16.873699188232422,827.505615234375,-1486.895263671875,12.532500267028809,835.0247192382812,-1219.263427734375,16.873699188232422,827.505615234375,-1219.263427734375,12.532500267028809,835.0247802734375,-1486.895263671875,5.88129997253418,840.605712890625,-1486.895263671875,5.88129997253418,840.605712890625,-1219.263427734375,12.532500267028809,835.0247802734375,-1486.895263671875,5.88129997253418,840.605712890625,-1219.263427734375,12.532500267028809,835.0247192382812,-1219.263427734375,5.88129997253418,840.605712890625,-1486.895263671875,-2.277400016784668,843.5753173828125,-1486.895263671875,-2.277400016784668,843.5753173828125,-1219.263427734375,5.88129997253418,840.605712890625,-1486.895263671875,-2.277400016784668,843.5753173828125,-1219.263427734375,5.88129997253418,840.605712890625,-1219.263427734375,-2.277400016784668,843.5753173828125,-1486.895263671875,-10.95989990234375,843.5753173828125,-1486.895263671875,-10.95989990234375,843.5753173828125,-1219.263427734375,-2.277400016784668,843.5753173828125,-1486.895263671875,-10.95989990234375,843.5753173828125,-1219.263427734375,-2.277400016784668,843.5753173828125,-1219.263427734375,-10.95989990234375,843.5753173828125,-1486.895263671875,-19.11870002746582,840.605712890625,-1486.895263671875,-19.11870002746582,840.605712890625,-1219.263427734375,-10.95989990234375,843.5753173828125,-1486.895263671875,-19.11870002746582,840.605712890625,-1219.263427734375,-10.95989990234375,843.5753173828125,-1219.263427734375,-19.11870002746582,840.605712890625,-1486.895263671875,-25.769800186157227,835.0247802734375,-1486.895263671875,-25.769800186157227,835.0247192382812,-1219.263427734375,-19.11870002746582,840.605712890625,-1486.895263671875,-25.769800186157227,835.0247192382812,-1219.263427734375,-19.11870002746582,840.605712890625,-1219.263427734375,-25.769800186157227,835.0247802734375,-1486.895263671875,-30.111000061035156,827.505615234375,-1486.895263671875,-30.111000061035156,827.505615234375,-1219.263427734375,-25.769800186157227,835.0247802734375,-1486.895263671875,-30.111000061035156,827.505615234375,-1219.263427734375,-25.769800186157227,835.0247192382812,-1219.263427734375,-30.111000061035156,827.505615234375,-1486.895263671875,-31.61870002746582,818.955078125,-1486.895263671875,-31.61870002746582,818.955078125,-1219.263427734375,-30.111000061035156,827.505615234375,-1486.895263671875,-31.61870002746582,818.955078125,-1219.263427734375,-30.111000061035156,827.505615234375,-1219.263427734375,-31.61870002746582,818.955078125,-1486.895263671875,-30.111000061035156,810.4046020507812,-1486.895263671875,-30.111000061035156,810.4044799804688,-1219.263427734375,-31.61870002746582,818.955078125,-1486.895263671875,-30.111000061035156,810.4044799804688,-1219.263427734375,-31.61870002746582,818.955078125,-1219.263427734375,-30.111000061035156,810.4046020507812,-1486.895263671875,-25.769800186157227,802.8853759765625,-1486.895263671875,-25.769800186157227,802.8853759765625,-1219.263427734375,-30.111000061035156,810.4046020507812,-1486.895263671875,-25.769800186157227,802.8853759765625,-1219.263427734375,-30.111000061035156,810.4044799804688,-1219.263427734375,-25.769800186157227,802.8853759765625,-1486.895263671875,-19.11870002746582,797.3043823242188,-1486.895263671875,-19.11870002746582,797.3043823242188,-1219.263427734375,-25.769800186157227,802.8853759765625,-1486.895263671875,-19.11870002746582,797.3043823242188,-1219.263427734375,-25.769800186157227,802.8853759765625,-1219.263427734375,-19.11870002746582,797.3043823242188,-1486.895263671875,-10.95989990234375,794.3348999023438,-1486.895263671875,-10.95989990234375,794.3347778320312,-1219.263427734375,-19.11870002746582,797.3043823242188,-1486.895263671875,-10.95989990234375,794.3347778320312,-1219.263427734375,-19.11870002746582,797.3043823242188,-1219.263427734375,-10.95989990234375,794.3348999023438,-1486.895263671875,-2.2774999141693115,794.3348999023438,-1486.895263671875,-2.2774999141693115,794.3347778320312,-1219.263427734375,-10.95989990234375,794.3348999023438,-1486.895263671875,-2.2774999141693115,794.3347778320312,-1219.263427734375,-10.95989990234375,794.3347778320312,-1219.263427734375,-2.2774999141693115,794.3348999023438,-1486.895263671875,5.88129997253418,797.3043823242188,-1486.895263671875,5.88129997253418,797.3043823242188,-1219.263427734375,-2.2774999141693115,794.3348999023438,-1486.895263671875,5.88129997253418,797.3043823242188,-1219.263427734375,-2.2774999141693115,794.3347778320312,-1219.263427734375,5.88129997253418,797.3043823242188,-1486.895263671875,12.532400131225586,802.8853759765625,-1486.895263671875,12.532400131225586,802.8853759765625,-1219.263427734375,5.88129997253418,797.3043823242188,-1486.895263671875,12.532400131225586,802.8853759765625,-1219.263427734375,5.88129997253418,797.3043823242188,-1219.263427734375,12.532400131225586,802.8853759765625,-1486.895263671875,16.873699188232422,810.4046020507812,-1486.895263671875,16.873699188232422,810.4044799804688,-1219.263427734375,12.532400131225586,802.8853759765625,-1486.895263671875,16.873699188232422,810.4044799804688,-1219.263427734375,12.532400131225586,802.8853759765625,-1219.263427734375,16.873699188232422,810.4046020507812,-1486.895263671875,18.38129997253418,818.955078125,-1486.895263671875,18.38129997253418,818.955078125,-1219.263427734375,16.873699188232422,810.4046020507812,-1486.895263671875,18.38129997253418,818.955078125,-1219.263427734375,16.873699188232422,810.4044799804688,-1219.263427734375,18.38129997253418,818.955078125,-1219.263427734375,16.873699188232422,827.505615234375,-1219.263427734375,16.873699188232422,827.5054931640625,-951.6314697265625,18.38129997253418,818.955078125,-1219.263427734375,16.873699188232422,827.5054931640625,-951.6314697265625,18.38129997253418,818.9550170898438,-951.6314697265625,16.873699188232422,827.505615234375,-1219.263427734375,12.532500267028809,835.0247192382812,-1219.263427734375,12.532500267028809,835.0247192382812,-951.6314697265625,16.873699188232422,827.505615234375,-1219.263427734375,12.532500267028809,835.0247192382812,-951.6314697265625,16.873699188232422,827.5054931640625,-951.6314697265625,12.532500267028809,835.0247192382812,-1219.263427734375,5.88129997253418,840.605712890625,-1219.263427734375,5.88129997253418,840.605712890625,-951.6314697265625,12.532500267028809,835.0247192382812,-1219.263427734375,5.88129997253418,840.605712890625,-951.6314697265625,12.532500267028809,835.0247192382812,-951.6314697265625,5.88129997253418,840.605712890625,-1219.263427734375,-2.277400016784668,843.5753173828125,-1219.263427734375,-2.277400016784668,843.5751953125,-951.6314697265625,5.88129997253418,840.605712890625,-1219.263427734375,-2.277400016784668,843.5751953125,-951.6314697265625,5.88129997253418,840.605712890625,-951.6314697265625,-2.277400016784668,843.5753173828125,-1219.263427734375,-10.95989990234375,843.5753173828125,-1219.263427734375,-10.95989990234375,843.5751953125,-951.6314697265625,-2.277400016784668,843.5753173828125,-1219.263427734375,-10.95989990234375,843.5751953125,-951.6314697265625,-2.277400016784668,843.5751953125,-951.6314697265625,-10.95989990234375,843.5753173828125,-1219.263427734375,-19.11870002746582,840.605712890625,-1219.263427734375,-19.11870002746582,840.605712890625,-951.6314697265625,-10.95989990234375,843.5753173828125,-1219.263427734375,-19.11870002746582,840.605712890625,-951.6314697265625,-10.95989990234375,843.5751953125,-951.6314697265625,-19.11870002746582,840.605712890625,-1219.263427734375,-25.769800186157227,835.0247192382812,-1219.263427734375,-25.769800186157227,835.0247192382812,-951.6314697265625,-19.11870002746582,840.605712890625,-1219.263427734375,-25.769800186157227,835.0247192382812,-951.6314697265625,-19.11870002746582,840.605712890625,-951.6314697265625,-25.769800186157227,835.0247192382812,-1219.263427734375,-30.111000061035156,827.505615234375,-1219.263427734375,-30.111000061035156,827.5054931640625,-951.6314697265625,-25.769800186157227,835.0247192382812,-1219.263427734375,-30.111000061035156,827.5054931640625,-951.6314697265625,-25.769800186157227,835.0247192382812,-951.6314697265625,-30.111000061035156,827.505615234375,-1219.263427734375,-31.61870002746582,818.955078125,-1219.263427734375,-31.61870002746582,818.9550170898438,-951.6314697265625,-30.111000061035156,827.505615234375,-1219.263427734375,-31.61870002746582,818.9550170898438,-951.6314697265625,-30.111000061035156,827.5054931640625,-951.6314697265625,-31.61870002746582,818.955078125,-1219.263427734375,-30.111000061035156,810.4044799804688,-1219.263427734375,-30.111000061035156,810.4044799804688,-951.6314697265625,-31.61870002746582,818.955078125,-1219.263427734375,-30.111000061035156,810.4044799804688,-951.6314697265625,-31.61870002746582,818.9550170898438,-951.6314697265625,-30.111000061035156,810.4044799804688,-1219.263427734375,-25.769800186157227,802.8853759765625,-1219.263427734375,-25.769800186157227,802.8853149414062,-951.6314697265625,-30.111000061035156,810.4044799804688,-1219.263427734375,-25.769800186157227,802.8853149414062,-951.6314697265625,-30.111000061035156,810.4044799804688,-951.6314697265625,-25.769800186157227,802.8853759765625,-1219.263427734375,-19.11870002746582,797.3043823242188,-1219.263427734375,-19.11870002746582,797.3043823242188,-951.6314697265625,-25.769800186157227,802.8853759765625,-1219.263427734375,-19.11870002746582,797.3043823242188,-951.6314697265625,-25.769800186157227,802.8853149414062,-951.6314697265625,-19.11870002746582,797.3043823242188,-1219.263427734375,-10.95989990234375,794.3347778320312,-1219.263427734375,-10.95989990234375,794.3347778320312,-951.6314697265625,-19.11870002746582,797.3043823242188,-1219.263427734375,-10.95989990234375,794.3347778320312,-951.6314697265625,-19.11870002746582,797.3043823242188,-951.6314697265625,-10.95989990234375,794.3347778320312,-1219.263427734375,-2.2774999141693115,794.3347778320312,-1219.263427734375,-2.2774999141693115,794.3347778320312,-951.6314697265625,-10.95989990234375,794.3347778320312,-1219.263427734375,-2.2774999141693115,794.3347778320312,-951.6314697265625,-10.95989990234375,794.3347778320312,-951.6314697265625,-2.2774999141693115,794.3347778320312,-1219.263427734375,5.88129997253418,797.3043823242188,-1219.263427734375,5.88129997253418,797.3043823242188,-951.6314697265625,-2.2774999141693115,794.3347778320312,-1219.263427734375,5.88129997253418,797.3043823242188,-951.6314697265625,-2.2774999141693115,794.3347778320312,-951.6314697265625,5.88129997253418,797.3043823242188,-1219.263427734375,12.532400131225586,802.8853759765625,-1219.263427734375,12.532400131225586,802.8853149414062,-951.6314697265625,5.88129997253418,797.3043823242188,-1219.263427734375,12.532400131225586,802.8853149414062,-951.6314697265625,5.88129997253418,797.3043823242188,-951.6314697265625,12.532400131225586,802.8853759765625,-1219.263427734375,16.873699188232422,810.4044799804688,-1219.263427734375,16.873699188232422,810.4044799804688,-951.6314697265625,12.532400131225586,802.8853759765625,-1219.263427734375,16.873699188232422,810.4044799804688,-951.6314697265625,12.532400131225586,802.8853149414062,-951.6314697265625,16.873699188232422,810.4044799804688,-1219.263427734375,18.38129997253418,818.955078125,-1219.263427734375,18.38129997253418,818.9550170898438,-951.6314697265625,16.873699188232422,810.4044799804688,-1219.263427734375,18.38129997253418,818.9550170898438,-951.6314697265625,16.873699188232422,810.4044799804688,-951.6314697265625,18.38129997253418,818.9550170898438,-951.6314697265625,16.873699188232422,827.5054931640625,-951.6314697265625,16.873699188232422,827.5054931640625,-683.9995727539062,18.38129997253418,818.9550170898438,-951.6314697265625,16.873699188232422,827.5054931640625,-683.9995727539062,18.38129997253418,818.9550170898438,-683.9995727539062,16.873699188232422,827.5054931640625,-951.6314697265625,12.532500267028809,835.0247192382812,-951.6314697265625,12.532500267028809,835.0247192382812,-683.9995727539062,16.873699188232422,827.5054931640625,-951.6314697265625,12.532500267028809,835.0247192382812,-683.9995727539062,16.873699188232422,827.5054931640625,-683.9995727539062,12.532500267028809,835.0247192382812,-951.6314697265625,5.88129997253418,840.605712890625,-951.6314697265625,5.88129997253418,840.6055908203125,-683.9995727539062,12.532500267028809,835.0247192382812,-951.6314697265625,5.88129997253418,840.6055908203125,-683.9995727539062,12.532500267028809,835.0247192382812,-683.9995727539062,5.88129997253418,840.605712890625,-951.6314697265625,-2.277400016784668,843.5751953125,-951.6314697265625,-2.277400016784668,843.5750732421875,-683.9995727539062,5.88129997253418,840.605712890625,-951.6314697265625,-2.277400016784668,843.5750732421875,-683.9995727539062,5.88129997253418,840.6055908203125,-683.9995727539062,-2.277400016784668,843.5751953125,-951.6314697265625,-10.95989990234375,843.5751953125,-951.6314697265625,-10.95989990234375,843.5750732421875,-683.9995727539062,-2.277400016784668,843.5751953125,-951.6314697265625,-10.95989990234375,843.5750732421875,-683.9995727539062,-2.277400016784668,843.5750732421875,-683.9995727539062,-10.95989990234375,843.5751953125,-951.6314697265625,-19.11870002746582,840.605712890625,-951.6314697265625,-19.11870002746582,840.6055908203125,-683.9995727539062,-10.95989990234375,843.5751953125,-951.6314697265625,-19.11870002746582,840.6055908203125,-683.9995727539062,-10.95989990234375,843.5750732421875,-683.9995727539062,-19.11870002746582,840.605712890625,-951.6314697265625,-25.769800186157227,835.0247192382812,-951.6314697265625,-25.769800186157227,835.0247192382812,-683.9995727539062,-19.11870002746582,840.605712890625,-951.6314697265625,-25.769800186157227,835.0247192382812,-683.9995727539062,-19.11870002746582,840.6055908203125,-683.9995727539062,-25.769800186157227,835.0247192382812,-951.6314697265625,-30.111000061035156,827.5054931640625,-951.6314697265625,-30.111000061035156,827.5054931640625,-683.9995727539062,-25.769800186157227,835.0247192382812,-951.6314697265625,-30.111000061035156,827.5054931640625,-683.9995727539062,-25.769800186157227,835.0247192382812,-683.9995727539062,-30.111000061035156,827.5054931640625,-951.6314697265625,-31.61870002746582,818.9550170898438,-951.6314697265625,-31.61870002746582,818.9550170898438,-683.9995727539062,-30.111000061035156,827.5054931640625,-951.6314697265625,-31.61870002746582,818.9550170898438,-683.9995727539062,-30.111000061035156,827.5054931640625,-683.9995727539062,-31.61870002746582,818.9550170898438,-951.6314697265625,-30.111000061035156,810.4044799804688,-951.6314697265625,-30.111000061035156,810.4044799804688,-683.9995727539062,-31.61870002746582,818.9550170898438,-951.6314697265625,-30.111000061035156,810.4044799804688,-683.9995727539062,-31.61870002746582,818.9550170898438,-683.9995727539062,-30.111000061035156,810.4044799804688,-951.6314697265625,-25.769800186157227,802.8853149414062,-951.6314697265625,-25.769800186157227,802.8853149414062,-683.9995727539062,-30.111000061035156,810.4044799804688,-951.6314697265625,-25.769800186157227,802.8853149414062,-683.9995727539062,-30.111000061035156,810.4044799804688,-683.9995727539062,-25.769800186157227,802.8853149414062,-951.6314697265625,-19.11870002746582,797.3043823242188,-951.6314697265625,-19.11870002746582,797.3043212890625,-683.9995727539062,-25.769800186157227,802.8853149414062,-951.6314697265625,-19.11870002746582,797.3043212890625,-683.9995727539062,-25.769800186157227,802.8853149414062,-683.9995727539062,-19.11870002746582,797.3043823242188,-951.6314697265625,-10.95989990234375,794.3347778320312,-951.6314697265625,-10.95989990234375,794.3347778320312,-683.9995727539062,-19.11870002746582,797.3043823242188,-951.6314697265625,-10.95989990234375,794.3347778320312,-683.9995727539062,-19.11870002746582,797.3043212890625,-683.9995727539062,-10.95989990234375,794.3347778320312,-951.6314697265625,-2.2774999141693115,794.3347778320312,-951.6314697265625,-2.2774999141693115,794.3347778320312,-683.9995727539062,-10.95989990234375,794.3347778320312,-951.6314697265625,-2.2774999141693115,794.3347778320312,-683.9995727539062,-10.95989990234375,794.3347778320312,-683.9995727539062,-2.2774999141693115,794.3347778320312,-951.6314697265625,5.88129997253418,797.3043823242188,-951.6314697265625,5.88129997253418,797.3043212890625,-683.9995727539062,-2.2774999141693115,794.3347778320312,-951.6314697265625,5.88129997253418,797.3043212890625,-683.9995727539062,-2.2774999141693115,794.3347778320312,-683.9995727539062,5.88129997253418,797.3043823242188,-951.6314697265625,12.532400131225586,802.8853149414062,-951.6314697265625,12.532400131225586,802.8853149414062,-683.9995727539062,5.88129997253418,797.3043823242188,-951.6314697265625,12.532400131225586,802.8853149414062,-683.9995727539062,5.88129997253418,797.3043212890625,-683.9995727539062,12.532400131225586,802.8853149414062,-951.6314697265625,16.873699188232422,810.4044799804688,-951.6314697265625,16.873699188232422,810.4044189453125,-683.9995727539062,12.532400131225586,802.8853149414062,-951.6314697265625,16.873699188232422,810.4044189453125,-683.9995727539062,12.532400131225586,802.8853149414062,-683.9995727539062,16.873699188232422,810.4044799804688,-951.6314697265625,18.38129997253418,818.9550170898438,-951.6314697265625,18.38129997253418,818.9550170898438,-683.9995727539062,16.873699188232422,810.4044799804688,-951.6314697265625,18.38129997253418,818.9550170898438,-683.9995727539062,16.873699188232422,810.4044189453125,-683.9995727539062,18.38129997253418,818.9550170898438,-683.9995727539062,16.873699188232422,827.5054931640625,-683.9995727539062,16.873699188232422,827.50537109375,-416.3677062988281,18.38129997253418,818.9550170898438,-683.9995727539062,16.873699188232422,827.50537109375,-416.3677062988281,18.38129997253418,818.9548950195312,-416.3677062988281,16.873699188232422,827.5054931640625,-683.9995727539062,12.532500267028809,835.0247192382812,-683.9995727539062,12.532500267028809,835.0245971679688,-416.3677062988281,16.873699188232422,827.5054931640625,-683.9995727539062,12.532500267028809,835.0245971679688,-416.3677062988281,16.873699188232422,827.50537109375,-416.3677062988281,12.532500267028809,835.0247192382812,-683.9995727539062,5.88129997253418,840.6055908203125,-683.9995727539062,5.88129997253418,840.6055297851562,-416.3677062988281,12.532500267028809,835.0247192382812,-683.9995727539062,5.88129997253418,840.6055297851562,-416.3677062988281,12.532500267028809,835.0245971679688,-416.3677062988281,5.88129997253418,840.6055908203125,-683.9995727539062,-2.277400016784668,843.5750732421875,-683.9995727539062,-2.277400016784668,843.5750732421875,-416.3677062988281,5.88129997253418,840.6055908203125,-683.9995727539062,-2.277400016784668,843.5750732421875,-416.3677062988281,5.88129997253418,840.6055297851562,-416.3677062988281,-2.277400016784668,843.5750732421875,-683.9995727539062,-10.95989990234375,843.5750732421875,-683.9995727539062,-10.95989990234375,843.5750732421875,-416.3677062988281,-2.277400016784668,843.5750732421875,-683.9995727539062,-10.95989990234375,843.5750732421875,-416.3677062988281,-2.277400016784668,843.5750732421875,-416.3677062988281,-10.95989990234375,843.5750732421875,-683.9995727539062,-19.11870002746582,840.6055908203125,-683.9995727539062,-19.11870002746582,840.6055297851562,-416.3677062988281,-10.95989990234375,843.5750732421875,-683.9995727539062,-19.11870002746582,840.6055297851562,-416.3677062988281,-10.95989990234375,843.5750732421875,-416.3677062988281,-19.11870002746582,840.6055908203125,-683.9995727539062,-25.769800186157227,835.0247192382812,-683.9995727539062,-25.769800186157227,835.0245971679688,-416.3677062988281,-19.11870002746582,840.6055908203125,-683.9995727539062,-25.769800186157227,835.0245971679688,-416.3677062988281,-19.11870002746582,840.6055297851562,-416.3677062988281,-25.769800186157227,835.0247192382812,-683.9995727539062,-30.111000061035156,827.5054931640625,-683.9995727539062,-30.111000061035156,827.50537109375,-416.3677062988281,-25.769800186157227,835.0247192382812,-683.9995727539062,-30.111000061035156,827.50537109375,-416.3677062988281,-25.769800186157227,835.0245971679688,-416.3677062988281,-30.111000061035156,827.5054931640625,-683.9995727539062,-31.61870002746582,818.9550170898438,-683.9995727539062,-31.61870002746582,818.9548950195312,-416.3677062988281,-30.111000061035156,827.5054931640625,-683.9995727539062,-31.61870002746582,818.9548950195312,-416.3677062988281,-30.111000061035156,827.50537109375,-416.3677062988281,-31.61870002746582,818.9550170898438,-683.9995727539062,-30.111000061035156,810.4044799804688,-683.9995727539062,-30.111000061035156,810.4044189453125,-416.3677062988281,-31.61870002746582,818.9550170898438,-683.9995727539062,-30.111000061035156,810.4044189453125,-416.3677062988281,-31.61870002746582,818.9548950195312,-416.3677062988281,-30.111000061035156,810.4044799804688,-683.9995727539062,-25.769800186157227,802.8853149414062,-683.9995727539062,-25.769800186157227,802.8853149414062,-416.3677062988281,-30.111000061035156,810.4044799804688,-683.9995727539062,-25.769800186157227,802.8853149414062,-416.3677062988281,-30.111000061035156,810.4044189453125,-416.3677062988281,-25.769800186157227,802.8853149414062,-683.9995727539062,-19.11870002746582,797.3043212890625,-683.9995727539062,-19.11870002746582,797.3043212890625,-416.3677062988281,-25.769800186157227,802.8853149414062,-683.9995727539062,-19.11870002746582,797.3043212890625,-416.3677062988281,-25.769800186157227,802.8853149414062,-416.3677062988281,-19.11870002746582,797.3043212890625,-683.9995727539062,-10.95989990234375,794.3347778320312,-683.9995727539062,-10.95989990234375,794.334716796875,-416.3677062988281,-19.11870002746582,797.3043212890625,-683.9995727539062,-10.95989990234375,794.334716796875,-416.3677062988281,-19.11870002746582,797.3043212890625,-416.3677062988281,-10.95989990234375,794.3347778320312,-683.9995727539062,-2.2774999141693115,794.3347778320312,-683.9995727539062,-2.2774999141693115,794.334716796875,-416.3677062988281,-10.95989990234375,794.3347778320312,-683.9995727539062,-2.2774999141693115,794.334716796875,-416.3677062988281,-10.95989990234375,794.334716796875,-416.3677062988281,-2.2774999141693115,794.3347778320312,-683.9995727539062,5.88129997253418,797.3043212890625,-683.9995727539062,5.88129997253418,797.3043212890625,-416.3677062988281,-2.2774999141693115,794.3347778320312,-683.9995727539062,5.88129997253418,797.3043212890625,-416.3677062988281,-2.2774999141693115,794.334716796875,-416.3677062988281,5.88129997253418,797.3043212890625,-683.9995727539062,12.532400131225586,802.8853149414062,-683.9995727539062,12.532400131225586,802.8851928710938,-416.3677062988281,5.88129997253418,797.3043212890625,-683.9995727539062,12.532400131225586,802.8851928710938,-416.3677062988281,5.88129997253418,797.3043212890625,-416.3677062988281,12.532400131225586,802.8853149414062,-683.9995727539062,16.873699188232422,810.4044189453125,-683.9995727539062,16.873699188232422,810.4044189453125,-416.3677062988281,12.532400131225586,802.8853149414062,-683.9995727539062,16.873699188232422,810.4044189453125,-416.3677062988281,12.532400131225586,802.8851928710938,-416.3677062988281,16.873699188232422,810.4044189453125,-683.9995727539062,18.38129997253418,818.9550170898438,-683.9995727539062,18.38129997253418,818.9548950195312,-416.3677062988281,16.873699188232422,810.4044189453125,-683.9995727539062,18.38129997253418,818.9548950195312,-416.3677062988281,16.873699188232422,810.4044189453125,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,16.873699188232422,810.4044189453125,-416.3677062988281,18.38129997253418,818.9548950195312,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,18.38129997253418,818.9548950195312,-416.3677062988281,16.873699188232422,827.50537109375,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,16.873699188232422,827.50537109375,-416.3677062988281,12.532500267028809,835.0245971679688,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,12.532500267028809,835.0245971679688,-416.3677062988281,5.88129997253418,840.6055297851562,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,5.88129997253418,840.6055297851562,-416.3677062988281,-2.277400016784668,843.5750732421875,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,-2.277400016784668,843.5750732421875,-416.3677062988281,-10.95989990234375,843.5750732421875,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,-10.95989990234375,843.5750732421875,-416.3677062988281,-19.11870002746582,840.6055297851562,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,-19.11870002746582,840.6055297851562,-416.3677062988281,-25.769800186157227,835.0245971679688,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,-25.769800186157227,835.0245971679688,-416.3677062988281,-30.111000061035156,827.50537109375,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,-30.111000061035156,827.50537109375,-416.3677062988281,-31.61870002746582,818.9548950195312,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,-31.61870002746582,818.9548950195312,-416.3677062988281,-30.111000061035156,810.4044189453125,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,-30.111000061035156,810.4044189453125,-416.3677062988281,-25.769800186157227,802.8853149414062,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,-25.769800186157227,802.8853149414062,-416.3677062988281,-19.11870002746582,797.3043212890625,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,-19.11870002746582,797.3043212890625,-416.3677062988281,-10.95989990234375,794.334716796875,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,-10.95989990234375,794.334716796875,-416.3677062988281,-2.2774999141693115,794.334716796875,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,-2.2774999141693115,794.334716796875,-416.3677062988281,5.88129997253418,797.3043212890625,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,5.88129997253418,797.3043212890625,-416.3677062988281,12.532400131225586,802.8851928710938,-416.3677062988281,-6.61870002746582,818.9548950195312,-416.3677062988281,12.532400131225586,802.8851928710938,-416.3677062988281,16.873699188232422,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-6.61870002746582,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466587351345
| }
| }
| },
| {
| "uuid": "36720573-534C-468E-AC10-39D9B05DFDBC",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [93.38130187988281,818.955078125,-1754.5272216796875,112.53250122070312,835.0247802734375,-1754.5272216796875,116.87370300292969,827.505615234375,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,116.87370300292969,827.505615234375,-1754.5272216796875,118.38130187988281,818.955078125,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,97.72250366210938,843.5753173828125,-1754.5272216796875,105.88130187988281,840.6057739257812,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,105.88130187988281,840.6057739257812,-1754.5272216796875,112.53250122070312,835.0247802734375,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,80.88130187988281,840.6057739257812,-1754.5272216796875,89.04010009765625,843.5753173828125,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,89.04010009765625,843.5753173828125,-1754.5272216796875,97.72250366210938,843.5753173828125,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,69.88899993896484,827.505615234375,-1754.5272216796875,74.2302017211914,835.0247802734375,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,74.2302017211914,835.0247802734375,-1754.5272216796875,80.88130187988281,840.6057739257812,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,69.88899993896484,810.4047241210938,-1754.5272216796875,68.38130187988281,818.955078125,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,68.38130187988281,818.955078125,-1754.5272216796875,69.88899993896484,827.505615234375,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,80.88130187988281,797.3045043945312,-1754.5272216796875,74.2302017211914,802.8853759765625,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,74.2302017211914,802.8853759765625,-1754.5272216796875,69.88899993896484,810.4047241210938,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,97.72250366210938,794.3350219726562,-1754.5272216796875,89.04010009765625,794.3350219726562,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,89.04010009765625,794.3350219726562,-1754.5272216796875,80.88130187988281,797.3045043945312,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,112.53240203857422,802.8853759765625,-1754.5272216796875,105.88130187988281,797.3045043945312,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,105.88130187988281,797.3045043945312,-1754.5272216796875,97.72250366210938,794.3350219726562,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,118.38130187988281,818.955078125,-1754.5272216796875,116.87370300292969,810.4046020507812,-1754.5272216796875,93.38130187988281,818.955078125,-1754.5272216796875,116.87370300292969,810.4046020507812,-1754.5272216796875,112.53240203857422,802.8853759765625,-1754.5272216796875,118.38130187988281,818.955078125,-1754.5272216796875,116.87370300292969,827.505615234375,-1754.5272216796875,116.87370300292969,827.505615234375,-1486.895263671875,118.38130187988281,818.955078125,-1754.5272216796875,116.87370300292969,827.505615234375,-1486.895263671875,118.38130187988281,818.955078125,-1486.895263671875,116.87370300292969,827.505615234375,-1754.5272216796875,112.53250122070312,835.0247802734375,-1754.5272216796875,112.53250122070312,835.0247802734375,-1486.895263671875,116.87370300292969,827.505615234375,-1754.5272216796875,112.53250122070312,835.0247802734375,-1486.895263671875,116.87370300292969,827.505615234375,-1486.895263671875,112.53250122070312,835.0247802734375,-1754.5272216796875,105.88130187988281,840.6057739257812,-1754.5272216796875,105.88130187988281,840.605712890625,-1486.895263671875,112.53250122070312,835.0247802734375,-1754.5272216796875,105.88130187988281,840.605712890625,-1486.895263671875,112.53250122070312,835.0247802734375,-1486.895263671875,105.88130187988281,840.6057739257812,-1754.5272216796875,97.72250366210938,843.5753173828125,-1754.5272216796875,97.72250366210938,843.5753173828125,-1486.895263671875,105.88130187988281,840.6057739257812,-1754.5272216796875,97.72250366210938,843.5753173828125,-1486.895263671875,105.88130187988281,840.605712890625,-1486.895263671875,97.72250366210938,843.5753173828125,-1754.5272216796875,89.04010009765625,843.5753173828125,-1754.5272216796875,89.04010009765625,843.5753173828125,-1486.895263671875,97.72250366210938,843.5753173828125,-1754.5272216796875,89.04010009765625,843.5753173828125,-1486.895263671875,97.72250366210938,843.5753173828125,-1486.895263671875,89.04010009765625,843.5753173828125,-1754.5272216796875,80.88130187988281,840.6057739257812,-1754.5272216796875,80.88130187988281,840.605712890625,-1486.895263671875,89.04010009765625,843.5753173828125,-1754.5272216796875,80.88130187988281,840.605712890625,-1486.895263671875,89.04010009765625,843.5753173828125,-1486.895263671875,80.88130187988281,840.6057739257812,-1754.5272216796875,74.2302017211914,835.0247802734375,-1754.5272216796875,74.2302017211914,835.0247802734375,-1486.895263671875,80.88130187988281,840.6057739257812,-1754.5272216796875,74.2302017211914,835.0247802734375,-1486.895263671875,80.88130187988281,840.605712890625,-1486.895263671875,74.2302017211914,835.0247802734375,-1754.5272216796875,69.88899993896484,827.505615234375,-1754.5272216796875,69.88899993896484,827.505615234375,-1486.895263671875,74.2302017211914,835.0247802734375,-1754.5272216796875,69.88899993896484,827.505615234375,-1486.895263671875,74.2302017211914,835.0247802734375,-1486.895263671875,69.88899993896484,827.505615234375,-1754.5272216796875,68.38130187988281,818.955078125,-1754.5272216796875,68.38130187988281,818.955078125,-1486.895263671875,69.88899993896484,827.505615234375,-1754.5272216796875,68.38130187988281,818.955078125,-1486.895263671875,69.88899993896484,827.505615234375,-1486.895263671875,68.38130187988281,818.955078125,-1754.5272216796875,69.88899993896484,810.4047241210938,-1754.5272216796875,69.88899993896484,810.4046020507812,-1486.895263671875,68.38130187988281,818.955078125,-1754.5272216796875,69.88899993896484,810.4046020507812,-1486.895263671875,68.38130187988281,818.955078125,-1486.895263671875,69.88899993896484,810.4047241210938,-1754.5272216796875,74.2302017211914,802.8853759765625,-1754.5272216796875,74.2302017211914,802.8853759765625,-1486.895263671875,69.88899993896484,810.4047241210938,-1754.5272216796875,74.2302017211914,802.8853759765625,-1486.895263671875,69.88899993896484,810.4046020507812,-1486.895263671875,74.2302017211914,802.8853759765625,-1754.5272216796875,80.88130187988281,797.3045043945312,-1754.5272216796875,80.88130187988281,797.3043823242188,-1486.895263671875,74.2302017211914,802.8853759765625,-1754.5272216796875,80.88130187988281,797.3043823242188,-1486.895263671875,74.2302017211914,802.8853759765625,-1486.895263671875,80.88130187988281,797.3045043945312,-1754.5272216796875,89.04010009765625,794.3350219726562,-1754.5272216796875,89.04010009765625,794.3348999023438,-1486.895263671875,80.88130187988281,797.3045043945312,-1754.5272216796875,89.04010009765625,794.3348999023438,-1486.895263671875,80.88130187988281,797.3043823242188,-1486.895263671875,89.04010009765625,794.3350219726562,-1754.5272216796875,97.72250366210938,794.3350219726562,-1754.5272216796875,97.72250366210938,794.3348999023438,-1486.895263671875,89.04010009765625,794.3350219726562,-1754.5272216796875,97.72250366210938,794.3348999023438,-1486.895263671875,89.04010009765625,794.3348999023438,-1486.895263671875,97.72250366210938,794.3350219726562,-1754.5272216796875,105.88130187988281,797.3045043945312,-1754.5272216796875,105.88130187988281,797.3043823242188,-1486.895263671875,97.72250366210938,794.3350219726562,-1754.5272216796875,105.88130187988281,797.3043823242188,-1486.895263671875,97.72250366210938,794.3348999023438,-1486.895263671875,105.88130187988281,797.3045043945312,-1754.5272216796875,112.53240203857422,802.8853759765625,-1754.5272216796875,112.53240203857422,802.8853759765625,-1486.895263671875,105.88130187988281,797.3045043945312,-1754.5272216796875,112.53240203857422,802.8853759765625,-1486.895263671875,105.88130187988281,797.3043823242188,-1486.895263671875,112.53240203857422,802.8853759765625,-1754.5272216796875,116.87370300292969,810.4046020507812,-1754.5272216796875,116.87370300292969,810.4046020507812,-1486.895263671875,112.53240203857422,802.8853759765625,-1754.5272216796875,116.87370300292969,810.4046020507812,-1486.895263671875,112.53240203857422,802.8853759765625,-1486.895263671875,116.87370300292969,810.4046020507812,-1754.5272216796875,118.38130187988281,818.955078125,-1754.5272216796875,118.38130187988281,818.955078125,-1486.895263671875,116.87370300292969,810.4046020507812,-1754.5272216796875,118.38130187988281,818.955078125,-1486.895263671875,116.87370300292969,810.4046020507812,-1486.895263671875,118.38130187988281,818.955078125,-1486.895263671875,116.87370300292969,827.505615234375,-1486.895263671875,116.87370300292969,827.505615234375,-1219.263427734375,118.38130187988281,818.955078125,-1486.895263671875,116.87370300292969,827.505615234375,-1219.263427734375,118.38130187988281,818.955078125,-1219.263427734375,116.87370300292969,827.505615234375,-1486.895263671875,112.53250122070312,835.0247802734375,-1486.895263671875,112.53250122070312,835.0247192382812,-1219.263427734375,116.87370300292969,827.505615234375,-1486.895263671875,112.53250122070312,835.0247192382812,-1219.263427734375,116.87370300292969,827.505615234375,-1219.263427734375,112.53250122070312,835.0247802734375,-1486.895263671875,105.88130187988281,840.605712890625,-1486.895263671875,105.88130187988281,840.605712890625,-1219.263427734375,112.53250122070312,835.0247802734375,-1486.895263671875,105.88130187988281,840.605712890625,-1219.263427734375,112.53250122070312,835.0247192382812,-1219.263427734375,105.88130187988281,840.605712890625,-1486.895263671875,97.72250366210938,843.5753173828125,-1486.895263671875,97.72250366210938,843.5753173828125,-1219.263427734375,105.88130187988281,840.605712890625,-1486.895263671875,97.72250366210938,843.5753173828125,-1219.263427734375,105.88130187988281,840.605712890625,-1219.263427734375,97.72250366210938,843.5753173828125,-1486.895263671875,89.04010009765625,843.5753173828125,-1486.895263671875,89.04010009765625,843.5753173828125,-1219.263427734375,97.72250366210938,843.5753173828125,-1486.895263671875,89.04010009765625,843.5753173828125,-1219.263427734375,97.72250366210938,843.5753173828125,-1219.263427734375,89.04010009765625,843.5753173828125,-1486.895263671875,80.88130187988281,840.605712890625,-1486.895263671875,80.88130187988281,840.605712890625,-1219.263427734375,89.04010009765625,843.5753173828125,-1486.895263671875,80.88130187988281,840.605712890625,-1219.263427734375,89.04010009765625,843.5753173828125,-1219.263427734375,80.88130187988281,840.605712890625,-1486.895263671875,74.2302017211914,835.0247802734375,-1486.895263671875,74.2302017211914,835.0247192382812,-1219.263427734375,80.88130187988281,840.605712890625,-1486.895263671875,74.2302017211914,835.0247192382812,-1219.263427734375,80.88130187988281,840.605712890625,-1219.263427734375,74.2302017211914,835.0247802734375,-1486.895263671875,69.88899993896484,827.505615234375,-1486.895263671875,69.88899993896484,827.505615234375,-1219.263427734375,74.2302017211914,835.0247802734375,-1486.895263671875,69.88899993896484,827.505615234375,-1219.263427734375,74.2302017211914,835.0247192382812,-1219.263427734375,69.88899993896484,827.505615234375,-1486.895263671875,68.38130187988281,818.955078125,-1486.895263671875,68.38130187988281,818.955078125,-1219.263427734375,69.88899993896484,827.505615234375,-1486.895263671875,68.38130187988281,818.955078125,-1219.263427734375,69.88899993896484,827.505615234375,-1219.263427734375,68.38130187988281,818.955078125,-1486.895263671875,69.88899993896484,810.4046020507812,-1486.895263671875,69.88899993896484,810.4044799804688,-1219.263427734375,68.38130187988281,818.955078125,-1486.895263671875,69.88899993896484,810.4044799804688,-1219.263427734375,68.38130187988281,818.955078125,-1219.263427734375,69.88899993896484,810.4046020507812,-1486.895263671875,74.2302017211914,802.8853759765625,-1486.895263671875,74.2302017211914,802.8853759765625,-1219.263427734375,69.88899993896484,810.4046020507812,-1486.895263671875,74.2302017211914,802.8853759765625,-1219.263427734375,69.88899993896484,810.4044799804688,-1219.263427734375,74.2302017211914,802.8853759765625,-1486.895263671875,80.88130187988281,797.3043823242188,-1486.895263671875,80.88130187988281,797.3043823242188,-1219.263427734375,74.2302017211914,802.8853759765625,-1486.895263671875,80.88130187988281,797.3043823242188,-1219.263427734375,74.2302017211914,802.8853759765625,-1219.263427734375,80.88130187988281,797.3043823242188,-1486.895263671875,89.04010009765625,794.3348999023438,-1486.895263671875,89.04010009765625,794.3347778320312,-1219.263427734375,80.88130187988281,797.3043823242188,-1486.895263671875,89.04010009765625,794.3347778320312,-1219.263427734375,80.88130187988281,797.3043823242188,-1219.263427734375,89.04010009765625,794.3348999023438,-1486.895263671875,97.72250366210938,794.3348999023438,-1486.895263671875,97.72250366210938,794.3347778320312,-1219.263427734375,89.04010009765625,794.3348999023438,-1486.895263671875,97.72250366210938,794.3347778320312,-1219.263427734375,89.04010009765625,794.3347778320312,-1219.263427734375,97.72250366210938,794.3348999023438,-1486.895263671875,105.88130187988281,797.3043823242188,-1486.895263671875,105.88130187988281,797.3043823242188,-1219.263427734375,97.72250366210938,794.3348999023438,-1486.895263671875,105.88130187988281,797.3043823242188,-1219.263427734375,97.72250366210938,794.3347778320312,-1219.263427734375,105.88130187988281,797.3043823242188,-1486.895263671875,112.53240203857422,802.8853759765625,-1486.895263671875,112.53240203857422,802.8853759765625,-1219.263427734375,105.88130187988281,797.3043823242188,-1486.895263671875,112.53240203857422,802.8853759765625,-1219.263427734375,105.88130187988281,797.3043823242188,-1219.263427734375,112.53240203857422,802.8853759765625,-1486.895263671875,116.87370300292969,810.4046020507812,-1486.895263671875,116.87370300292969,810.4044799804688,-1219.263427734375,112.53240203857422,802.8853759765625,-1486.895263671875,116.87370300292969,810.4044799804688,-1219.263427734375,112.53240203857422,802.8853759765625,-1219.263427734375,116.87370300292969,810.4046020507812,-1486.895263671875,118.38130187988281,818.955078125,-1486.895263671875,118.38130187988281,818.955078125,-1219.263427734375,116.87370300292969,810.4046020507812,-1486.895263671875,118.38130187988281,818.955078125,-1219.263427734375,116.87370300292969,810.4044799804688,-1219.263427734375,118.38130187988281,818.955078125,-1219.263427734375,116.87370300292969,827.505615234375,-1219.263427734375,116.87370300292969,827.5054931640625,-951.6314697265625,118.38130187988281,818.955078125,-1219.263427734375,116.87370300292969,827.5054931640625,-951.6314697265625,118.38130187988281,818.9550170898438,-951.6314697265625,116.87370300292969,827.505615234375,-1219.263427734375,112.53250122070312,835.0247192382812,-1219.263427734375,112.53250122070312,835.0247192382812,-951.6314697265625,116.87370300292969,827.505615234375,-1219.263427734375,112.53250122070312,835.0247192382812,-951.6314697265625,116.87370300292969,827.5054931640625,-951.6314697265625,112.53250122070312,835.0247192382812,-1219.263427734375,105.88130187988281,840.605712890625,-1219.263427734375,105.88130187988281,840.605712890625,-951.6314697265625,112.53250122070312,835.0247192382812,-1219.263427734375,105.88130187988281,840.605712890625,-951.6314697265625,112.53250122070312,835.0247192382812,-951.6314697265625,105.88130187988281,840.605712890625,-1219.263427734375,97.72250366210938,843.5753173828125,-1219.263427734375,97.72250366210938,843.5751953125,-951.6314697265625,105.88130187988281,840.605712890625,-1219.263427734375,97.72250366210938,843.5751953125,-951.6314697265625,105.88130187988281,840.605712890625,-951.6314697265625,97.72250366210938,843.5753173828125,-1219.263427734375,89.04010009765625,843.5753173828125,-1219.263427734375,89.04010009765625,843.5751953125,-951.6314697265625,97.72250366210938,843.5753173828125,-1219.263427734375,89.04010009765625,843.5751953125,-951.6314697265625,97.72250366210938,843.5751953125,-951.6314697265625,89.04010009765625,843.5753173828125,-1219.263427734375,80.88130187988281,840.605712890625,-1219.263427734375,80.88130187988281,840.605712890625,-951.6314697265625,89.04010009765625,843.5753173828125,-1219.263427734375,80.88130187988281,840.605712890625,-951.6314697265625,89.04010009765625,843.5751953125,-951.6314697265625,80.88130187988281,840.605712890625,-1219.263427734375,74.2302017211914,835.0247192382812,-1219.263427734375,74.2302017211914,835.0247192382812,-951.6314697265625,80.88130187988281,840.605712890625,-1219.263427734375,74.2302017211914,835.0247192382812,-951.6314697265625,80.88130187988281,840.605712890625,-951.6314697265625,74.2302017211914,835.0247192382812,-1219.263427734375,69.88899993896484,827.505615234375,-1219.263427734375,69.88899993896484,827.5054931640625,-951.6314697265625,74.2302017211914,835.0247192382812,-1219.263427734375,69.88899993896484,827.5054931640625,-951.6314697265625,74.2302017211914,835.0247192382812,-951.6314697265625,69.88899993896484,827.505615234375,-1219.263427734375,68.38130187988281,818.955078125,-1219.263427734375,68.38130187988281,818.9550170898438,-951.6314697265625,69.88899993896484,827.505615234375,-1219.263427734375,68.38130187988281,818.9550170898438,-951.6314697265625,69.88899993896484,827.5054931640625,-951.6314697265625,68.38130187988281,818.955078125,-1219.263427734375,69.88899993896484,810.4044799804688,-1219.263427734375,69.88899993896484,810.4044799804688,-951.6314697265625,68.38130187988281,818.955078125,-1219.263427734375,69.88899993896484,810.4044799804688,-951.6314697265625,68.38130187988281,818.9550170898438,-951.6314697265625,69.88899993896484,810.4044799804688,-1219.263427734375,74.2302017211914,802.8853759765625,-1219.263427734375,74.2302017211914,802.8853149414062,-951.6314697265625,69.88899993896484,810.4044799804688,-1219.263427734375,74.2302017211914,802.8853149414062,-951.6314697265625,69.88899993896484,810.4044799804688,-951.6314697265625,74.2302017211914,802.8853759765625,-1219.263427734375,80.88130187988281,797.3043823242188,-1219.263427734375,80.88130187988281,797.3043823242188,-951.6314697265625,74.2302017211914,802.8853759765625,-1219.263427734375,80.88130187988281,797.3043823242188,-951.6314697265625,74.2302017211914,802.8853149414062,-951.6314697265625,80.88130187988281,797.3043823242188,-1219.263427734375,89.04010009765625,794.3347778320312,-1219.263427734375,89.04010009765625,794.3347778320312,-951.6314697265625,80.88130187988281,797.3043823242188,-1219.263427734375,89.04010009765625,794.3347778320312,-951.6314697265625,80.88130187988281,797.3043823242188,-951.6314697265625,89.04010009765625,794.3347778320312,-1219.263427734375,97.72250366210938,794.3347778320312,-1219.263427734375,97.72250366210938,794.3347778320312,-951.6314697265625,89.04010009765625,794.3347778320312,-1219.263427734375,97.72250366210938,794.3347778320312,-951.6314697265625,89.04010009765625,794.3347778320312,-951.6314697265625,97.72250366210938,794.3347778320312,-1219.263427734375,105.88130187988281,797.3043823242188,-1219.263427734375,105.88130187988281,797.3043823242188,-951.6314697265625,97.72250366210938,794.3347778320312,-1219.263427734375,105.88130187988281,797.3043823242188,-951.6314697265625,97.72250366210938,794.3347778320312,-951.6314697265625,105.88130187988281,797.3043823242188,-1219.263427734375,112.53240203857422,802.8853759765625,-1219.263427734375,112.53240203857422,802.8853149414062,-951.6314697265625,105.88130187988281,797.3043823242188,-1219.263427734375,112.53240203857422,802.8853149414062,-951.6314697265625,105.88130187988281,797.3043823242188,-951.6314697265625,112.53240203857422,802.8853759765625,-1219.263427734375,116.87370300292969,810.4044799804688,-1219.263427734375,116.87370300292969,810.4044799804688,-951.6314697265625,112.53240203857422,802.8853759765625,-1219.263427734375,116.87370300292969,810.4044799804688,-951.6314697265625,112.53240203857422,802.8853149414062,-951.6314697265625,116.87370300292969,810.4044799804688,-1219.263427734375,118.38130187988281,818.955078125,-1219.263427734375,118.38130187988281,818.9550170898438,-951.6314697265625,116.87370300292969,810.4044799804688,-1219.263427734375,118.38130187988281,818.9550170898438,-951.6314697265625,116.87370300292969,810.4044799804688,-951.6314697265625,118.38130187988281,818.9550170898438,-951.6314697265625,116.87370300292969,827.5054931640625,-951.6314697265625,116.87370300292969,827.5054931640625,-683.9995727539062,118.38130187988281,818.9550170898438,-951.6314697265625,116.87370300292969,827.5054931640625,-683.9995727539062,118.38130187988281,818.9550170898438,-683.9995727539062,116.87370300292969,827.5054931640625,-951.6314697265625,112.53250122070312,835.0247192382812,-951.6314697265625,112.53250122070312,835.0247192382812,-683.9995727539062,116.87370300292969,827.5054931640625,-951.6314697265625,112.53250122070312,835.0247192382812,-683.9995727539062,116.87370300292969,827.5054931640625,-683.9995727539062,112.53250122070312,835.0247192382812,-951.6314697265625,105.88130187988281,840.605712890625,-951.6314697265625,105.88130187988281,840.6055908203125,-683.9995727539062,112.53250122070312,835.0247192382812,-951.6314697265625,105.88130187988281,840.6055908203125,-683.9995727539062,112.53250122070312,835.0247192382812,-683.9995727539062,105.88130187988281,840.605712890625,-951.6314697265625,97.72250366210938,843.5751953125,-951.6314697265625,97.72250366210938,843.5750732421875,-683.9995727539062,105.88130187988281,840.605712890625,-951.6314697265625,97.72250366210938,843.5750732421875,-683.9995727539062,105.88130187988281,840.6055908203125,-683.9995727539062,97.72250366210938,843.5751953125,-951.6314697265625,89.04010009765625,843.5751953125,-951.6314697265625,89.04010009765625,843.5750732421875,-683.9995727539062,97.72250366210938,843.5751953125,-951.6314697265625,89.04010009765625,843.5750732421875,-683.9995727539062,97.72250366210938,843.5750732421875,-683.9995727539062,89.04010009765625,843.5751953125,-951.6314697265625,80.88130187988281,840.605712890625,-951.6314697265625,80.88130187988281,840.6055908203125,-683.9995727539062,89.04010009765625,843.5751953125,-951.6314697265625,80.88130187988281,840.6055908203125,-683.9995727539062,89.04010009765625,843.5750732421875,-683.9995727539062,80.88130187988281,840.605712890625,-951.6314697265625,74.2302017211914,835.0247192382812,-951.6314697265625,74.2302017211914,835.0247192382812,-683.9995727539062,80.88130187988281,840.605712890625,-951.6314697265625,74.2302017211914,835.0247192382812,-683.9995727539062,80.88130187988281,840.6055908203125,-683.9995727539062,74.2302017211914,835.0247192382812,-951.6314697265625,69.88899993896484,827.5054931640625,-951.6314697265625,69.88899993896484,827.5054931640625,-683.9995727539062,74.2302017211914,835.0247192382812,-951.6314697265625,69.88899993896484,827.5054931640625,-683.9995727539062,74.2302017211914,835.0247192382812,-683.9995727539062,69.88899993896484,827.5054931640625,-951.6314697265625,68.38130187988281,818.9550170898438,-951.6314697265625,68.38130187988281,818.9550170898438,-683.9995727539062,69.88899993896484,827.5054931640625,-951.6314697265625,68.38130187988281,818.9550170898438,-683.9995727539062,69.88899993896484,827.5054931640625,-683.9995727539062,68.38130187988281,818.9550170898438,-951.6314697265625,69.88899993896484,810.4044799804688,-951.6314697265625,69.88899993896484,810.4044799804688,-683.9995727539062,68.38130187988281,818.9550170898438,-951.6314697265625,69.88899993896484,810.4044799804688,-683.9995727539062,68.38130187988281,818.9550170898438,-683.9995727539062,69.88899993896484,810.4044799804688,-951.6314697265625,74.2302017211914,802.8853149414062,-951.6314697265625,74.2302017211914,802.8853149414062,-683.9995727539062,69.88899993896484,810.4044799804688,-951.6314697265625,74.2302017211914,802.8853149414062,-683.9995727539062,69.88899993896484,810.4044799804688,-683.9995727539062,74.2302017211914,802.8853149414062,-951.6314697265625,80.88130187988281,797.3043823242188,-951.6314697265625,80.88130187988281,797.3043212890625,-683.9995727539062,74.2302017211914,802.8853149414062,-951.6314697265625,80.88130187988281,797.3043212890625,-683.9995727539062,74.2302017211914,802.8853149414062,-683.9995727539062,80.88130187988281,797.3043823242188,-951.6314697265625,89.04010009765625,794.3347778320312,-951.6314697265625,89.04010009765625,794.3347778320312,-683.9995727539062,80.88130187988281,797.3043823242188,-951.6314697265625,89.04010009765625,794.3347778320312,-683.9995727539062,80.88130187988281,797.3043212890625,-683.9995727539062,89.04010009765625,794.3347778320312,-951.6314697265625,97.72250366210938,794.3347778320312,-951.6314697265625,97.72250366210938,794.3347778320312,-683.9995727539062,89.04010009765625,794.3347778320312,-951.6314697265625,97.72250366210938,794.3347778320312,-683.9995727539062,89.04010009765625,794.3347778320312,-683.9995727539062,97.72250366210938,794.3347778320312,-951.6314697265625,105.88130187988281,797.3043823242188,-951.6314697265625,105.88130187988281,797.3043212890625,-683.9995727539062,97.72250366210938,794.3347778320312,-951.6314697265625,105.88130187988281,797.3043212890625,-683.9995727539062,97.72250366210938,794.3347778320312,-683.9995727539062,105.88130187988281,797.3043823242188,-951.6314697265625,112.53240203857422,802.8853149414062,-951.6314697265625,112.53240203857422,802.8853149414062,-683.9995727539062,105.88130187988281,797.3043823242188,-951.6314697265625,112.53240203857422,802.8853149414062,-683.9995727539062,105.88130187988281,797.3043212890625,-683.9995727539062,112.53240203857422,802.8853149414062,-951.6314697265625,116.87370300292969,810.4044799804688,-951.6314697265625,116.87370300292969,810.4044189453125,-683.9995727539062,112.53240203857422,802.8853149414062,-951.6314697265625,116.87370300292969,810.4044189453125,-683.9995727539062,112.53240203857422,802.8853149414062,-683.9995727539062,116.87370300292969,810.4044799804688,-951.6314697265625,118.38130187988281,818.9550170898438,-951.6314697265625,118.38130187988281,818.9550170898438,-683.9995727539062,116.87370300292969,810.4044799804688,-951.6314697265625,118.38130187988281,818.9550170898438,-683.9995727539062,116.87370300292969,810.4044189453125,-683.9995727539062,118.38130187988281,818.9550170898438,-683.9995727539062,116.87370300292969,827.5054931640625,-683.9995727539062,116.87370300292969,827.50537109375,-416.3677062988281,118.38130187988281,818.9550170898438,-683.9995727539062,116.87370300292969,827.50537109375,-416.3677062988281,118.38130187988281,818.9548950195312,-416.3677062988281,116.87370300292969,827.5054931640625,-683.9995727539062,112.53250122070312,835.0247192382812,-683.9995727539062,112.53250122070312,835.0245971679688,-416.3677062988281,116.87370300292969,827.5054931640625,-683.9995727539062,112.53250122070312,835.0245971679688,-416.3677062988281,116.87370300292969,827.50537109375,-416.3677062988281,112.53250122070312,835.0247192382812,-683.9995727539062,105.88130187988281,840.6055908203125,-683.9995727539062,105.88130187988281,840.6055297851562,-416.3677062988281,112.53250122070312,835.0247192382812,-683.9995727539062,105.88130187988281,840.6055297851562,-416.3677062988281,112.53250122070312,835.0245971679688,-416.3677062988281,105.88130187988281,840.6055908203125,-683.9995727539062,97.72250366210938,843.5750732421875,-683.9995727539062,97.72250366210938,843.5750732421875,-416.3677062988281,105.88130187988281,840.6055908203125,-683.9995727539062,97.72250366210938,843.5750732421875,-416.3677062988281,105.88130187988281,840.6055297851562,-416.3677062988281,97.72250366210938,843.5750732421875,-683.9995727539062,89.04010009765625,843.5750732421875,-683.9995727539062,89.04010009765625,843.5750732421875,-416.3677062988281,97.72250366210938,843.5750732421875,-683.9995727539062,89.04010009765625,843.5750732421875,-416.3677062988281,97.72250366210938,843.5750732421875,-416.3677062988281,89.04010009765625,843.5750732421875,-683.9995727539062,80.88130187988281,840.6055908203125,-683.9995727539062,80.88130187988281,840.6055297851562,-416.3677062988281,89.04010009765625,843.5750732421875,-683.9995727539062,80.88130187988281,840.6055297851562,-416.3677062988281,89.04010009765625,843.5750732421875,-416.3677062988281,80.88130187988281,840.6055908203125,-683.9995727539062,74.2302017211914,835.0247192382812,-683.9995727539062,74.2302017211914,835.0245971679688,-416.3677062988281,80.88130187988281,840.6055908203125,-683.9995727539062,74.2302017211914,835.0245971679688,-416.3677062988281,80.88130187988281,840.6055297851562,-416.3677062988281,74.2302017211914,835.0247192382812,-683.9995727539062,69.88899993896484,827.5054931640625,-683.9995727539062,69.88899993896484,827.50537109375,-416.3677062988281,74.2302017211914,835.0247192382812,-683.9995727539062,69.88899993896484,827.50537109375,-416.3677062988281,74.2302017211914,835.0245971679688,-416.3677062988281,69.88899993896484,827.5054931640625,-683.9995727539062,68.38130187988281,818.9550170898438,-683.9995727539062,68.38130187988281,818.9548950195312,-416.3677062988281,69.88899993896484,827.5054931640625,-683.9995727539062,68.38130187988281,818.9548950195312,-416.3677062988281,69.88899993896484,827.50537109375,-416.3677062988281,68.38130187988281,818.9550170898438,-683.9995727539062,69.88899993896484,810.4044799804688,-683.9995727539062,69.88899993896484,810.4044189453125,-416.3677062988281,68.38130187988281,818.9550170898438,-683.9995727539062,69.88899993896484,810.4044189453125,-416.3677062988281,68.38130187988281,818.9548950195312,-416.3677062988281,69.88899993896484,810.4044799804688,-683.9995727539062,74.2302017211914,802.8853149414062,-683.9995727539062,74.2302017211914,802.8853149414062,-416.3677062988281,69.88899993896484,810.4044799804688,-683.9995727539062,74.2302017211914,802.8853149414062,-416.3677062988281,69.88899993896484,810.4044189453125,-416.3677062988281,74.2302017211914,802.8853149414062,-683.9995727539062,80.88130187988281,797.3043212890625,-683.9995727539062,80.88130187988281,797.3043212890625,-416.3677062988281,74.2302017211914,802.8853149414062,-683.9995727539062,80.88130187988281,797.3043212890625,-416.3677062988281,74.2302017211914,802.8853149414062,-416.3677062988281,80.88130187988281,797.3043212890625,-683.9995727539062,89.04010009765625,794.3347778320312,-683.9995727539062,89.04010009765625,794.334716796875,-416.3677062988281,80.88130187988281,797.3043212890625,-683.9995727539062,89.04010009765625,794.334716796875,-416.3677062988281,80.88130187988281,797.3043212890625,-416.3677062988281,89.04010009765625,794.3347778320312,-683.9995727539062,97.72250366210938,794.3347778320312,-683.9995727539062,97.72250366210938,794.334716796875,-416.3677062988281,89.04010009765625,794.3347778320312,-683.9995727539062,97.72250366210938,794.334716796875,-416.3677062988281,89.04010009765625,794.334716796875,-416.3677062988281,97.72250366210938,794.3347778320312,-683.9995727539062,105.88130187988281,797.3043212890625,-683.9995727539062,105.88130187988281,797.3043212890625,-416.3677062988281,97.72250366210938,794.3347778320312,-683.9995727539062,105.88130187988281,797.3043212890625,-416.3677062988281,97.72250366210938,794.334716796875,-416.3677062988281,105.88130187988281,797.3043212890625,-683.9995727539062,112.53240203857422,802.8853149414062,-683.9995727539062,112.53240203857422,802.8851928710938,-416.3677062988281,105.88130187988281,797.3043212890625,-683.9995727539062,112.53240203857422,802.8851928710938,-416.3677062988281,105.88130187988281,797.3043212890625,-416.3677062988281,112.53240203857422,802.8853149414062,-683.9995727539062,116.87370300292969,810.4044189453125,-683.9995727539062,116.87370300292969,810.4044189453125,-416.3677062988281,112.53240203857422,802.8853149414062,-683.9995727539062,116.87370300292969,810.4044189453125,-416.3677062988281,112.53240203857422,802.8851928710938,-416.3677062988281,116.87370300292969,810.4044189453125,-683.9995727539062,118.38130187988281,818.9550170898438,-683.9995727539062,118.38130187988281,818.9548950195312,-416.3677062988281,116.87370300292969,810.4044189453125,-683.9995727539062,118.38130187988281,818.9548950195312,-416.3677062988281,116.87370300292969,810.4044189453125,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,116.87370300292969,810.4044189453125,-416.3677062988281,118.38130187988281,818.9548950195312,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,118.38130187988281,818.9548950195312,-416.3677062988281,116.87370300292969,827.50537109375,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,116.87370300292969,827.50537109375,-416.3677062988281,112.53250122070312,835.0245971679688,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,112.53250122070312,835.0245971679688,-416.3677062988281,105.88130187988281,840.6055297851562,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,105.88130187988281,840.6055297851562,-416.3677062988281,97.72250366210938,843.5750732421875,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,97.72250366210938,843.5750732421875,-416.3677062988281,89.04010009765625,843.5750732421875,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,89.04010009765625,843.5750732421875,-416.3677062988281,80.88130187988281,840.6055297851562,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,80.88130187988281,840.6055297851562,-416.3677062988281,74.2302017211914,835.0245971679688,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,74.2302017211914,835.0245971679688,-416.3677062988281,69.88899993896484,827.50537109375,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,69.88899993896484,827.50537109375,-416.3677062988281,68.38130187988281,818.9548950195312,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,68.38130187988281,818.9548950195312,-416.3677062988281,69.88899993896484,810.4044189453125,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,69.88899993896484,810.4044189453125,-416.3677062988281,74.2302017211914,802.8853149414062,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,74.2302017211914,802.8853149414062,-416.3677062988281,80.88130187988281,797.3043212890625,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,80.88130187988281,797.3043212890625,-416.3677062988281,89.04010009765625,794.334716796875,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,89.04010009765625,794.334716796875,-416.3677062988281,97.72250366210938,794.334716796875,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,97.72250366210938,794.334716796875,-416.3677062988281,105.88130187988281,797.3043212890625,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,105.88130187988281,797.3043212890625,-416.3677062988281,112.53240203857422,802.8851928710938,-416.3677062988281,93.38130187988281,818.9548950195312,-416.3677062988281,112.53240203857422,802.8851928710938,-416.3677062988281,116.87370300292969,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [93.38130187988281,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466584757576
| }
| }
| },
| {
| "uuid": "DCC454D4-AB65-47C4-AC47-A9AECA081EB9",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [193.3813018798828,818.955078125,-1754.5272216796875,212.53250122070312,835.0247802734375,-1754.5272216796875,216.8737030029297,827.505615234375,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,216.8737030029297,827.505615234375,-1754.5272216796875,218.3813018798828,818.955078125,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,197.72250366210938,843.5753173828125,-1754.5272216796875,205.8813018798828,840.6057739257812,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,205.8813018798828,840.6057739257812,-1754.5272216796875,212.53250122070312,835.0247802734375,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,180.8813018798828,840.6057739257812,-1754.5272216796875,189.04010009765625,843.5753173828125,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,189.04010009765625,843.5753173828125,-1754.5272216796875,197.72250366210938,843.5753173828125,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,169.88900756835938,827.505615234375,-1754.5272216796875,174.23019409179688,835.0247802734375,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,174.23019409179688,835.0247802734375,-1754.5272216796875,180.8813018798828,840.6057739257812,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,169.88900756835938,810.4047241210938,-1754.5272216796875,168.3813018798828,818.955078125,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,168.3813018798828,818.955078125,-1754.5272216796875,169.88900756835938,827.505615234375,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,180.8813018798828,797.3045043945312,-1754.5272216796875,174.23019409179688,802.8853759765625,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,174.23019409179688,802.8853759765625,-1754.5272216796875,169.88900756835938,810.4047241210938,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,197.72250366210938,794.3350219726562,-1754.5272216796875,189.04010009765625,794.3350219726562,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,189.04010009765625,794.3350219726562,-1754.5272216796875,180.8813018798828,797.3045043945312,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,212.5323944091797,802.8853759765625,-1754.5272216796875,205.8813018798828,797.3045043945312,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,205.8813018798828,797.3045043945312,-1754.5272216796875,197.72250366210938,794.3350219726562,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,218.3813018798828,818.955078125,-1754.5272216796875,216.8737030029297,810.4046020507812,-1754.5272216796875,193.3813018798828,818.955078125,-1754.5272216796875,216.8737030029297,810.4046020507812,-1754.5272216796875,212.5323944091797,802.8853759765625,-1754.5272216796875,218.3813018798828,818.955078125,-1754.5272216796875,216.8737030029297,827.505615234375,-1754.5272216796875,216.8737030029297,827.505615234375,-1486.895263671875,218.3813018798828,818.955078125,-1754.5272216796875,216.8737030029297,827.505615234375,-1486.895263671875,218.3813018798828,818.955078125,-1486.895263671875,216.8737030029297,827.505615234375,-1754.5272216796875,212.53250122070312,835.0247802734375,-1754.5272216796875,212.53250122070312,835.0247802734375,-1486.895263671875,216.8737030029297,827.505615234375,-1754.5272216796875,212.53250122070312,835.0247802734375,-1486.895263671875,216.8737030029297,827.505615234375,-1486.895263671875,212.53250122070312,835.0247802734375,-1754.5272216796875,205.8813018798828,840.6057739257812,-1754.5272216796875,205.8813018798828,840.605712890625,-1486.895263671875,212.53250122070312,835.0247802734375,-1754.5272216796875,205.8813018798828,840.605712890625,-1486.895263671875,212.53250122070312,835.0247802734375,-1486.895263671875,205.8813018798828,840.6057739257812,-1754.5272216796875,197.72250366210938,843.5753173828125,-1754.5272216796875,197.72250366210938,843.5753173828125,-1486.895263671875,205.8813018798828,840.6057739257812,-1754.5272216796875,197.72250366210938,843.5753173828125,-1486.895263671875,205.8813018798828,840.605712890625,-1486.895263671875,197.72250366210938,843.5753173828125,-1754.5272216796875,189.04010009765625,843.5753173828125,-1754.5272216796875,189.04010009765625,843.5753173828125,-1486.895263671875,197.72250366210938,843.5753173828125,-1754.5272216796875,189.04010009765625,843.5753173828125,-1486.895263671875,197.72250366210938,843.5753173828125,-1486.895263671875,189.04010009765625,843.5753173828125,-1754.5272216796875,180.8813018798828,840.6057739257812,-1754.5272216796875,180.8813018798828,840.605712890625,-1486.895263671875,189.04010009765625,843.5753173828125,-1754.5272216796875,180.8813018798828,840.605712890625,-1486.895263671875,189.04010009765625,843.5753173828125,-1486.895263671875,180.8813018798828,840.6057739257812,-1754.5272216796875,174.23019409179688,835.0247802734375,-1754.5272216796875,174.23019409179688,835.0247802734375,-1486.895263671875,180.8813018798828,840.6057739257812,-1754.5272216796875,174.23019409179688,835.0247802734375,-1486.895263671875,180.8813018798828,840.605712890625,-1486.895263671875,174.23019409179688,835.0247802734375,-1754.5272216796875,169.88900756835938,827.505615234375,-1754.5272216796875,169.88900756835938,827.505615234375,-1486.895263671875,174.23019409179688,835.0247802734375,-1754.5272216796875,169.88900756835938,827.505615234375,-1486.895263671875,174.23019409179688,835.0247802734375,-1486.895263671875,169.88900756835938,827.505615234375,-1754.5272216796875,168.3813018798828,818.955078125,-1754.5272216796875,168.3813018798828,818.955078125,-1486.895263671875,169.88900756835938,827.505615234375,-1754.5272216796875,168.3813018798828,818.955078125,-1486.895263671875,169.88900756835938,827.505615234375,-1486.895263671875,168.3813018798828,818.955078125,-1754.5272216796875,169.88900756835938,810.4047241210938,-1754.5272216796875,169.88900756835938,810.4046020507812,-1486.895263671875,168.3813018798828,818.955078125,-1754.5272216796875,169.88900756835938,810.4046020507812,-1486.895263671875,168.3813018798828,818.955078125,-1486.895263671875,169.88900756835938,810.4047241210938,-1754.5272216796875,174.23019409179688,802.8853759765625,-1754.5272216796875,174.23019409179688,802.8853759765625,-1486.895263671875,169.88900756835938,810.4047241210938,-1754.5272216796875,174.23019409179688,802.8853759765625,-1486.895263671875,169.88900756835938,810.4046020507812,-1486.895263671875,174.23019409179688,802.8853759765625,-1754.5272216796875,180.8813018798828,797.3045043945312,-1754.5272216796875,180.8813018798828,797.3043823242188,-1486.895263671875,174.23019409179688,802.8853759765625,-1754.5272216796875,180.8813018798828,797.3043823242188,-1486.895263671875,174.23019409179688,802.8853759765625,-1486.895263671875,180.8813018798828,797.3045043945312,-1754.5272216796875,189.04010009765625,794.3350219726562,-1754.5272216796875,189.04010009765625,794.3348999023438,-1486.895263671875,180.8813018798828,797.3045043945312,-1754.5272216796875,189.04010009765625,794.3348999023438,-1486.895263671875,180.8813018798828,797.3043823242188,-1486.895263671875,189.04010009765625,794.3350219726562,-1754.5272216796875,197.72250366210938,794.3350219726562,-1754.5272216796875,197.72250366210938,794.3348999023438,-1486.895263671875,189.04010009765625,794.3350219726562,-1754.5272216796875,197.72250366210938,794.3348999023438,-1486.895263671875,189.04010009765625,794.3348999023438,-1486.895263671875,197.72250366210938,794.3350219726562,-1754.5272216796875,205.8813018798828,797.3045043945312,-1754.5272216796875,205.8813018798828,797.3043823242188,-1486.895263671875,197.72250366210938,794.3350219726562,-1754.5272216796875,205.8813018798828,797.3043823242188,-1486.895263671875,197.72250366210938,794.3348999023438,-1486.895263671875,205.8813018798828,797.3045043945312,-1754.5272216796875,212.5323944091797,802.8853759765625,-1754.5272216796875,212.5323944091797,802.8853759765625,-1486.895263671875,205.8813018798828,797.3045043945312,-1754.5272216796875,212.5323944091797,802.8853759765625,-1486.895263671875,205.8813018798828,797.3043823242188,-1486.895263671875,212.5323944091797,802.8853759765625,-1754.5272216796875,216.8737030029297,810.4046020507812,-1754.5272216796875,216.8737030029297,810.4046020507812,-1486.895263671875,212.5323944091797,802.8853759765625,-1754.5272216796875,216.8737030029297,810.4046020507812,-1486.895263671875,212.5323944091797,802.8853759765625,-1486.895263671875,216.8737030029297,810.4046020507812,-1754.5272216796875,218.3813018798828,818.955078125,-1754.5272216796875,218.3813018798828,818.955078125,-1486.895263671875,216.8737030029297,810.4046020507812,-1754.5272216796875,218.3813018798828,818.955078125,-1486.895263671875,216.8737030029297,810.4046020507812,-1486.895263671875,218.3813018798828,818.955078125,-1486.895263671875,216.8737030029297,827.505615234375,-1486.895263671875,216.8737030029297,827.505615234375,-1219.263427734375,218.3813018798828,818.955078125,-1486.895263671875,216.8737030029297,827.505615234375,-1219.263427734375,218.3813018798828,818.955078125,-1219.263427734375,216.8737030029297,827.505615234375,-1486.895263671875,212.53250122070312,835.0247802734375,-1486.895263671875,212.53250122070312,835.0247192382812,-1219.263427734375,216.8737030029297,827.505615234375,-1486.895263671875,212.53250122070312,835.0247192382812,-1219.263427734375,216.8737030029297,827.505615234375,-1219.263427734375,212.53250122070312,835.0247802734375,-1486.895263671875,205.8813018798828,840.605712890625,-1486.895263671875,205.8813018798828,840.605712890625,-1219.263427734375,212.53250122070312,835.0247802734375,-1486.895263671875,205.8813018798828,840.605712890625,-1219.263427734375,212.53250122070312,835.0247192382812,-1219.263427734375,205.8813018798828,840.605712890625,-1486.895263671875,197.72250366210938,843.5753173828125,-1486.895263671875,197.72250366210938,843.5753173828125,-1219.263427734375,205.8813018798828,840.605712890625,-1486.895263671875,197.72250366210938,843.5753173828125,-1219.263427734375,205.8813018798828,840.605712890625,-1219.263427734375,197.72250366210938,843.5753173828125,-1486.895263671875,189.04010009765625,843.5753173828125,-1486.895263671875,189.04010009765625,843.5753173828125,-1219.263427734375,197.72250366210938,843.5753173828125,-1486.895263671875,189.04010009765625,843.5753173828125,-1219.263427734375,197.72250366210938,843.5753173828125,-1219.263427734375,189.04010009765625,843.5753173828125,-1486.895263671875,180.8813018798828,840.605712890625,-1486.895263671875,180.8813018798828,840.605712890625,-1219.263427734375,189.04010009765625,843.5753173828125,-1486.895263671875,180.8813018798828,840.605712890625,-1219.263427734375,189.04010009765625,843.5753173828125,-1219.263427734375,180.8813018798828,840.605712890625,-1486.895263671875,174.23019409179688,835.0247802734375,-1486.895263671875,174.23019409179688,835.0247192382812,-1219.263427734375,180.8813018798828,840.605712890625,-1486.895263671875,174.23019409179688,835.0247192382812,-1219.263427734375,180.8813018798828,840.605712890625,-1219.263427734375,174.23019409179688,835.0247802734375,-1486.895263671875,169.88900756835938,827.505615234375,-1486.895263671875,169.88900756835938,827.505615234375,-1219.263427734375,174.23019409179688,835.0247802734375,-1486.895263671875,169.88900756835938,827.505615234375,-1219.263427734375,174.23019409179688,835.0247192382812,-1219.263427734375,169.88900756835938,827.505615234375,-1486.895263671875,168.3813018798828,818.955078125,-1486.895263671875,168.3813018798828,818.955078125,-1219.263427734375,169.88900756835938,827.505615234375,-1486.895263671875,168.3813018798828,818.955078125,-1219.263427734375,169.88900756835938,827.505615234375,-1219.263427734375,168.3813018798828,818.955078125,-1486.895263671875,169.88900756835938,810.4046020507812,-1486.895263671875,169.88900756835938,810.4044799804688,-1219.263427734375,168.3813018798828,818.955078125,-1486.895263671875,169.88900756835938,810.4044799804688,-1219.263427734375,168.3813018798828,818.955078125,-1219.263427734375,169.88900756835938,810.4046020507812,-1486.895263671875,174.23019409179688,802.8853759765625,-1486.895263671875,174.23019409179688,802.8853759765625,-1219.263427734375,169.88900756835938,810.4046020507812,-1486.895263671875,174.23019409179688,802.8853759765625,-1219.263427734375,169.88900756835938,810.4044799804688,-1219.263427734375,174.23019409179688,802.8853759765625,-1486.895263671875,180.8813018798828,797.3043823242188,-1486.895263671875,180.8813018798828,797.3043823242188,-1219.263427734375,174.23019409179688,802.8853759765625,-1486.895263671875,180.8813018798828,797.3043823242188,-1219.263427734375,174.23019409179688,802.8853759765625,-1219.263427734375,180.8813018798828,797.3043823242188,-1486.895263671875,189.04010009765625,794.3348999023438,-1486.895263671875,189.04010009765625,794.3347778320312,-1219.263427734375,180.8813018798828,797.3043823242188,-1486.895263671875,189.04010009765625,794.3347778320312,-1219.263427734375,180.8813018798828,797.3043823242188,-1219.263427734375,189.04010009765625,794.3348999023438,-1486.895263671875,197.72250366210938,794.3348999023438,-1486.895263671875,197.72250366210938,794.3347778320312,-1219.263427734375,189.04010009765625,794.3348999023438,-1486.895263671875,197.72250366210938,794.3347778320312,-1219.263427734375,189.04010009765625,794.3347778320312,-1219.263427734375,197.72250366210938,794.3348999023438,-1486.895263671875,205.8813018798828,797.3043823242188,-1486.895263671875,205.8813018798828,797.3043823242188,-1219.263427734375,197.72250366210938,794.3348999023438,-1486.895263671875,205.8813018798828,797.3043823242188,-1219.263427734375,197.72250366210938,794.3347778320312,-1219.263427734375,205.8813018798828,797.3043823242188,-1486.895263671875,212.5323944091797,802.8853759765625,-1486.895263671875,212.5323944091797,802.8853759765625,-1219.263427734375,205.8813018798828,797.3043823242188,-1486.895263671875,212.5323944091797,802.8853759765625,-1219.263427734375,205.8813018798828,797.3043823242188,-1219.263427734375,212.5323944091797,802.8853759765625,-1486.895263671875,216.8737030029297,810.4046020507812,-1486.895263671875,216.8737030029297,810.4044799804688,-1219.263427734375,212.5323944091797,802.8853759765625,-1486.895263671875,216.8737030029297,810.4044799804688,-1219.263427734375,212.5323944091797,802.8853759765625,-1219.263427734375,216.8737030029297,810.4046020507812,-1486.895263671875,218.3813018798828,818.955078125,-1486.895263671875,218.3813018798828,818.955078125,-1219.263427734375,216.8737030029297,810.4046020507812,-1486.895263671875,218.3813018798828,818.955078125,-1219.263427734375,216.8737030029297,810.4044799804688,-1219.263427734375,218.3813018798828,818.955078125,-1219.263427734375,216.8737030029297,827.505615234375,-1219.263427734375,216.8737030029297,827.5054931640625,-951.6314697265625,218.3813018798828,818.955078125,-1219.263427734375,216.8737030029297,827.5054931640625,-951.6314697265625,218.3813018798828,818.9550170898438,-951.6314697265625,216.8737030029297,827.505615234375,-1219.263427734375,212.53250122070312,835.0247192382812,-1219.263427734375,212.53250122070312,835.0247192382812,-951.6314697265625,216.8737030029297,827.505615234375,-1219.263427734375,212.53250122070312,835.0247192382812,-951.6314697265625,216.8737030029297,827.5054931640625,-951.6314697265625,212.53250122070312,835.0247192382812,-1219.263427734375,205.8813018798828,840.605712890625,-1219.263427734375,205.8813018798828,840.605712890625,-951.6314697265625,212.53250122070312,835.0247192382812,-1219.263427734375,205.8813018798828,840.605712890625,-951.6314697265625,212.53250122070312,835.0247192382812,-951.6314697265625,205.8813018798828,840.605712890625,-1219.263427734375,197.72250366210938,843.5753173828125,-1219.263427734375,197.72250366210938,843.5751953125,-951.6314697265625,205.8813018798828,840.605712890625,-1219.263427734375,197.72250366210938,843.5751953125,-951.6314697265625,205.8813018798828,840.605712890625,-951.6314697265625,197.72250366210938,843.5753173828125,-1219.263427734375,189.04010009765625,843.5753173828125,-1219.263427734375,189.04010009765625,843.5751953125,-951.6314697265625,197.72250366210938,843.5753173828125,-1219.263427734375,189.04010009765625,843.5751953125,-951.6314697265625,197.72250366210938,843.5751953125,-951.6314697265625,189.04010009765625,843.5753173828125,-1219.263427734375,180.8813018798828,840.605712890625,-1219.263427734375,180.8813018798828,840.605712890625,-951.6314697265625,189.04010009765625,843.5753173828125,-1219.263427734375,180.8813018798828,840.605712890625,-951.6314697265625,189.04010009765625,843.5751953125,-951.6314697265625,180.8813018798828,840.605712890625,-1219.263427734375,174.23019409179688,835.0247192382812,-1219.263427734375,174.23019409179688,835.0247192382812,-951.6314697265625,180.8813018798828,840.605712890625,-1219.263427734375,174.23019409179688,835.0247192382812,-951.6314697265625,180.8813018798828,840.605712890625,-951.6314697265625,174.23019409179688,835.0247192382812,-1219.263427734375,169.88900756835938,827.505615234375,-1219.263427734375,169.88900756835938,827.5054931640625,-951.6314697265625,174.23019409179688,835.0247192382812,-1219.263427734375,169.88900756835938,827.5054931640625,-951.6314697265625,174.23019409179688,835.0247192382812,-951.6314697265625,169.88900756835938,827.505615234375,-1219.263427734375,168.3813018798828,818.955078125,-1219.263427734375,168.3813018798828,818.9550170898438,-951.6314697265625,169.88900756835938,827.505615234375,-1219.263427734375,168.3813018798828,818.9550170898438,-951.6314697265625,169.88900756835938,827.5054931640625,-951.6314697265625,168.3813018798828,818.955078125,-1219.263427734375,169.88900756835938,810.4044799804688,-1219.263427734375,169.88900756835938,810.4044799804688,-951.6314697265625,168.3813018798828,818.955078125,-1219.263427734375,169.88900756835938,810.4044799804688,-951.6314697265625,168.3813018798828,818.9550170898438,-951.6314697265625,169.88900756835938,810.4044799804688,-1219.263427734375,174.23019409179688,802.8853759765625,-1219.263427734375,174.23019409179688,802.8853149414062,-951.6314697265625,169.88900756835938,810.4044799804688,-1219.263427734375,174.23019409179688,802.8853149414062,-951.6314697265625,169.88900756835938,810.4044799804688,-951.6314697265625,174.23019409179688,802.8853759765625,-1219.263427734375,180.8813018798828,797.3043823242188,-1219.263427734375,180.8813018798828,797.3043823242188,-951.6314697265625,174.23019409179688,802.8853759765625,-1219.263427734375,180.8813018798828,797.3043823242188,-951.6314697265625,174.23019409179688,802.8853149414062,-951.6314697265625,180.8813018798828,797.3043823242188,-1219.263427734375,189.04010009765625,794.3347778320312,-1219.263427734375,189.04010009765625,794.3347778320312,-951.6314697265625,180.8813018798828,797.3043823242188,-1219.263427734375,189.04010009765625,794.3347778320312,-951.6314697265625,180.8813018798828,797.3043823242188,-951.6314697265625,189.04010009765625,794.3347778320312,-1219.263427734375,197.72250366210938,794.3347778320312,-1219.263427734375,197.72250366210938,794.3347778320312,-951.6314697265625,189.04010009765625,794.3347778320312,-1219.263427734375,197.72250366210938,794.3347778320312,-951.6314697265625,189.04010009765625,794.3347778320312,-951.6314697265625,197.72250366210938,794.3347778320312,-1219.263427734375,205.8813018798828,797.3043823242188,-1219.263427734375,205.8813018798828,797.3043823242188,-951.6314697265625,197.72250366210938,794.3347778320312,-1219.263427734375,205.8813018798828,797.3043823242188,-951.6314697265625,197.72250366210938,794.3347778320312,-951.6314697265625,205.8813018798828,797.3043823242188,-1219.263427734375,212.5323944091797,802.8853759765625,-1219.263427734375,212.5323944091797,802.8853149414062,-951.6314697265625,205.8813018798828,797.3043823242188,-1219.263427734375,212.5323944091797,802.8853149414062,-951.6314697265625,205.8813018798828,797.3043823242188,-951.6314697265625,212.5323944091797,802.8853759765625,-1219.263427734375,216.8737030029297,810.4044799804688,-1219.263427734375,216.8737030029297,810.4044799804688,-951.6314697265625,212.5323944091797,802.8853759765625,-1219.263427734375,216.8737030029297,810.4044799804688,-951.6314697265625,212.5323944091797,802.8853149414062,-951.6314697265625,216.8737030029297,810.4044799804688,-1219.263427734375,218.3813018798828,818.955078125,-1219.263427734375,218.3813018798828,818.9550170898438,-951.6314697265625,216.8737030029297,810.4044799804688,-1219.263427734375,218.3813018798828,818.9550170898438,-951.6314697265625,216.8737030029297,810.4044799804688,-951.6314697265625,218.3813018798828,818.9550170898438,-951.6314697265625,216.8737030029297,827.5054931640625,-951.6314697265625,216.8737030029297,827.5054931640625,-683.9995727539062,218.3813018798828,818.9550170898438,-951.6314697265625,216.8737030029297,827.5054931640625,-683.9995727539062,218.3813018798828,818.9550170898438,-683.9995727539062,216.8737030029297,827.5054931640625,-951.6314697265625,212.53250122070312,835.0247192382812,-951.6314697265625,212.53250122070312,835.0247192382812,-683.9995727539062,216.8737030029297,827.5054931640625,-951.6314697265625,212.53250122070312,835.0247192382812,-683.9995727539062,216.8737030029297,827.5054931640625,-683.9995727539062,212.53250122070312,835.0247192382812,-951.6314697265625,205.8813018798828,840.605712890625,-951.6314697265625,205.8813018798828,840.6055908203125,-683.9995727539062,212.53250122070312,835.0247192382812,-951.6314697265625,205.8813018798828,840.6055908203125,-683.9995727539062,212.53250122070312,835.0247192382812,-683.9995727539062,205.8813018798828,840.605712890625,-951.6314697265625,197.72250366210938,843.5751953125,-951.6314697265625,197.72250366210938,843.5750732421875,-683.9995727539062,205.8813018798828,840.605712890625,-951.6314697265625,197.72250366210938,843.5750732421875,-683.9995727539062,205.8813018798828,840.6055908203125,-683.9995727539062,197.72250366210938,843.5751953125,-951.6314697265625,189.04010009765625,843.5751953125,-951.6314697265625,189.04010009765625,843.5750732421875,-683.9995727539062,197.72250366210938,843.5751953125,-951.6314697265625,189.04010009765625,843.5750732421875,-683.9995727539062,197.72250366210938,843.5750732421875,-683.9995727539062,189.04010009765625,843.5751953125,-951.6314697265625,180.8813018798828,840.605712890625,-951.6314697265625,180.8813018798828,840.6055908203125,-683.9995727539062,189.04010009765625,843.5751953125,-951.6314697265625,180.8813018798828,840.6055908203125,-683.9995727539062,189.04010009765625,843.5750732421875,-683.9995727539062,180.8813018798828,840.605712890625,-951.6314697265625,174.23019409179688,835.0247192382812,-951.6314697265625,174.23019409179688,835.0247192382812,-683.9995727539062,180.8813018798828,840.605712890625,-951.6314697265625,174.23019409179688,835.0247192382812,-683.9995727539062,180.8813018798828,840.6055908203125,-683.9995727539062,174.23019409179688,835.0247192382812,-951.6314697265625,169.88900756835938,827.5054931640625,-951.6314697265625,169.88900756835938,827.5054931640625,-683.9995727539062,174.23019409179688,835.0247192382812,-951.6314697265625,169.88900756835938,827.5054931640625,-683.9995727539062,174.23019409179688,835.0247192382812,-683.9995727539062,169.88900756835938,827.5054931640625,-951.6314697265625,168.3813018798828,818.9550170898438,-951.6314697265625,168.3813018798828,818.9550170898438,-683.9995727539062,169.88900756835938,827.5054931640625,-951.6314697265625,168.3813018798828,818.9550170898438,-683.9995727539062,169.88900756835938,827.5054931640625,-683.9995727539062,168.3813018798828,818.9550170898438,-951.6314697265625,169.88900756835938,810.4044799804688,-951.6314697265625,169.88900756835938,810.4044799804688,-683.9995727539062,168.3813018798828,818.9550170898438,-951.6314697265625,169.88900756835938,810.4044799804688,-683.9995727539062,168.3813018798828,818.9550170898438,-683.9995727539062,169.88900756835938,810.4044799804688,-951.6314697265625,174.23019409179688,802.8853149414062,-951.6314697265625,174.23019409179688,802.8853149414062,-683.9995727539062,169.88900756835938,810.4044799804688,-951.6314697265625,174.23019409179688,802.8853149414062,-683.9995727539062,169.88900756835938,810.4044799804688,-683.9995727539062,174.23019409179688,802.8853149414062,-951.6314697265625,180.8813018798828,797.3043823242188,-951.6314697265625,180.8813018798828,797.3043212890625,-683.9995727539062,174.23019409179688,802.8853149414062,-951.6314697265625,180.8813018798828,797.3043212890625,-683.9995727539062,174.23019409179688,802.8853149414062,-683.9995727539062,180.8813018798828,797.3043823242188,-951.6314697265625,189.04010009765625,794.3347778320312,-951.6314697265625,189.04010009765625,794.3347778320312,-683.9995727539062,180.8813018798828,797.3043823242188,-951.6314697265625,189.04010009765625,794.3347778320312,-683.9995727539062,180.8813018798828,797.3043212890625,-683.9995727539062,189.04010009765625,794.3347778320312,-951.6314697265625,197.72250366210938,794.3347778320312,-951.6314697265625,197.72250366210938,794.3347778320312,-683.9995727539062,189.04010009765625,794.3347778320312,-951.6314697265625,197.72250366210938,794.3347778320312,-683.9995727539062,189.04010009765625,794.3347778320312,-683.9995727539062,197.72250366210938,794.3347778320312,-951.6314697265625,205.8813018798828,797.3043823242188,-951.6314697265625,205.8813018798828,797.3043212890625,-683.9995727539062,197.72250366210938,794.3347778320312,-951.6314697265625,205.8813018798828,797.3043212890625,-683.9995727539062,197.72250366210938,794.3347778320312,-683.9995727539062,205.8813018798828,797.3043823242188,-951.6314697265625,212.5323944091797,802.8853149414062,-951.6314697265625,212.5323944091797,802.8853149414062,-683.9995727539062,205.8813018798828,797.3043823242188,-951.6314697265625,212.5323944091797,802.8853149414062,-683.9995727539062,205.8813018798828,797.3043212890625,-683.9995727539062,212.5323944091797,802.8853149414062,-951.6314697265625,216.8737030029297,810.4044799804688,-951.6314697265625,216.8737030029297,810.4044189453125,-683.9995727539062,212.5323944091797,802.8853149414062,-951.6314697265625,216.8737030029297,810.4044189453125,-683.9995727539062,212.5323944091797,802.8853149414062,-683.9995727539062,216.8737030029297,810.4044799804688,-951.6314697265625,218.3813018798828,818.9550170898438,-951.6314697265625,218.3813018798828,818.9550170898438,-683.9995727539062,216.8737030029297,810.4044799804688,-951.6314697265625,218.3813018798828,818.9550170898438,-683.9995727539062,216.8737030029297,810.4044189453125,-683.9995727539062,218.3813018798828,818.9550170898438,-683.9995727539062,216.8737030029297,827.5054931640625,-683.9995727539062,216.8737030029297,827.50537109375,-416.3677062988281,218.3813018798828,818.9550170898438,-683.9995727539062,216.8737030029297,827.50537109375,-416.3677062988281,218.3813018798828,818.9548950195312,-416.3677062988281,216.8737030029297,827.5054931640625,-683.9995727539062,212.53250122070312,835.0247192382812,-683.9995727539062,212.53250122070312,835.0245971679688,-416.3677062988281,216.8737030029297,827.5054931640625,-683.9995727539062,212.53250122070312,835.0245971679688,-416.3677062988281,216.8737030029297,827.50537109375,-416.3677062988281,212.53250122070312,835.0247192382812,-683.9995727539062,205.8813018798828,840.6055908203125,-683.9995727539062,205.8813018798828,840.6055297851562,-416.3677062988281,212.53250122070312,835.0247192382812,-683.9995727539062,205.8813018798828,840.6055297851562,-416.3677062988281,212.53250122070312,835.0245971679688,-416.3677062988281,205.8813018798828,840.6055908203125,-683.9995727539062,197.72250366210938,843.5750732421875,-683.9995727539062,197.72250366210938,843.5750732421875,-416.3677062988281,205.8813018798828,840.6055908203125,-683.9995727539062,197.72250366210938,843.5750732421875,-416.3677062988281,205.8813018798828,840.6055297851562,-416.3677062988281,197.72250366210938,843.5750732421875,-683.9995727539062,189.04010009765625,843.5750732421875,-683.9995727539062,189.04010009765625,843.5750732421875,-416.3677062988281,197.72250366210938,843.5750732421875,-683.9995727539062,189.04010009765625,843.5750732421875,-416.3677062988281,197.72250366210938,843.5750732421875,-416.3677062988281,189.04010009765625,843.5750732421875,-683.9995727539062,180.8813018798828,840.6055908203125,-683.9995727539062,180.8813018798828,840.6055297851562,-416.3677062988281,189.04010009765625,843.5750732421875,-683.9995727539062,180.8813018798828,840.6055297851562,-416.3677062988281,189.04010009765625,843.5750732421875,-416.3677062988281,180.8813018798828,840.6055908203125,-683.9995727539062,174.23019409179688,835.0247192382812,-683.9995727539062,174.23019409179688,835.0245971679688,-416.3677062988281,180.8813018798828,840.6055908203125,-683.9995727539062,174.23019409179688,835.0245971679688,-416.3677062988281,180.8813018798828,840.6055297851562,-416.3677062988281,174.23019409179688,835.0247192382812,-683.9995727539062,169.88900756835938,827.5054931640625,-683.9995727539062,169.88900756835938,827.50537109375,-416.3677062988281,174.23019409179688,835.0247192382812,-683.9995727539062,169.88900756835938,827.50537109375,-416.3677062988281,174.23019409179688,835.0245971679688,-416.3677062988281,169.88900756835938,827.5054931640625,-683.9995727539062,168.3813018798828,818.9550170898438,-683.9995727539062,168.3813018798828,818.9548950195312,-416.3677062988281,169.88900756835938,827.5054931640625,-683.9995727539062,168.3813018798828,818.9548950195312,-416.3677062988281,169.88900756835938,827.50537109375,-416.3677062988281,168.3813018798828,818.9550170898438,-683.9995727539062,169.88900756835938,810.4044799804688,-683.9995727539062,169.88900756835938,810.4044189453125,-416.3677062988281,168.3813018798828,818.9550170898438,-683.9995727539062,169.88900756835938,810.4044189453125,-416.3677062988281,168.3813018798828,818.9548950195312,-416.3677062988281,169.88900756835938,810.4044799804688,-683.9995727539062,174.23019409179688,802.8853149414062,-683.9995727539062,174.23019409179688,802.8853149414062,-416.3677062988281,169.88900756835938,810.4044799804688,-683.9995727539062,174.23019409179688,802.8853149414062,-416.3677062988281,169.88900756835938,810.4044189453125,-416.3677062988281,174.23019409179688,802.8853149414062,-683.9995727539062,180.8813018798828,797.3043212890625,-683.9995727539062,180.8813018798828,797.3043212890625,-416.3677062988281,174.23019409179688,802.8853149414062,-683.9995727539062,180.8813018798828,797.3043212890625,-416.3677062988281,174.23019409179688,802.8853149414062,-416.3677062988281,180.8813018798828,797.3043212890625,-683.9995727539062,189.04010009765625,794.3347778320312,-683.9995727539062,189.04010009765625,794.334716796875,-416.3677062988281,180.8813018798828,797.3043212890625,-683.9995727539062,189.04010009765625,794.334716796875,-416.3677062988281,180.8813018798828,797.3043212890625,-416.3677062988281,189.04010009765625,794.3347778320312,-683.9995727539062,197.72250366210938,794.3347778320312,-683.9995727539062,197.72250366210938,794.334716796875,-416.3677062988281,189.04010009765625,794.3347778320312,-683.9995727539062,197.72250366210938,794.334716796875,-416.3677062988281,189.04010009765625,794.334716796875,-416.3677062988281,197.72250366210938,794.3347778320312,-683.9995727539062,205.8813018798828,797.3043212890625,-683.9995727539062,205.8813018798828,797.3043212890625,-416.3677062988281,197.72250366210938,794.3347778320312,-683.9995727539062,205.8813018798828,797.3043212890625,-416.3677062988281,197.72250366210938,794.334716796875,-416.3677062988281,205.8813018798828,797.3043212890625,-683.9995727539062,212.5323944091797,802.8853149414062,-683.9995727539062,212.5323944091797,802.8851928710938,-416.3677062988281,205.8813018798828,797.3043212890625,-683.9995727539062,212.5323944091797,802.8851928710938,-416.3677062988281,205.8813018798828,797.3043212890625,-416.3677062988281,212.5323944091797,802.8853149414062,-683.9995727539062,216.8737030029297,810.4044189453125,-683.9995727539062,216.8737030029297,810.4044189453125,-416.3677062988281,212.5323944091797,802.8853149414062,-683.9995727539062,216.8737030029297,810.4044189453125,-416.3677062988281,212.5323944091797,802.8851928710938,-416.3677062988281,216.8737030029297,810.4044189453125,-683.9995727539062,218.3813018798828,818.9550170898438,-683.9995727539062,218.3813018798828,818.9548950195312,-416.3677062988281,216.8737030029297,810.4044189453125,-683.9995727539062,218.3813018798828,818.9548950195312,-416.3677062988281,216.8737030029297,810.4044189453125,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,216.8737030029297,810.4044189453125,-416.3677062988281,218.3813018798828,818.9548950195312,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,218.3813018798828,818.9548950195312,-416.3677062988281,216.8737030029297,827.50537109375,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,216.8737030029297,827.50537109375,-416.3677062988281,212.53250122070312,835.0245971679688,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,212.53250122070312,835.0245971679688,-416.3677062988281,205.8813018798828,840.6055297851562,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,205.8813018798828,840.6055297851562,-416.3677062988281,197.72250366210938,843.5750732421875,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,197.72250366210938,843.5750732421875,-416.3677062988281,189.04010009765625,843.5750732421875,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,189.04010009765625,843.5750732421875,-416.3677062988281,180.8813018798828,840.6055297851562,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,180.8813018798828,840.6055297851562,-416.3677062988281,174.23019409179688,835.0245971679688,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,174.23019409179688,835.0245971679688,-416.3677062988281,169.88900756835938,827.50537109375,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,169.88900756835938,827.50537109375,-416.3677062988281,168.3813018798828,818.9548950195312,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,168.3813018798828,818.9548950195312,-416.3677062988281,169.88900756835938,810.4044189453125,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,169.88900756835938,810.4044189453125,-416.3677062988281,174.23019409179688,802.8853149414062,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,174.23019409179688,802.8853149414062,-416.3677062988281,180.8813018798828,797.3043212890625,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,180.8813018798828,797.3043212890625,-416.3677062988281,189.04010009765625,794.334716796875,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,189.04010009765625,794.334716796875,-416.3677062988281,197.72250366210938,794.334716796875,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,197.72250366210938,794.334716796875,-416.3677062988281,205.8813018798828,797.3043212890625,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,205.8813018798828,797.3043212890625,-416.3677062988281,212.5323944091797,802.8851928710938,-416.3677062988281,193.3813018798828,818.9548950195312,-416.3677062988281,212.5323944091797,802.8851928710938,-416.3677062988281,216.8737030029297,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [193.3813018798828,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466584757576
| }
| }
| },
| {
| "uuid": "3B966B7D-601B-468C-86F7-7EB2E63D54C8",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [293.38128662109375,818.955078125,-1754.5272216796875,312.5325012207031,835.0247802734375,-1754.5272216796875,316.8736877441406,827.505615234375,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,316.8736877441406,827.505615234375,-1754.5272216796875,318.38128662109375,818.955078125,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,297.72259521484375,843.5753173828125,-1754.5272216796875,305.88128662109375,840.6057739257812,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,305.88128662109375,840.6057739257812,-1754.5272216796875,312.5325012207031,835.0247802734375,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,280.88128662109375,840.6057739257812,-1754.5272216796875,289.04010009765625,843.5753173828125,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,289.04010009765625,843.5753173828125,-1754.5272216796875,297.72259521484375,843.5753173828125,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,269.8890075683594,827.505615234375,-1754.5272216796875,274.2301940917969,835.0247802734375,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,274.2301940917969,835.0247802734375,-1754.5272216796875,280.88128662109375,840.6057739257812,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,269.8890075683594,810.4047241210938,-1754.5272216796875,268.38128662109375,818.955078125,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,268.38128662109375,818.955078125,-1754.5272216796875,269.8890075683594,827.505615234375,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,280.88128662109375,797.3045043945312,-1754.5272216796875,274.2301940917969,802.8853759765625,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,274.2301940917969,802.8853759765625,-1754.5272216796875,269.8890075683594,810.4047241210938,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,297.7225036621094,794.3350219726562,-1754.5272216796875,289.04010009765625,794.3350219726562,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,289.04010009765625,794.3350219726562,-1754.5272216796875,280.88128662109375,797.3045043945312,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,312.53240966796875,802.8853759765625,-1754.5272216796875,305.88128662109375,797.3045043945312,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,305.88128662109375,797.3045043945312,-1754.5272216796875,297.7225036621094,794.3350219726562,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,318.38128662109375,818.955078125,-1754.5272216796875,316.8736877441406,810.4046020507812,-1754.5272216796875,293.38128662109375,818.955078125,-1754.5272216796875,316.8736877441406,810.4046020507812,-1754.5272216796875,312.53240966796875,802.8853759765625,-1754.5272216796875,318.38128662109375,818.955078125,-1754.5272216796875,316.8736877441406,827.505615234375,-1754.5272216796875,316.8736877441406,827.505615234375,-1486.895263671875,318.38128662109375,818.955078125,-1754.5272216796875,316.8736877441406,827.505615234375,-1486.895263671875,318.38128662109375,818.955078125,-1486.895263671875,316.8736877441406,827.505615234375,-1754.5272216796875,312.5325012207031,835.0247802734375,-1754.5272216796875,312.5325012207031,835.0247802734375,-1486.895263671875,316.8736877441406,827.505615234375,-1754.5272216796875,312.5325012207031,835.0247802734375,-1486.895263671875,316.8736877441406,827.505615234375,-1486.895263671875,312.5325012207031,835.0247802734375,-1754.5272216796875,305.88128662109375,840.6057739257812,-1754.5272216796875,305.88128662109375,840.605712890625,-1486.895263671875,312.5325012207031,835.0247802734375,-1754.5272216796875,305.88128662109375,840.605712890625,-1486.895263671875,312.5325012207031,835.0247802734375,-1486.895263671875,305.88128662109375,840.6057739257812,-1754.5272216796875,297.72259521484375,843.5753173828125,-1754.5272216796875,297.72259521484375,843.5753173828125,-1486.895263671875,305.88128662109375,840.6057739257812,-1754.5272216796875,297.72259521484375,843.5753173828125,-1486.895263671875,305.88128662109375,840.605712890625,-1486.895263671875,297.72259521484375,843.5753173828125,-1754.5272216796875,289.04010009765625,843.5753173828125,-1754.5272216796875,289.04010009765625,843.5753173828125,-1486.895263671875,297.72259521484375,843.5753173828125,-1754.5272216796875,289.04010009765625,843.5753173828125,-1486.895263671875,297.72259521484375,843.5753173828125,-1486.895263671875,289.04010009765625,843.5753173828125,-1754.5272216796875,280.88128662109375,840.6057739257812,-1754.5272216796875,280.88128662109375,840.605712890625,-1486.895263671875,289.04010009765625,843.5753173828125,-1754.5272216796875,280.88128662109375,840.605712890625,-1486.895263671875,289.04010009765625,843.5753173828125,-1486.895263671875,280.88128662109375,840.6057739257812,-1754.5272216796875,274.2301940917969,835.0247802734375,-1754.5272216796875,274.2301940917969,835.0247802734375,-1486.895263671875,280.88128662109375,840.6057739257812,-1754.5272216796875,274.2301940917969,835.0247802734375,-1486.895263671875,280.88128662109375,840.605712890625,-1486.895263671875,274.2301940917969,835.0247802734375,-1754.5272216796875,269.8890075683594,827.505615234375,-1754.5272216796875,269.8890075683594,827.505615234375,-1486.895263671875,274.2301940917969,835.0247802734375,-1754.5272216796875,269.8890075683594,827.505615234375,-1486.895263671875,274.2301940917969,835.0247802734375,-1486.895263671875,269.8890075683594,827.505615234375,-1754.5272216796875,268.38128662109375,818.955078125,-1754.5272216796875,268.38128662109375,818.955078125,-1486.895263671875,269.8890075683594,827.505615234375,-1754.5272216796875,268.38128662109375,818.955078125,-1486.895263671875,269.8890075683594,827.505615234375,-1486.895263671875,268.38128662109375,818.955078125,-1754.5272216796875,269.8890075683594,810.4047241210938,-1754.5272216796875,269.8890075683594,810.4046020507812,-1486.895263671875,268.38128662109375,818.955078125,-1754.5272216796875,269.8890075683594,810.4046020507812,-1486.895263671875,268.38128662109375,818.955078125,-1486.895263671875,269.8890075683594,810.4047241210938,-1754.5272216796875,274.2301940917969,802.8853759765625,-1754.5272216796875,274.2301940917969,802.8853759765625,-1486.895263671875,269.8890075683594,810.4047241210938,-1754.5272216796875,274.2301940917969,802.8853759765625,-1486.895263671875,269.8890075683594,810.4046020507812,-1486.895263671875,274.2301940917969,802.8853759765625,-1754.5272216796875,280.88128662109375,797.3045043945312,-1754.5272216796875,280.88128662109375,797.3043823242188,-1486.895263671875,274.2301940917969,802.8853759765625,-1754.5272216796875,280.88128662109375,797.3043823242188,-1486.895263671875,274.2301940917969,802.8853759765625,-1486.895263671875,280.88128662109375,797.3045043945312,-1754.5272216796875,289.04010009765625,794.3350219726562,-1754.5272216796875,289.04010009765625,794.3348999023438,-1486.895263671875,280.88128662109375,797.3045043945312,-1754.5272216796875,289.04010009765625,794.3348999023438,-1486.895263671875,280.88128662109375,797.3043823242188,-1486.895263671875,289.04010009765625,794.3350219726562,-1754.5272216796875,297.7225036621094,794.3350219726562,-1754.5272216796875,297.7225036621094,794.3348999023438,-1486.895263671875,289.04010009765625,794.3350219726562,-1754.5272216796875,297.7225036621094,794.3348999023438,-1486.895263671875,289.04010009765625,794.3348999023438,-1486.895263671875,297.7225036621094,794.3350219726562,-1754.5272216796875,305.88128662109375,797.3045043945312,-1754.5272216796875,305.88128662109375,797.3043823242188,-1486.895263671875,297.7225036621094,794.3350219726562,-1754.5272216796875,305.88128662109375,797.3043823242188,-1486.895263671875,297.7225036621094,794.3348999023438,-1486.895263671875,305.88128662109375,797.3045043945312,-1754.5272216796875,312.53240966796875,802.8853759765625,-1754.5272216796875,312.53240966796875,802.8853759765625,-1486.895263671875,305.88128662109375,797.3045043945312,-1754.5272216796875,312.53240966796875,802.8853759765625,-1486.895263671875,305.88128662109375,797.3043823242188,-1486.895263671875,312.53240966796875,802.8853759765625,-1754.5272216796875,316.8736877441406,810.4046020507812,-1754.5272216796875,316.8736877441406,810.4046020507812,-1486.895263671875,312.53240966796875,802.8853759765625,-1754.5272216796875,316.8736877441406,810.4046020507812,-1486.895263671875,312.53240966796875,802.8853759765625,-1486.895263671875,316.8736877441406,810.4046020507812,-1754.5272216796875,318.38128662109375,818.955078125,-1754.5272216796875,318.38128662109375,818.955078125,-1486.895263671875,316.8736877441406,810.4046020507812,-1754.5272216796875,318.38128662109375,818.955078125,-1486.895263671875,316.8736877441406,810.4046020507812,-1486.895263671875,318.38128662109375,818.955078125,-1486.895263671875,316.8736877441406,827.505615234375,-1486.895263671875,316.8736877441406,827.505615234375,-1219.263427734375,318.38128662109375,818.955078125,-1486.895263671875,316.8736877441406,827.505615234375,-1219.263427734375,318.38128662109375,818.955078125,-1219.263427734375,316.8736877441406,827.505615234375,-1486.895263671875,312.5325012207031,835.0247802734375,-1486.895263671875,312.5325012207031,835.0247192382812,-1219.263427734375,316.8736877441406,827.505615234375,-1486.895263671875,312.5325012207031,835.0247192382812,-1219.263427734375,316.8736877441406,827.505615234375,-1219.263427734375,312.5325012207031,835.0247802734375,-1486.895263671875,305.88128662109375,840.605712890625,-1486.895263671875,305.88128662109375,840.605712890625,-1219.263427734375,312.5325012207031,835.0247802734375,-1486.895263671875,305.88128662109375,840.605712890625,-1219.263427734375,312.5325012207031,835.0247192382812,-1219.263427734375,305.88128662109375,840.605712890625,-1486.895263671875,297.72259521484375,843.5753173828125,-1486.895263671875,297.72259521484375,843.5753173828125,-1219.263427734375,305.88128662109375,840.605712890625,-1486.895263671875,297.72259521484375,843.5753173828125,-1219.263427734375,305.88128662109375,840.605712890625,-1219.263427734375,297.72259521484375,843.5753173828125,-1486.895263671875,289.04010009765625,843.5753173828125,-1486.895263671875,289.04010009765625,843.5753173828125,-1219.263427734375,297.72259521484375,843.5753173828125,-1486.895263671875,289.04010009765625,843.5753173828125,-1219.263427734375,297.72259521484375,843.5753173828125,-1219.263427734375,289.04010009765625,843.5753173828125,-1486.895263671875,280.88128662109375,840.605712890625,-1486.895263671875,280.88128662109375,840.605712890625,-1219.263427734375,289.04010009765625,843.5753173828125,-1486.895263671875,280.88128662109375,840.605712890625,-1219.263427734375,289.04010009765625,843.5753173828125,-1219.263427734375,280.88128662109375,840.605712890625,-1486.895263671875,274.2301940917969,835.0247802734375,-1486.895263671875,274.2301940917969,835.0247192382812,-1219.263427734375,280.88128662109375,840.605712890625,-1486.895263671875,274.2301940917969,835.0247192382812,-1219.263427734375,280.88128662109375,840.605712890625,-1219.263427734375,274.2301940917969,835.0247802734375,-1486.895263671875,269.8890075683594,827.505615234375,-1486.895263671875,269.8890075683594,827.505615234375,-1219.263427734375,274.2301940917969,835.0247802734375,-1486.895263671875,269.8890075683594,827.505615234375,-1219.263427734375,274.2301940917969,835.0247192382812,-1219.263427734375,269.8890075683594,827.505615234375,-1486.895263671875,268.38128662109375,818.955078125,-1486.895263671875,268.38128662109375,818.955078125,-1219.263427734375,269.8890075683594,827.505615234375,-1486.895263671875,268.38128662109375,818.955078125,-1219.263427734375,269.8890075683594,827.505615234375,-1219.263427734375,268.38128662109375,818.955078125,-1486.895263671875,269.8890075683594,810.4046020507812,-1486.895263671875,269.8890075683594,810.4044799804688,-1219.263427734375,268.38128662109375,818.955078125,-1486.895263671875,269.8890075683594,810.4044799804688,-1219.263427734375,268.38128662109375,818.955078125,-1219.263427734375,269.8890075683594,810.4046020507812,-1486.895263671875,274.2301940917969,802.8853759765625,-1486.895263671875,274.2301940917969,802.8853759765625,-1219.263427734375,269.8890075683594,810.4046020507812,-1486.895263671875,274.2301940917969,802.8853759765625,-1219.263427734375,269.8890075683594,810.4044799804688,-1219.263427734375,274.2301940917969,802.8853759765625,-1486.895263671875,280.88128662109375,797.3043823242188,-1486.895263671875,280.88128662109375,797.3043823242188,-1219.263427734375,274.2301940917969,802.8853759765625,-1486.895263671875,280.88128662109375,797.3043823242188,-1219.263427734375,274.2301940917969,802.8853759765625,-1219.263427734375,280.88128662109375,797.3043823242188,-1486.895263671875,289.04010009765625,794.3348999023438,-1486.895263671875,289.04010009765625,794.3347778320312,-1219.263427734375,280.88128662109375,797.3043823242188,-1486.895263671875,289.04010009765625,794.3347778320312,-1219.263427734375,280.88128662109375,797.3043823242188,-1219.263427734375,289.04010009765625,794.3348999023438,-1486.895263671875,297.7225036621094,794.3348999023438,-1486.895263671875,297.7225036621094,794.3347778320312,-1219.263427734375,289.04010009765625,794.3348999023438,-1486.895263671875,297.7225036621094,794.3347778320312,-1219.263427734375,289.04010009765625,794.3347778320312,-1219.263427734375,297.7225036621094,794.3348999023438,-1486.895263671875,305.88128662109375,797.3043823242188,-1486.895263671875,305.88128662109375,797.3043823242188,-1219.263427734375,297.7225036621094,794.3348999023438,-1486.895263671875,305.88128662109375,797.3043823242188,-1219.263427734375,297.7225036621094,794.3347778320312,-1219.263427734375,305.88128662109375,797.3043823242188,-1486.895263671875,312.53240966796875,802.8853759765625,-1486.895263671875,312.53240966796875,802.8853759765625,-1219.263427734375,305.88128662109375,797.3043823242188,-1486.895263671875,312.53240966796875,802.8853759765625,-1219.263427734375,305.88128662109375,797.3043823242188,-1219.263427734375,312.53240966796875,802.8853759765625,-1486.895263671875,316.8736877441406,810.4046020507812,-1486.895263671875,316.8736877441406,810.4044799804688,-1219.263427734375,312.53240966796875,802.8853759765625,-1486.895263671875,316.8736877441406,810.4044799804688,-1219.263427734375,312.53240966796875,802.8853759765625,-1219.263427734375,316.8736877441406,810.4046020507812,-1486.895263671875,318.38128662109375,818.955078125,-1486.895263671875,318.38128662109375,818.955078125,-1219.263427734375,316.8736877441406,810.4046020507812,-1486.895263671875,318.38128662109375,818.955078125,-1219.263427734375,316.8736877441406,810.4044799804688,-1219.263427734375,318.38128662109375,818.955078125,-1219.263427734375,316.8736877441406,827.505615234375,-1219.263427734375,316.8736877441406,827.5054931640625,-951.6314697265625,318.38128662109375,818.955078125,-1219.263427734375,316.8736877441406,827.5054931640625,-951.6314697265625,318.38128662109375,818.9550170898438,-951.6314697265625,316.8736877441406,827.505615234375,-1219.263427734375,312.5325012207031,835.0247192382812,-1219.263427734375,312.5325012207031,835.0247192382812,-951.6314697265625,316.8736877441406,827.505615234375,-1219.263427734375,312.5325012207031,835.0247192382812,-951.6314697265625,316.8736877441406,827.5054931640625,-951.6314697265625,312.5325012207031,835.0247192382812,-1219.263427734375,305.88128662109375,840.605712890625,-1219.263427734375,305.88128662109375,840.605712890625,-951.6314697265625,312.5325012207031,835.0247192382812,-1219.263427734375,305.88128662109375,840.605712890625,-951.6314697265625,312.5325012207031,835.0247192382812,-951.6314697265625,305.88128662109375,840.605712890625,-1219.263427734375,297.72259521484375,843.5753173828125,-1219.263427734375,297.72259521484375,843.5751953125,-951.6314697265625,305.88128662109375,840.605712890625,-1219.263427734375,297.72259521484375,843.5751953125,-951.6314697265625,305.88128662109375,840.605712890625,-951.6314697265625,297.72259521484375,843.5753173828125,-1219.263427734375,289.04010009765625,843.5753173828125,-1219.263427734375,289.04010009765625,843.5751953125,-951.6314697265625,297.72259521484375,843.5753173828125,-1219.263427734375,289.04010009765625,843.5751953125,-951.6314697265625,297.72259521484375,843.5751953125,-951.6314697265625,289.04010009765625,843.5753173828125,-1219.263427734375,280.88128662109375,840.605712890625,-1219.263427734375,280.88128662109375,840.605712890625,-951.6314697265625,289.04010009765625,843.5753173828125,-1219.263427734375,280.88128662109375,840.605712890625,-951.6314697265625,289.04010009765625,843.5751953125,-951.6314697265625,280.88128662109375,840.605712890625,-1219.263427734375,274.2301940917969,835.0247192382812,-1219.263427734375,274.2301940917969,835.0247192382812,-951.6314697265625,280.88128662109375,840.605712890625,-1219.263427734375,274.2301940917969,835.0247192382812,-951.6314697265625,280.88128662109375,840.605712890625,-951.6314697265625,274.2301940917969,835.0247192382812,-1219.263427734375,269.8890075683594,827.505615234375,-1219.263427734375,269.8890075683594,827.5054931640625,-951.6314697265625,274.2301940917969,835.0247192382812,-1219.263427734375,269.8890075683594,827.5054931640625,-951.6314697265625,274.2301940917969,835.0247192382812,-951.6314697265625,269.8890075683594,827.505615234375,-1219.263427734375,268.38128662109375,818.955078125,-1219.263427734375,268.38128662109375,818.9550170898438,-951.6314697265625,269.8890075683594,827.505615234375,-1219.263427734375,268.38128662109375,818.9550170898438,-951.6314697265625,269.8890075683594,827.5054931640625,-951.6314697265625,268.38128662109375,818.955078125,-1219.263427734375,269.8890075683594,810.4044799804688,-1219.263427734375,269.8890075683594,810.4044799804688,-951.6314697265625,268.38128662109375,818.955078125,-1219.263427734375,269.8890075683594,810.4044799804688,-951.6314697265625,268.38128662109375,818.9550170898438,-951.6314697265625,269.8890075683594,810.4044799804688,-1219.263427734375,274.2301940917969,802.8853759765625,-1219.263427734375,274.2301940917969,802.8853149414062,-951.6314697265625,269.8890075683594,810.4044799804688,-1219.263427734375,274.2301940917969,802.8853149414062,-951.6314697265625,269.8890075683594,810.4044799804688,-951.6314697265625,274.2301940917969,802.8853759765625,-1219.263427734375,280.88128662109375,797.3043823242188,-1219.263427734375,280.88128662109375,797.3043823242188,-951.6314697265625,274.2301940917969,802.8853759765625,-1219.263427734375,280.88128662109375,797.3043823242188,-951.6314697265625,274.2301940917969,802.8853149414062,-951.6314697265625,280.88128662109375,797.3043823242188,-1219.263427734375,289.04010009765625,794.3347778320312,-1219.263427734375,289.04010009765625,794.3347778320312,-951.6314697265625,280.88128662109375,797.3043823242188,-1219.263427734375,289.04010009765625,794.3347778320312,-951.6314697265625,280.88128662109375,797.3043823242188,-951.6314697265625,289.04010009765625,794.3347778320312,-1219.263427734375,297.7225036621094,794.3347778320312,-1219.263427734375,297.7225036621094,794.3347778320312,-951.6314697265625,289.04010009765625,794.3347778320312,-1219.263427734375,297.7225036621094,794.3347778320312,-951.6314697265625,289.04010009765625,794.3347778320312,-951.6314697265625,297.7225036621094,794.3347778320312,-1219.263427734375,305.88128662109375,797.3043823242188,-1219.263427734375,305.88128662109375,797.3043823242188,-951.6314697265625,297.7225036621094,794.3347778320312,-1219.263427734375,305.88128662109375,797.3043823242188,-951.6314697265625,297.7225036621094,794.3347778320312,-951.6314697265625,305.88128662109375,797.3043823242188,-1219.263427734375,312.53240966796875,802.8853759765625,-1219.263427734375,312.53240966796875,802.8853149414062,-951.6314697265625,305.88128662109375,797.3043823242188,-1219.263427734375,312.53240966796875,802.8853149414062,-951.6314697265625,305.88128662109375,797.3043823242188,-951.6314697265625,312.53240966796875,802.8853759765625,-1219.263427734375,316.8736877441406,810.4044799804688,-1219.263427734375,316.8736877441406,810.4044799804688,-951.6314697265625,312.53240966796875,802.8853759765625,-1219.263427734375,316.8736877441406,810.4044799804688,-951.6314697265625,312.53240966796875,802.8853149414062,-951.6314697265625,316.8736877441406,810.4044799804688,-1219.263427734375,318.38128662109375,818.955078125,-1219.263427734375,318.38128662109375,818.9550170898438,-951.6314697265625,316.8736877441406,810.4044799804688,-1219.263427734375,318.38128662109375,818.9550170898438,-951.6314697265625,316.8736877441406,810.4044799804688,-951.6314697265625,318.38128662109375,818.9550170898438,-951.6314697265625,316.8736877441406,827.5054931640625,-951.6314697265625,316.8736877441406,827.5054931640625,-683.9995727539062,318.38128662109375,818.9550170898438,-951.6314697265625,316.8736877441406,827.5054931640625,-683.9995727539062,318.38128662109375,818.9550170898438,-683.9995727539062,316.8736877441406,827.5054931640625,-951.6314697265625,312.5325012207031,835.0247192382812,-951.6314697265625,312.5325012207031,835.0247192382812,-683.9995727539062,316.8736877441406,827.5054931640625,-951.6314697265625,312.5325012207031,835.0247192382812,-683.9995727539062,316.8736877441406,827.5054931640625,-683.9995727539062,312.5325012207031,835.0247192382812,-951.6314697265625,305.88128662109375,840.605712890625,-951.6314697265625,305.88128662109375,840.6055908203125,-683.9995727539062,312.5325012207031,835.0247192382812,-951.6314697265625,305.88128662109375,840.6055908203125,-683.9995727539062,312.5325012207031,835.0247192382812,-683.9995727539062,305.88128662109375,840.605712890625,-951.6314697265625,297.72259521484375,843.5751953125,-951.6314697265625,297.72259521484375,843.5750732421875,-683.9995727539062,305.88128662109375,840.605712890625,-951.6314697265625,297.72259521484375,843.5750732421875,-683.9995727539062,305.88128662109375,840.6055908203125,-683.9995727539062,297.72259521484375,843.5751953125,-951.6314697265625,289.04010009765625,843.5751953125,-951.6314697265625,289.04010009765625,843.5750732421875,-683.9995727539062,297.72259521484375,843.5751953125,-951.6314697265625,289.04010009765625,843.5750732421875,-683.9995727539062,297.72259521484375,843.5750732421875,-683.9995727539062,289.04010009765625,843.5751953125,-951.6314697265625,280.88128662109375,840.605712890625,-951.6314697265625,280.88128662109375,840.6055908203125,-683.9995727539062,289.04010009765625,843.5751953125,-951.6314697265625,280.88128662109375,840.6055908203125,-683.9995727539062,289.04010009765625,843.5750732421875,-683.9995727539062,280.88128662109375,840.605712890625,-951.6314697265625,274.2301940917969,835.0247192382812,-951.6314697265625,274.2301940917969,835.0247192382812,-683.9995727539062,280.88128662109375,840.605712890625,-951.6314697265625,274.2301940917969,835.0247192382812,-683.9995727539062,280.88128662109375,840.6055908203125,-683.9995727539062,274.2301940917969,835.0247192382812,-951.6314697265625,269.8890075683594,827.5054931640625,-951.6314697265625,269.8890075683594,827.5054931640625,-683.9995727539062,274.2301940917969,835.0247192382812,-951.6314697265625,269.8890075683594,827.5054931640625,-683.9995727539062,274.2301940917969,835.0247192382812,-683.9995727539062,269.8890075683594,827.5054931640625,-951.6314697265625,268.38128662109375,818.9550170898438,-951.6314697265625,268.38128662109375,818.9550170898438,-683.9995727539062,269.8890075683594,827.5054931640625,-951.6314697265625,268.38128662109375,818.9550170898438,-683.9995727539062,269.8890075683594,827.5054931640625,-683.9995727539062,268.38128662109375,818.9550170898438,-951.6314697265625,269.8890075683594,810.4044799804688,-951.6314697265625,269.8890075683594,810.4044799804688,-683.9995727539062,268.38128662109375,818.9550170898438,-951.6314697265625,269.8890075683594,810.4044799804688,-683.9995727539062,268.38128662109375,818.9550170898438,-683.9995727539062,269.8890075683594,810.4044799804688,-951.6314697265625,274.2301940917969,802.8853149414062,-951.6314697265625,274.2301940917969,802.8853149414062,-683.9995727539062,269.8890075683594,810.4044799804688,-951.6314697265625,274.2301940917969,802.8853149414062,-683.9995727539062,269.8890075683594,810.4044799804688,-683.9995727539062,274.2301940917969,802.8853149414062,-951.6314697265625,280.88128662109375,797.3043823242188,-951.6314697265625,280.88128662109375,797.3043212890625,-683.9995727539062,274.2301940917969,802.8853149414062,-951.6314697265625,280.88128662109375,797.3043212890625,-683.9995727539062,274.2301940917969,802.8853149414062,-683.9995727539062,280.88128662109375,797.3043823242188,-951.6314697265625,289.04010009765625,794.3347778320312,-951.6314697265625,289.04010009765625,794.3347778320312,-683.9995727539062,280.88128662109375,797.3043823242188,-951.6314697265625,289.04010009765625,794.3347778320312,-683.9995727539062,280.88128662109375,797.3043212890625,-683.9995727539062,289.04010009765625,794.3347778320312,-951.6314697265625,297.7225036621094,794.3347778320312,-951.6314697265625,297.7225036621094,794.3347778320312,-683.9995727539062,289.04010009765625,794.3347778320312,-951.6314697265625,297.7225036621094,794.3347778320312,-683.9995727539062,289.04010009765625,794.3347778320312,-683.9995727539062,297.7225036621094,794.3347778320312,-951.6314697265625,305.88128662109375,797.3043823242188,-951.6314697265625,305.88128662109375,797.3043212890625,-683.9995727539062,297.7225036621094,794.3347778320312,-951.6314697265625,305.88128662109375,797.3043212890625,-683.9995727539062,297.7225036621094,794.3347778320312,-683.9995727539062,305.88128662109375,797.3043823242188,-951.6314697265625,312.53240966796875,802.8853149414062,-951.6314697265625,312.53240966796875,802.8853149414062,-683.9995727539062,305.88128662109375,797.3043823242188,-951.6314697265625,312.53240966796875,802.8853149414062,-683.9995727539062,305.88128662109375,797.3043212890625,-683.9995727539062,312.53240966796875,802.8853149414062,-951.6314697265625,316.8736877441406,810.4044799804688,-951.6314697265625,316.8736877441406,810.4044189453125,-683.9995727539062,312.53240966796875,802.8853149414062,-951.6314697265625,316.8736877441406,810.4044189453125,-683.9995727539062,312.53240966796875,802.8853149414062,-683.9995727539062,316.8736877441406,810.4044799804688,-951.6314697265625,318.38128662109375,818.9550170898438,-951.6314697265625,318.38128662109375,818.9550170898438,-683.9995727539062,316.8736877441406,810.4044799804688,-951.6314697265625,318.38128662109375,818.9550170898438,-683.9995727539062,316.8736877441406,810.4044189453125,-683.9995727539062,318.38128662109375,818.9550170898438,-683.9995727539062,316.8736877441406,827.5054931640625,-683.9995727539062,316.8736877441406,827.50537109375,-416.3677062988281,318.38128662109375,818.9550170898438,-683.9995727539062,316.8736877441406,827.50537109375,-416.3677062988281,318.38128662109375,818.9548950195312,-416.3677062988281,316.8736877441406,827.5054931640625,-683.9995727539062,312.5325012207031,835.0247192382812,-683.9995727539062,312.5325012207031,835.0245971679688,-416.3677062988281,316.8736877441406,827.5054931640625,-683.9995727539062,312.5325012207031,835.0245971679688,-416.3677062988281,316.8736877441406,827.50537109375,-416.3677062988281,312.5325012207031,835.0247192382812,-683.9995727539062,305.88128662109375,840.6055908203125,-683.9995727539062,305.88128662109375,840.6055297851562,-416.3677062988281,312.5325012207031,835.0247192382812,-683.9995727539062,305.88128662109375,840.6055297851562,-416.3677062988281,312.5325012207031,835.0245971679688,-416.3677062988281,305.88128662109375,840.6055908203125,-683.9995727539062,297.72259521484375,843.5750732421875,-683.9995727539062,297.72259521484375,843.5750732421875,-416.3677062988281,305.88128662109375,840.6055908203125,-683.9995727539062,297.72259521484375,843.5750732421875,-416.3677062988281,305.88128662109375,840.6055297851562,-416.3677062988281,297.72259521484375,843.5750732421875,-683.9995727539062,289.04010009765625,843.5750732421875,-683.9995727539062,289.04010009765625,843.5750732421875,-416.3677062988281,297.72259521484375,843.5750732421875,-683.9995727539062,289.04010009765625,843.5750732421875,-416.3677062988281,297.72259521484375,843.5750732421875,-416.3677062988281,289.04010009765625,843.5750732421875,-683.9995727539062,280.88128662109375,840.6055908203125,-683.9995727539062,280.88128662109375,840.6055297851562,-416.3677062988281,289.04010009765625,843.5750732421875,-683.9995727539062,280.88128662109375,840.6055297851562,-416.3677062988281,289.04010009765625,843.5750732421875,-416.3677062988281,280.88128662109375,840.6055908203125,-683.9995727539062,274.2301940917969,835.0247192382812,-683.9995727539062,274.2301940917969,835.0245971679688,-416.3677062988281,280.88128662109375,840.6055908203125,-683.9995727539062,274.2301940917969,835.0245971679688,-416.3677062988281,280.88128662109375,840.6055297851562,-416.3677062988281,274.2301940917969,835.0247192382812,-683.9995727539062,269.8890075683594,827.5054931640625,-683.9995727539062,269.8890075683594,827.50537109375,-416.3677062988281,274.2301940917969,835.0247192382812,-683.9995727539062,269.8890075683594,827.50537109375,-416.3677062988281,274.2301940917969,835.0245971679688,-416.3677062988281,269.8890075683594,827.5054931640625,-683.9995727539062,268.38128662109375,818.9550170898438,-683.9995727539062,268.38128662109375,818.9548950195312,-416.3677062988281,269.8890075683594,827.5054931640625,-683.9995727539062,268.38128662109375,818.9548950195312,-416.3677062988281,269.8890075683594,827.50537109375,-416.3677062988281,268.38128662109375,818.9550170898438,-683.9995727539062,269.8890075683594,810.4044799804688,-683.9995727539062,269.8890075683594,810.4044189453125,-416.3677062988281,268.38128662109375,818.9550170898438,-683.9995727539062,269.8890075683594,810.4044189453125,-416.3677062988281,268.38128662109375,818.9548950195312,-416.3677062988281,269.8890075683594,810.4044799804688,-683.9995727539062,274.2301940917969,802.8853149414062,-683.9995727539062,274.2301940917969,802.8853149414062,-416.3677062988281,269.8890075683594,810.4044799804688,-683.9995727539062,274.2301940917969,802.8853149414062,-416.3677062988281,269.8890075683594,810.4044189453125,-416.3677062988281,274.2301940917969,802.8853149414062,-683.9995727539062,280.88128662109375,797.3043212890625,-683.9995727539062,280.88128662109375,797.3043212890625,-416.3677062988281,274.2301940917969,802.8853149414062,-683.9995727539062,280.88128662109375,797.3043212890625,-416.3677062988281,274.2301940917969,802.8853149414062,-416.3677062988281,280.88128662109375,797.3043212890625,-683.9995727539062,289.04010009765625,794.3347778320312,-683.9995727539062,289.04010009765625,794.334716796875,-416.3677062988281,280.88128662109375,797.3043212890625,-683.9995727539062,289.04010009765625,794.334716796875,-416.3677062988281,280.88128662109375,797.3043212890625,-416.3677062988281,289.04010009765625,794.3347778320312,-683.9995727539062,297.7225036621094,794.3347778320312,-683.9995727539062,297.7225036621094,794.334716796875,-416.3677062988281,289.04010009765625,794.3347778320312,-683.9995727539062,297.7225036621094,794.334716796875,-416.3677062988281,289.04010009765625,794.334716796875,-416.3677062988281,297.7225036621094,794.3347778320312,-683.9995727539062,305.88128662109375,797.3043212890625,-683.9995727539062,305.88128662109375,797.3043212890625,-416.3677062988281,297.7225036621094,794.3347778320312,-683.9995727539062,305.88128662109375,797.3043212890625,-416.3677062988281,297.7225036621094,794.334716796875,-416.3677062988281,305.88128662109375,797.3043212890625,-683.9995727539062,312.53240966796875,802.8853149414062,-683.9995727539062,312.53240966796875,802.8851928710938,-416.3677062988281,305.88128662109375,797.3043212890625,-683.9995727539062,312.53240966796875,802.8851928710938,-416.3677062988281,305.88128662109375,797.3043212890625,-416.3677062988281,312.53240966796875,802.8853149414062,-683.9995727539062,316.8736877441406,810.4044189453125,-683.9995727539062,316.8736877441406,810.4044189453125,-416.3677062988281,312.53240966796875,802.8853149414062,-683.9995727539062,316.8736877441406,810.4044189453125,-416.3677062988281,312.53240966796875,802.8851928710938,-416.3677062988281,316.8736877441406,810.4044189453125,-683.9995727539062,318.38128662109375,818.9550170898438,-683.9995727539062,318.38128662109375,818.9548950195312,-416.3677062988281,316.8736877441406,810.4044189453125,-683.9995727539062,318.38128662109375,818.9548950195312,-416.3677062988281,316.8736877441406,810.4044189453125,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,316.8736877441406,810.4044189453125,-416.3677062988281,318.38128662109375,818.9548950195312,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,318.38128662109375,818.9548950195312,-416.3677062988281,316.8736877441406,827.50537109375,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,316.8736877441406,827.50537109375,-416.3677062988281,312.5325012207031,835.0245971679688,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,312.5325012207031,835.0245971679688,-416.3677062988281,305.88128662109375,840.6055297851562,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,305.88128662109375,840.6055297851562,-416.3677062988281,297.72259521484375,843.5750732421875,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,297.72259521484375,843.5750732421875,-416.3677062988281,289.04010009765625,843.5750732421875,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,289.04010009765625,843.5750732421875,-416.3677062988281,280.88128662109375,840.6055297851562,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,280.88128662109375,840.6055297851562,-416.3677062988281,274.2301940917969,835.0245971679688,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,274.2301940917969,835.0245971679688,-416.3677062988281,269.8890075683594,827.50537109375,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,269.8890075683594,827.50537109375,-416.3677062988281,268.38128662109375,818.9548950195312,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,268.38128662109375,818.9548950195312,-416.3677062988281,269.8890075683594,810.4044189453125,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,269.8890075683594,810.4044189453125,-416.3677062988281,274.2301940917969,802.8853149414062,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,274.2301940917969,802.8853149414062,-416.3677062988281,280.88128662109375,797.3043212890625,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,280.88128662109375,797.3043212890625,-416.3677062988281,289.04010009765625,794.334716796875,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,289.04010009765625,794.334716796875,-416.3677062988281,297.7225036621094,794.334716796875,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,297.7225036621094,794.334716796875,-416.3677062988281,305.88128662109375,797.3043212890625,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,305.88128662109375,797.3043212890625,-416.3677062988281,312.53240966796875,802.8851928710938,-416.3677062988281,293.38128662109375,818.9548950195312,-416.3677062988281,312.53240966796875,802.8851928710938,-416.3677062988281,316.8736877441406,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [293.38128662109375,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466589122084
| }
| }
| },
| {
| "uuid": "00F97D5B-C49B-4216-A69E-3AE59FCAB46F",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [393.38128662109375,818.955078125,-1754.5272216796875,412.5325012207031,835.0247802734375,-1754.5272216796875,416.8736877441406,827.505615234375,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,416.8736877441406,827.505615234375,-1754.5272216796875,418.38128662109375,818.955078125,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,397.72259521484375,843.5753173828125,-1754.5272216796875,405.88128662109375,840.6057739257812,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,405.88128662109375,840.6057739257812,-1754.5272216796875,412.5325012207031,835.0247802734375,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,380.88128662109375,840.6057739257812,-1754.5272216796875,389.04010009765625,843.5753173828125,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,389.04010009765625,843.5753173828125,-1754.5272216796875,397.72259521484375,843.5753173828125,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,369.8890075683594,827.505615234375,-1754.5272216796875,374.2301940917969,835.0247802734375,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,374.2301940917969,835.0247802734375,-1754.5272216796875,380.88128662109375,840.6057739257812,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,369.8890075683594,810.4047241210938,-1754.5272216796875,368.38128662109375,818.955078125,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,368.38128662109375,818.955078125,-1754.5272216796875,369.8890075683594,827.505615234375,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,380.88128662109375,797.3045043945312,-1754.5272216796875,374.2301940917969,802.8853759765625,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,374.2301940917969,802.8853759765625,-1754.5272216796875,369.8890075683594,810.4047241210938,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,397.7225036621094,794.3350219726562,-1754.5272216796875,389.04010009765625,794.3350219726562,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,389.04010009765625,794.3350219726562,-1754.5272216796875,380.88128662109375,797.3045043945312,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,412.53240966796875,802.8853759765625,-1754.5272216796875,405.88128662109375,797.3045043945312,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,405.88128662109375,797.3045043945312,-1754.5272216796875,397.7225036621094,794.3350219726562,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,418.38128662109375,818.955078125,-1754.5272216796875,416.8736877441406,810.4046020507812,-1754.5272216796875,393.38128662109375,818.955078125,-1754.5272216796875,416.8736877441406,810.4046020507812,-1754.5272216796875,412.53240966796875,802.8853759765625,-1754.5272216796875,418.38128662109375,818.955078125,-1754.5272216796875,416.8736877441406,827.505615234375,-1754.5272216796875,416.8736877441406,827.505615234375,-1486.895263671875,418.38128662109375,818.955078125,-1754.5272216796875,416.8736877441406,827.505615234375,-1486.895263671875,418.38128662109375,818.955078125,-1486.895263671875,416.8736877441406,827.505615234375,-1754.5272216796875,412.5325012207031,835.0247802734375,-1754.5272216796875,412.5325012207031,835.0247802734375,-1486.895263671875,416.8736877441406,827.505615234375,-1754.5272216796875,412.5325012207031,835.0247802734375,-1486.895263671875,416.8736877441406,827.505615234375,-1486.895263671875,412.5325012207031,835.0247802734375,-1754.5272216796875,405.88128662109375,840.6057739257812,-1754.5272216796875,405.88128662109375,840.605712890625,-1486.895263671875,412.5325012207031,835.0247802734375,-1754.5272216796875,405.88128662109375,840.605712890625,-1486.895263671875,412.5325012207031,835.0247802734375,-1486.895263671875,405.88128662109375,840.6057739257812,-1754.5272216796875,397.72259521484375,843.5753173828125,-1754.5272216796875,397.72259521484375,843.5753173828125,-1486.895263671875,405.88128662109375,840.6057739257812,-1754.5272216796875,397.72259521484375,843.5753173828125,-1486.895263671875,405.88128662109375,840.605712890625,-1486.895263671875,397.72259521484375,843.5753173828125,-1754.5272216796875,389.04010009765625,843.5753173828125,-1754.5272216796875,389.04010009765625,843.5753173828125,-1486.895263671875,397.72259521484375,843.5753173828125,-1754.5272216796875,389.04010009765625,843.5753173828125,-1486.895263671875,397.72259521484375,843.5753173828125,-1486.895263671875,389.04010009765625,843.5753173828125,-1754.5272216796875,380.88128662109375,840.6057739257812,-1754.5272216796875,380.88128662109375,840.605712890625,-1486.895263671875,389.04010009765625,843.5753173828125,-1754.5272216796875,380.88128662109375,840.605712890625,-1486.895263671875,389.04010009765625,843.5753173828125,-1486.895263671875,380.88128662109375,840.6057739257812,-1754.5272216796875,374.2301940917969,835.0247802734375,-1754.5272216796875,374.2301940917969,835.0247802734375,-1486.895263671875,380.88128662109375,840.6057739257812,-1754.5272216796875,374.2301940917969,835.0247802734375,-1486.895263671875,380.88128662109375,840.605712890625,-1486.895263671875,374.2301940917969,835.0247802734375,-1754.5272216796875,369.8890075683594,827.505615234375,-1754.5272216796875,369.8890075683594,827.505615234375,-1486.895263671875,374.2301940917969,835.0247802734375,-1754.5272216796875,369.8890075683594,827.505615234375,-1486.895263671875,374.2301940917969,835.0247802734375,-1486.895263671875,369.8890075683594,827.505615234375,-1754.5272216796875,368.38128662109375,818.955078125,-1754.5272216796875,368.38128662109375,818.955078125,-1486.895263671875,369.8890075683594,827.505615234375,-1754.5272216796875,368.38128662109375,818.955078125,-1486.895263671875,369.8890075683594,827.505615234375,-1486.895263671875,368.38128662109375,818.955078125,-1754.5272216796875,369.8890075683594,810.4047241210938,-1754.5272216796875,369.8890075683594,810.4046020507812,-1486.895263671875,368.38128662109375,818.955078125,-1754.5272216796875,369.8890075683594,810.4046020507812,-1486.895263671875,368.38128662109375,818.955078125,-1486.895263671875,369.8890075683594,810.4047241210938,-1754.5272216796875,374.2301940917969,802.8853759765625,-1754.5272216796875,374.2301940917969,802.8853759765625,-1486.895263671875,369.8890075683594,810.4047241210938,-1754.5272216796875,374.2301940917969,802.8853759765625,-1486.895263671875,369.8890075683594,810.4046020507812,-1486.895263671875,374.2301940917969,802.8853759765625,-1754.5272216796875,380.88128662109375,797.3045043945312,-1754.5272216796875,380.88128662109375,797.3043823242188,-1486.895263671875,374.2301940917969,802.8853759765625,-1754.5272216796875,380.88128662109375,797.3043823242188,-1486.895263671875,374.2301940917969,802.8853759765625,-1486.895263671875,380.88128662109375,797.3045043945312,-1754.5272216796875,389.04010009765625,794.3350219726562,-1754.5272216796875,389.04010009765625,794.3348999023438,-1486.895263671875,380.88128662109375,797.3045043945312,-1754.5272216796875,389.04010009765625,794.3348999023438,-1486.895263671875,380.88128662109375,797.3043823242188,-1486.895263671875,389.04010009765625,794.3350219726562,-1754.5272216796875,397.7225036621094,794.3350219726562,-1754.5272216796875,397.7225036621094,794.3348999023438,-1486.895263671875,389.04010009765625,794.3350219726562,-1754.5272216796875,397.7225036621094,794.3348999023438,-1486.895263671875,389.04010009765625,794.3348999023438,-1486.895263671875,397.7225036621094,794.3350219726562,-1754.5272216796875,405.88128662109375,797.3045043945312,-1754.5272216796875,405.88128662109375,797.3043823242188,-1486.895263671875,397.7225036621094,794.3350219726562,-1754.5272216796875,405.88128662109375,797.3043823242188,-1486.895263671875,397.7225036621094,794.3348999023438,-1486.895263671875,405.88128662109375,797.3045043945312,-1754.5272216796875,412.53240966796875,802.8853759765625,-1754.5272216796875,412.53240966796875,802.8853759765625,-1486.895263671875,405.88128662109375,797.3045043945312,-1754.5272216796875,412.53240966796875,802.8853759765625,-1486.895263671875,405.88128662109375,797.3043823242188,-1486.895263671875,412.53240966796875,802.8853759765625,-1754.5272216796875,416.8736877441406,810.4046020507812,-1754.5272216796875,416.8736877441406,810.4046020507812,-1486.895263671875,412.53240966796875,802.8853759765625,-1754.5272216796875,416.8736877441406,810.4046020507812,-1486.895263671875,412.53240966796875,802.8853759765625,-1486.895263671875,416.8736877441406,810.4046020507812,-1754.5272216796875,418.38128662109375,818.955078125,-1754.5272216796875,418.38128662109375,818.955078125,-1486.895263671875,416.8736877441406,810.4046020507812,-1754.5272216796875,418.38128662109375,818.955078125,-1486.895263671875,416.8736877441406,810.4046020507812,-1486.895263671875,418.38128662109375,818.955078125,-1486.895263671875,416.8736877441406,827.505615234375,-1486.895263671875,416.8736877441406,827.505615234375,-1219.263427734375,418.38128662109375,818.955078125,-1486.895263671875,416.8736877441406,827.505615234375,-1219.263427734375,418.38128662109375,818.955078125,-1219.263427734375,416.8736877441406,827.505615234375,-1486.895263671875,412.5325012207031,835.0247802734375,-1486.895263671875,412.5325012207031,835.0247192382812,-1219.263427734375,416.8736877441406,827.505615234375,-1486.895263671875,412.5325012207031,835.0247192382812,-1219.263427734375,416.8736877441406,827.505615234375,-1219.263427734375,412.5325012207031,835.0247802734375,-1486.895263671875,405.88128662109375,840.605712890625,-1486.895263671875,405.88128662109375,840.605712890625,-1219.263427734375,412.5325012207031,835.0247802734375,-1486.895263671875,405.88128662109375,840.605712890625,-1219.263427734375,412.5325012207031,835.0247192382812,-1219.263427734375,405.88128662109375,840.605712890625,-1486.895263671875,397.72259521484375,843.5753173828125,-1486.895263671875,397.72259521484375,843.5753173828125,-1219.263427734375,405.88128662109375,840.605712890625,-1486.895263671875,397.72259521484375,843.5753173828125,-1219.263427734375,405.88128662109375,840.605712890625,-1219.263427734375,397.72259521484375,843.5753173828125,-1486.895263671875,389.04010009765625,843.5753173828125,-1486.895263671875,389.04010009765625,843.5753173828125,-1219.263427734375,397.72259521484375,843.5753173828125,-1486.895263671875,389.04010009765625,843.5753173828125,-1219.263427734375,397.72259521484375,843.5753173828125,-1219.263427734375,389.04010009765625,843.5753173828125,-1486.895263671875,380.88128662109375,840.605712890625,-1486.895263671875,380.88128662109375,840.605712890625,-1219.263427734375,389.04010009765625,843.5753173828125,-1486.895263671875,380.88128662109375,840.605712890625,-1219.263427734375,389.04010009765625,843.5753173828125,-1219.263427734375,380.88128662109375,840.605712890625,-1486.895263671875,374.2301940917969,835.0247802734375,-1486.895263671875,374.2301940917969,835.0247192382812,-1219.263427734375,380.88128662109375,840.605712890625,-1486.895263671875,374.2301940917969,835.0247192382812,-1219.263427734375,380.88128662109375,840.605712890625,-1219.263427734375,374.2301940917969,835.0247802734375,-1486.895263671875,369.8890075683594,827.505615234375,-1486.895263671875,369.8890075683594,827.505615234375,-1219.263427734375,374.2301940917969,835.0247802734375,-1486.895263671875,369.8890075683594,827.505615234375,-1219.263427734375,374.2301940917969,835.0247192382812,-1219.263427734375,369.8890075683594,827.505615234375,-1486.895263671875,368.38128662109375,818.955078125,-1486.895263671875,368.38128662109375,818.955078125,-1219.263427734375,369.8890075683594,827.505615234375,-1486.895263671875,368.38128662109375,818.955078125,-1219.263427734375,369.8890075683594,827.505615234375,-1219.263427734375,368.38128662109375,818.955078125,-1486.895263671875,369.8890075683594,810.4046020507812,-1486.895263671875,369.8890075683594,810.4044799804688,-1219.263427734375,368.38128662109375,818.955078125,-1486.895263671875,369.8890075683594,810.4044799804688,-1219.263427734375,368.38128662109375,818.955078125,-1219.263427734375,369.8890075683594,810.4046020507812,-1486.895263671875,374.2301940917969,802.8853759765625,-1486.895263671875,374.2301940917969,802.8853759765625,-1219.263427734375,369.8890075683594,810.4046020507812,-1486.895263671875,374.2301940917969,802.8853759765625,-1219.263427734375,369.8890075683594,810.4044799804688,-1219.263427734375,374.2301940917969,802.8853759765625,-1486.895263671875,380.88128662109375,797.3043823242188,-1486.895263671875,380.88128662109375,797.3043823242188,-1219.263427734375,374.2301940917969,802.8853759765625,-1486.895263671875,380.88128662109375,797.3043823242188,-1219.263427734375,374.2301940917969,802.8853759765625,-1219.263427734375,380.88128662109375,797.3043823242188,-1486.895263671875,389.04010009765625,794.3348999023438,-1486.895263671875,389.04010009765625,794.3347778320312,-1219.263427734375,380.88128662109375,797.3043823242188,-1486.895263671875,389.04010009765625,794.3347778320312,-1219.263427734375,380.88128662109375,797.3043823242188,-1219.263427734375,389.04010009765625,794.3348999023438,-1486.895263671875,397.7225036621094,794.3348999023438,-1486.895263671875,397.7225036621094,794.3347778320312,-1219.263427734375,389.04010009765625,794.3348999023438,-1486.895263671875,397.7225036621094,794.3347778320312,-1219.263427734375,389.04010009765625,794.3347778320312,-1219.263427734375,397.7225036621094,794.3348999023438,-1486.895263671875,405.88128662109375,797.3043823242188,-1486.895263671875,405.88128662109375,797.3043823242188,-1219.263427734375,397.7225036621094,794.3348999023438,-1486.895263671875,405.88128662109375,797.3043823242188,-1219.263427734375,397.7225036621094,794.3347778320312,-1219.263427734375,405.88128662109375,797.3043823242188,-1486.895263671875,412.53240966796875,802.8853759765625,-1486.895263671875,412.53240966796875,802.8853759765625,-1219.263427734375,405.88128662109375,797.3043823242188,-1486.895263671875,412.53240966796875,802.8853759765625,-1219.263427734375,405.88128662109375,797.3043823242188,-1219.263427734375,412.53240966796875,802.8853759765625,-1486.895263671875,416.8736877441406,810.4046020507812,-1486.895263671875,416.8736877441406,810.4044799804688,-1219.263427734375,412.53240966796875,802.8853759765625,-1486.895263671875,416.8736877441406,810.4044799804688,-1219.263427734375,412.53240966796875,802.8853759765625,-1219.263427734375,416.8736877441406,810.4046020507812,-1486.895263671875,418.38128662109375,818.955078125,-1486.895263671875,418.38128662109375,818.955078125,-1219.263427734375,416.8736877441406,810.4046020507812,-1486.895263671875,418.38128662109375,818.955078125,-1219.263427734375,416.8736877441406,810.4044799804688,-1219.263427734375,418.38128662109375,818.955078125,-1219.263427734375,416.8736877441406,827.505615234375,-1219.263427734375,416.8736877441406,827.5054931640625,-951.6314697265625,418.38128662109375,818.955078125,-1219.263427734375,416.8736877441406,827.5054931640625,-951.6314697265625,418.38128662109375,818.9550170898438,-951.6314697265625,416.8736877441406,827.505615234375,-1219.263427734375,412.5325012207031,835.0247192382812,-1219.263427734375,412.5325012207031,835.0247192382812,-951.6314697265625,416.8736877441406,827.505615234375,-1219.263427734375,412.5325012207031,835.0247192382812,-951.6314697265625,416.8736877441406,827.5054931640625,-951.6314697265625,412.5325012207031,835.0247192382812,-1219.263427734375,405.88128662109375,840.605712890625,-1219.263427734375,405.88128662109375,840.605712890625,-951.6314697265625,412.5325012207031,835.0247192382812,-1219.263427734375,405.88128662109375,840.605712890625,-951.6314697265625,412.5325012207031,835.0247192382812,-951.6314697265625,405.88128662109375,840.605712890625,-1219.263427734375,397.72259521484375,843.5753173828125,-1219.263427734375,397.72259521484375,843.5751953125,-951.6314697265625,405.88128662109375,840.605712890625,-1219.263427734375,397.72259521484375,843.5751953125,-951.6314697265625,405.88128662109375,840.605712890625,-951.6314697265625,397.72259521484375,843.5753173828125,-1219.263427734375,389.04010009765625,843.5753173828125,-1219.263427734375,389.04010009765625,843.5751953125,-951.6314697265625,397.72259521484375,843.5753173828125,-1219.263427734375,389.04010009765625,843.5751953125,-951.6314697265625,397.72259521484375,843.5751953125,-951.6314697265625,389.04010009765625,843.5753173828125,-1219.263427734375,380.88128662109375,840.605712890625,-1219.263427734375,380.88128662109375,840.605712890625,-951.6314697265625,389.04010009765625,843.5753173828125,-1219.263427734375,380.88128662109375,840.605712890625,-951.6314697265625,389.04010009765625,843.5751953125,-951.6314697265625,380.88128662109375,840.605712890625,-1219.263427734375,374.2301940917969,835.0247192382812,-1219.263427734375,374.2301940917969,835.0247192382812,-951.6314697265625,380.88128662109375,840.605712890625,-1219.263427734375,374.2301940917969,835.0247192382812,-951.6314697265625,380.88128662109375,840.605712890625,-951.6314697265625,374.2301940917969,835.0247192382812,-1219.263427734375,369.8890075683594,827.505615234375,-1219.263427734375,369.8890075683594,827.5054931640625,-951.6314697265625,374.2301940917969,835.0247192382812,-1219.263427734375,369.8890075683594,827.5054931640625,-951.6314697265625,374.2301940917969,835.0247192382812,-951.6314697265625,369.8890075683594,827.505615234375,-1219.263427734375,368.38128662109375,818.955078125,-1219.263427734375,368.38128662109375,818.9550170898438,-951.6314697265625,369.8890075683594,827.505615234375,-1219.263427734375,368.38128662109375,818.9550170898438,-951.6314697265625,369.8890075683594,827.5054931640625,-951.6314697265625,368.38128662109375,818.955078125,-1219.263427734375,369.8890075683594,810.4044799804688,-1219.263427734375,369.8890075683594,810.4044799804688,-951.6314697265625,368.38128662109375,818.955078125,-1219.263427734375,369.8890075683594,810.4044799804688,-951.6314697265625,368.38128662109375,818.9550170898438,-951.6314697265625,369.8890075683594,810.4044799804688,-1219.263427734375,374.2301940917969,802.8853759765625,-1219.263427734375,374.2301940917969,802.8853149414062,-951.6314697265625,369.8890075683594,810.4044799804688,-1219.263427734375,374.2301940917969,802.8853149414062,-951.6314697265625,369.8890075683594,810.4044799804688,-951.6314697265625,374.2301940917969,802.8853759765625,-1219.263427734375,380.88128662109375,797.3043823242188,-1219.263427734375,380.88128662109375,797.3043823242188,-951.6314697265625,374.2301940917969,802.8853759765625,-1219.263427734375,380.88128662109375,797.3043823242188,-951.6314697265625,374.2301940917969,802.8853149414062,-951.6314697265625,380.88128662109375,797.3043823242188,-1219.263427734375,389.04010009765625,794.3347778320312,-1219.263427734375,389.04010009765625,794.3347778320312,-951.6314697265625,380.88128662109375,797.3043823242188,-1219.263427734375,389.04010009765625,794.3347778320312,-951.6314697265625,380.88128662109375,797.3043823242188,-951.6314697265625,389.04010009765625,794.3347778320312,-1219.263427734375,397.7225036621094,794.3347778320312,-1219.263427734375,397.7225036621094,794.3347778320312,-951.6314697265625,389.04010009765625,794.3347778320312,-1219.263427734375,397.7225036621094,794.3347778320312,-951.6314697265625,389.04010009765625,794.3347778320312,-951.6314697265625,397.7225036621094,794.3347778320312,-1219.263427734375,405.88128662109375,797.3043823242188,-1219.263427734375,405.88128662109375,797.3043823242188,-951.6314697265625,397.7225036621094,794.3347778320312,-1219.263427734375,405.88128662109375,797.3043823242188,-951.6314697265625,397.7225036621094,794.3347778320312,-951.6314697265625,405.88128662109375,797.3043823242188,-1219.263427734375,412.53240966796875,802.8853759765625,-1219.263427734375,412.53240966796875,802.8853149414062,-951.6314697265625,405.88128662109375,797.3043823242188,-1219.263427734375,412.53240966796875,802.8853149414062,-951.6314697265625,405.88128662109375,797.3043823242188,-951.6314697265625,412.53240966796875,802.8853759765625,-1219.263427734375,416.8736877441406,810.4044799804688,-1219.263427734375,416.8736877441406,810.4044799804688,-951.6314697265625,412.53240966796875,802.8853759765625,-1219.263427734375,416.8736877441406,810.4044799804688,-951.6314697265625,412.53240966796875,802.8853149414062,-951.6314697265625,416.8736877441406,810.4044799804688,-1219.263427734375,418.38128662109375,818.955078125,-1219.263427734375,418.38128662109375,818.9550170898438,-951.6314697265625,416.8736877441406,810.4044799804688,-1219.263427734375,418.38128662109375,818.9550170898438,-951.6314697265625,416.8736877441406,810.4044799804688,-951.6314697265625,418.38128662109375,818.9550170898438,-951.6314697265625,416.8736877441406,827.5054931640625,-951.6314697265625,416.8736877441406,827.5054931640625,-683.9995727539062,418.38128662109375,818.9550170898438,-951.6314697265625,416.8736877441406,827.5054931640625,-683.9995727539062,418.38128662109375,818.9550170898438,-683.9995727539062,416.8736877441406,827.5054931640625,-951.6314697265625,412.5325012207031,835.0247192382812,-951.6314697265625,412.5325012207031,835.0247192382812,-683.9995727539062,416.8736877441406,827.5054931640625,-951.6314697265625,412.5325012207031,835.0247192382812,-683.9995727539062,416.8736877441406,827.5054931640625,-683.9995727539062,412.5325012207031,835.0247192382812,-951.6314697265625,405.88128662109375,840.605712890625,-951.6314697265625,405.88128662109375,840.6055908203125,-683.9995727539062,412.5325012207031,835.0247192382812,-951.6314697265625,405.88128662109375,840.6055908203125,-683.9995727539062,412.5325012207031,835.0247192382812,-683.9995727539062,405.88128662109375,840.605712890625,-951.6314697265625,397.72259521484375,843.5751953125,-951.6314697265625,397.72259521484375,843.5750732421875,-683.9995727539062,405.88128662109375,840.605712890625,-951.6314697265625,397.72259521484375,843.5750732421875,-683.9995727539062,405.88128662109375,840.6055908203125,-683.9995727539062,397.72259521484375,843.5751953125,-951.6314697265625,389.04010009765625,843.5751953125,-951.6314697265625,389.04010009765625,843.5750732421875,-683.9995727539062,397.72259521484375,843.5751953125,-951.6314697265625,389.04010009765625,843.5750732421875,-683.9995727539062,397.72259521484375,843.5750732421875,-683.9995727539062,389.04010009765625,843.5751953125,-951.6314697265625,380.88128662109375,840.605712890625,-951.6314697265625,380.88128662109375,840.6055908203125,-683.9995727539062,389.04010009765625,843.5751953125,-951.6314697265625,380.88128662109375,840.6055908203125,-683.9995727539062,389.04010009765625,843.5750732421875,-683.9995727539062,380.88128662109375,840.605712890625,-951.6314697265625,374.2301940917969,835.0247192382812,-951.6314697265625,374.2301940917969,835.0247192382812,-683.9995727539062,380.88128662109375,840.605712890625,-951.6314697265625,374.2301940917969,835.0247192382812,-683.9995727539062,380.88128662109375,840.6055908203125,-683.9995727539062,374.2301940917969,835.0247192382812,-951.6314697265625,369.8890075683594,827.5054931640625,-951.6314697265625,369.8890075683594,827.5054931640625,-683.9995727539062,374.2301940917969,835.0247192382812,-951.6314697265625,369.8890075683594,827.5054931640625,-683.9995727539062,374.2301940917969,835.0247192382812,-683.9995727539062,369.8890075683594,827.5054931640625,-951.6314697265625,368.38128662109375,818.9550170898438,-951.6314697265625,368.38128662109375,818.9550170898438,-683.9995727539062,369.8890075683594,827.5054931640625,-951.6314697265625,368.38128662109375,818.9550170898438,-683.9995727539062,369.8890075683594,827.5054931640625,-683.9995727539062,368.38128662109375,818.9550170898438,-951.6314697265625,369.8890075683594,810.4044799804688,-951.6314697265625,369.8890075683594,810.4044799804688,-683.9995727539062,368.38128662109375,818.9550170898438,-951.6314697265625,369.8890075683594,810.4044799804688,-683.9995727539062,368.38128662109375,818.9550170898438,-683.9995727539062,369.8890075683594,810.4044799804688,-951.6314697265625,374.2301940917969,802.8853149414062,-951.6314697265625,374.2301940917969,802.8853149414062,-683.9995727539062,369.8890075683594,810.4044799804688,-951.6314697265625,374.2301940917969,802.8853149414062,-683.9995727539062,369.8890075683594,810.4044799804688,-683.9995727539062,374.2301940917969,802.8853149414062,-951.6314697265625,380.88128662109375,797.3043823242188,-951.6314697265625,380.88128662109375,797.3043212890625,-683.9995727539062,374.2301940917969,802.8853149414062,-951.6314697265625,380.88128662109375,797.3043212890625,-683.9995727539062,374.2301940917969,802.8853149414062,-683.9995727539062,380.88128662109375,797.3043823242188,-951.6314697265625,389.04010009765625,794.3347778320312,-951.6314697265625,389.04010009765625,794.3347778320312,-683.9995727539062,380.88128662109375,797.3043823242188,-951.6314697265625,389.04010009765625,794.3347778320312,-683.9995727539062,380.88128662109375,797.3043212890625,-683.9995727539062,389.04010009765625,794.3347778320312,-951.6314697265625,397.7225036621094,794.3347778320312,-951.6314697265625,397.7225036621094,794.3347778320312,-683.9995727539062,389.04010009765625,794.3347778320312,-951.6314697265625,397.7225036621094,794.3347778320312,-683.9995727539062,389.04010009765625,794.3347778320312,-683.9995727539062,397.7225036621094,794.3347778320312,-951.6314697265625,405.88128662109375,797.3043823242188,-951.6314697265625,405.88128662109375,797.3043212890625,-683.9995727539062,397.7225036621094,794.3347778320312,-951.6314697265625,405.88128662109375,797.3043212890625,-683.9995727539062,397.7225036621094,794.3347778320312,-683.9995727539062,405.88128662109375,797.3043823242188,-951.6314697265625,412.53240966796875,802.8853149414062,-951.6314697265625,412.53240966796875,802.8853149414062,-683.9995727539062,405.88128662109375,797.3043823242188,-951.6314697265625,412.53240966796875,802.8853149414062,-683.9995727539062,405.88128662109375,797.3043212890625,-683.9995727539062,412.53240966796875,802.8853149414062,-951.6314697265625,416.8736877441406,810.4044799804688,-951.6314697265625,416.8736877441406,810.4044189453125,-683.9995727539062,412.53240966796875,802.8853149414062,-951.6314697265625,416.8736877441406,810.4044189453125,-683.9995727539062,412.53240966796875,802.8853149414062,-683.9995727539062,416.8736877441406,810.4044799804688,-951.6314697265625,418.38128662109375,818.9550170898438,-951.6314697265625,418.38128662109375,818.9550170898438,-683.9995727539062,416.8736877441406,810.4044799804688,-951.6314697265625,418.38128662109375,818.9550170898438,-683.9995727539062,416.8736877441406,810.4044189453125,-683.9995727539062,418.38128662109375,818.9550170898438,-683.9995727539062,416.8736877441406,827.5054931640625,-683.9995727539062,416.8736877441406,827.50537109375,-416.3677062988281,418.38128662109375,818.9550170898438,-683.9995727539062,416.8736877441406,827.50537109375,-416.3677062988281,418.38128662109375,818.9548950195312,-416.3677062988281,416.8736877441406,827.5054931640625,-683.9995727539062,412.5325012207031,835.0247192382812,-683.9995727539062,412.5325012207031,835.0245971679688,-416.3677062988281,416.8736877441406,827.5054931640625,-683.9995727539062,412.5325012207031,835.0245971679688,-416.3677062988281,416.8736877441406,827.50537109375,-416.3677062988281,412.5325012207031,835.0247192382812,-683.9995727539062,405.88128662109375,840.6055908203125,-683.9995727539062,405.88128662109375,840.6055297851562,-416.3677062988281,412.5325012207031,835.0247192382812,-683.9995727539062,405.88128662109375,840.6055297851562,-416.3677062988281,412.5325012207031,835.0245971679688,-416.3677062988281,405.88128662109375,840.6055908203125,-683.9995727539062,397.72259521484375,843.5750732421875,-683.9995727539062,397.72259521484375,843.5750732421875,-416.3677062988281,405.88128662109375,840.6055908203125,-683.9995727539062,397.72259521484375,843.5750732421875,-416.3677062988281,405.88128662109375,840.6055297851562,-416.3677062988281,397.72259521484375,843.5750732421875,-683.9995727539062,389.04010009765625,843.5750732421875,-683.9995727539062,389.04010009765625,843.5750732421875,-416.3677062988281,397.72259521484375,843.5750732421875,-683.9995727539062,389.04010009765625,843.5750732421875,-416.3677062988281,397.72259521484375,843.5750732421875,-416.3677062988281,389.04010009765625,843.5750732421875,-683.9995727539062,380.88128662109375,840.6055908203125,-683.9995727539062,380.88128662109375,840.6055297851562,-416.3677062988281,389.04010009765625,843.5750732421875,-683.9995727539062,380.88128662109375,840.6055297851562,-416.3677062988281,389.04010009765625,843.5750732421875,-416.3677062988281,380.88128662109375,840.6055908203125,-683.9995727539062,374.2301940917969,835.0247192382812,-683.9995727539062,374.2301940917969,835.0245971679688,-416.3677062988281,380.88128662109375,840.6055908203125,-683.9995727539062,374.2301940917969,835.0245971679688,-416.3677062988281,380.88128662109375,840.6055297851562,-416.3677062988281,374.2301940917969,835.0247192382812,-683.9995727539062,369.8890075683594,827.5054931640625,-683.9995727539062,369.8890075683594,827.50537109375,-416.3677062988281,374.2301940917969,835.0247192382812,-683.9995727539062,369.8890075683594,827.50537109375,-416.3677062988281,374.2301940917969,835.0245971679688,-416.3677062988281,369.8890075683594,827.5054931640625,-683.9995727539062,368.38128662109375,818.9550170898438,-683.9995727539062,368.38128662109375,818.9548950195312,-416.3677062988281,369.8890075683594,827.5054931640625,-683.9995727539062,368.38128662109375,818.9548950195312,-416.3677062988281,369.8890075683594,827.50537109375,-416.3677062988281,368.38128662109375,818.9550170898438,-683.9995727539062,369.8890075683594,810.4044799804688,-683.9995727539062,369.8890075683594,810.4044189453125,-416.3677062988281,368.38128662109375,818.9550170898438,-683.9995727539062,369.8890075683594,810.4044189453125,-416.3677062988281,368.38128662109375,818.9548950195312,-416.3677062988281,369.8890075683594,810.4044799804688,-683.9995727539062,374.2301940917969,802.8853149414062,-683.9995727539062,374.2301940917969,802.8853149414062,-416.3677062988281,369.8890075683594,810.4044799804688,-683.9995727539062,374.2301940917969,802.8853149414062,-416.3677062988281,369.8890075683594,810.4044189453125,-416.3677062988281,374.2301940917969,802.8853149414062,-683.9995727539062,380.88128662109375,797.3043212890625,-683.9995727539062,380.88128662109375,797.3043212890625,-416.3677062988281,374.2301940917969,802.8853149414062,-683.9995727539062,380.88128662109375,797.3043212890625,-416.3677062988281,374.2301940917969,802.8853149414062,-416.3677062988281,380.88128662109375,797.3043212890625,-683.9995727539062,389.04010009765625,794.3347778320312,-683.9995727539062,389.04010009765625,794.334716796875,-416.3677062988281,380.88128662109375,797.3043212890625,-683.9995727539062,389.04010009765625,794.334716796875,-416.3677062988281,380.88128662109375,797.3043212890625,-416.3677062988281,389.04010009765625,794.3347778320312,-683.9995727539062,397.7225036621094,794.3347778320312,-683.9995727539062,397.7225036621094,794.334716796875,-416.3677062988281,389.04010009765625,794.3347778320312,-683.9995727539062,397.7225036621094,794.334716796875,-416.3677062988281,389.04010009765625,794.334716796875,-416.3677062988281,397.7225036621094,794.3347778320312,-683.9995727539062,405.88128662109375,797.3043212890625,-683.9995727539062,405.88128662109375,797.3043212890625,-416.3677062988281,397.7225036621094,794.3347778320312,-683.9995727539062,405.88128662109375,797.3043212890625,-416.3677062988281,397.7225036621094,794.334716796875,-416.3677062988281,405.88128662109375,797.3043212890625,-683.9995727539062,412.53240966796875,802.8853149414062,-683.9995727539062,412.53240966796875,802.8851928710938,-416.3677062988281,405.88128662109375,797.3043212890625,-683.9995727539062,412.53240966796875,802.8851928710938,-416.3677062988281,405.88128662109375,797.3043212890625,-416.3677062988281,412.53240966796875,802.8853149414062,-683.9995727539062,416.8736877441406,810.4044189453125,-683.9995727539062,416.8736877441406,810.4044189453125,-416.3677062988281,412.53240966796875,802.8853149414062,-683.9995727539062,416.8736877441406,810.4044189453125,-416.3677062988281,412.53240966796875,802.8851928710938,-416.3677062988281,416.8736877441406,810.4044189453125,-683.9995727539062,418.38128662109375,818.9550170898438,-683.9995727539062,418.38128662109375,818.9548950195312,-416.3677062988281,416.8736877441406,810.4044189453125,-683.9995727539062,418.38128662109375,818.9548950195312,-416.3677062988281,416.8736877441406,810.4044189453125,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,416.8736877441406,810.4044189453125,-416.3677062988281,418.38128662109375,818.9548950195312,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,418.38128662109375,818.9548950195312,-416.3677062988281,416.8736877441406,827.50537109375,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,416.8736877441406,827.50537109375,-416.3677062988281,412.5325012207031,835.0245971679688,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,412.5325012207031,835.0245971679688,-416.3677062988281,405.88128662109375,840.6055297851562,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,405.88128662109375,840.6055297851562,-416.3677062988281,397.72259521484375,843.5750732421875,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,397.72259521484375,843.5750732421875,-416.3677062988281,389.04010009765625,843.5750732421875,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,389.04010009765625,843.5750732421875,-416.3677062988281,380.88128662109375,840.6055297851562,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,380.88128662109375,840.6055297851562,-416.3677062988281,374.2301940917969,835.0245971679688,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,374.2301940917969,835.0245971679688,-416.3677062988281,369.8890075683594,827.50537109375,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,369.8890075683594,827.50537109375,-416.3677062988281,368.38128662109375,818.9548950195312,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,368.38128662109375,818.9548950195312,-416.3677062988281,369.8890075683594,810.4044189453125,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,369.8890075683594,810.4044189453125,-416.3677062988281,374.2301940917969,802.8853149414062,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,374.2301940917969,802.8853149414062,-416.3677062988281,380.88128662109375,797.3043212890625,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,380.88128662109375,797.3043212890625,-416.3677062988281,389.04010009765625,794.334716796875,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,389.04010009765625,794.334716796875,-416.3677062988281,397.7225036621094,794.334716796875,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,397.7225036621094,794.334716796875,-416.3677062988281,405.88128662109375,797.3043212890625,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,405.88128662109375,797.3043212890625,-416.3677062988281,412.53240966796875,802.8851928710938,-416.3677062988281,393.38128662109375,818.9548950195312,-416.3677062988281,412.53240966796875,802.8851928710938,-416.3677062988281,416.8736877441406,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [393.38128662109375,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466589122084
| }
| }
| },
| {
| "uuid": "7574A3FF-52A6-4A66-83E0-DCE1A1ABC950",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [493.38128662109375,818.955078125,-1754.5272216796875,512.532470703125,835.0247802734375,-1754.5272216796875,516.8737182617188,827.505615234375,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,516.8737182617188,827.505615234375,-1754.5272216796875,518.3812866210938,818.955078125,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,497.72259521484375,843.5753173828125,-1754.5272216796875,505.88128662109375,840.6057739257812,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,505.88128662109375,840.6057739257812,-1754.5272216796875,512.532470703125,835.0247802734375,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,480.88128662109375,840.6057739257812,-1754.5272216796875,489.04010009765625,843.5753173828125,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,489.04010009765625,843.5753173828125,-1754.5272216796875,497.72259521484375,843.5753173828125,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,469.8890075683594,827.505615234375,-1754.5272216796875,474.2301940917969,835.0247802734375,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,474.2301940917969,835.0247802734375,-1754.5272216796875,480.88128662109375,840.6057739257812,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,469.8890075683594,810.4047241210938,-1754.5272216796875,468.38128662109375,818.955078125,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,468.38128662109375,818.955078125,-1754.5272216796875,469.8890075683594,827.505615234375,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,480.88128662109375,797.3045043945312,-1754.5272216796875,474.2301940917969,802.8853759765625,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,474.2301940917969,802.8853759765625,-1754.5272216796875,469.8890075683594,810.4047241210938,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,497.7225036621094,794.3350219726562,-1754.5272216796875,489.04010009765625,794.3350219726562,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,489.04010009765625,794.3350219726562,-1754.5272216796875,480.88128662109375,797.3045043945312,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,512.532470703125,802.8853759765625,-1754.5272216796875,505.88128662109375,797.3045043945312,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,505.88128662109375,797.3045043945312,-1754.5272216796875,497.7225036621094,794.3350219726562,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,518.3812866210938,818.955078125,-1754.5272216796875,516.8737182617188,810.4046020507812,-1754.5272216796875,493.38128662109375,818.955078125,-1754.5272216796875,516.8737182617188,810.4046020507812,-1754.5272216796875,512.532470703125,802.8853759765625,-1754.5272216796875,518.3812866210938,818.955078125,-1754.5272216796875,516.8737182617188,827.505615234375,-1754.5272216796875,516.8737182617188,827.505615234375,-1486.895263671875,518.3812866210938,818.955078125,-1754.5272216796875,516.8737182617188,827.505615234375,-1486.895263671875,518.3812866210938,818.955078125,-1486.895263671875,516.8737182617188,827.505615234375,-1754.5272216796875,512.532470703125,835.0247802734375,-1754.5272216796875,512.532470703125,835.0247802734375,-1486.895263671875,516.8737182617188,827.505615234375,-1754.5272216796875,512.532470703125,835.0247802734375,-1486.895263671875,516.8737182617188,827.505615234375,-1486.895263671875,512.532470703125,835.0247802734375,-1754.5272216796875,505.88128662109375,840.6057739257812,-1754.5272216796875,505.88128662109375,840.605712890625,-1486.895263671875,512.532470703125,835.0247802734375,-1754.5272216796875,505.88128662109375,840.605712890625,-1486.895263671875,512.532470703125,835.0247802734375,-1486.895263671875,505.88128662109375,840.6057739257812,-1754.5272216796875,497.72259521484375,843.5753173828125,-1754.5272216796875,497.72259521484375,843.5753173828125,-1486.895263671875,505.88128662109375,840.6057739257812,-1754.5272216796875,497.72259521484375,843.5753173828125,-1486.895263671875,505.88128662109375,840.605712890625,-1486.895263671875,497.72259521484375,843.5753173828125,-1754.5272216796875,489.04010009765625,843.5753173828125,-1754.5272216796875,489.04010009765625,843.5753173828125,-1486.895263671875,497.72259521484375,843.5753173828125,-1754.5272216796875,489.04010009765625,843.5753173828125,-1486.895263671875,497.72259521484375,843.5753173828125,-1486.895263671875,489.04010009765625,843.5753173828125,-1754.5272216796875,480.88128662109375,840.6057739257812,-1754.5272216796875,480.88128662109375,840.605712890625,-1486.895263671875,489.04010009765625,843.5753173828125,-1754.5272216796875,480.88128662109375,840.605712890625,-1486.895263671875,489.04010009765625,843.5753173828125,-1486.895263671875,480.88128662109375,840.6057739257812,-1754.5272216796875,474.2301940917969,835.0247802734375,-1754.5272216796875,474.2301940917969,835.0247802734375,-1486.895263671875,480.88128662109375,840.6057739257812,-1754.5272216796875,474.2301940917969,835.0247802734375,-1486.895263671875,480.88128662109375,840.605712890625,-1486.895263671875,474.2301940917969,835.0247802734375,-1754.5272216796875,469.8890075683594,827.505615234375,-1754.5272216796875,469.8890075683594,827.505615234375,-1486.895263671875,474.2301940917969,835.0247802734375,-1754.5272216796875,469.8890075683594,827.505615234375,-1486.895263671875,474.2301940917969,835.0247802734375,-1486.895263671875,469.8890075683594,827.505615234375,-1754.5272216796875,468.38128662109375,818.955078125,-1754.5272216796875,468.38128662109375,818.955078125,-1486.895263671875,469.8890075683594,827.505615234375,-1754.5272216796875,468.38128662109375,818.955078125,-1486.895263671875,469.8890075683594,827.505615234375,-1486.895263671875,468.38128662109375,818.955078125,-1754.5272216796875,469.8890075683594,810.4047241210938,-1754.5272216796875,469.8890075683594,810.4046020507812,-1486.895263671875,468.38128662109375,818.955078125,-1754.5272216796875,469.8890075683594,810.4046020507812,-1486.895263671875,468.38128662109375,818.955078125,-1486.895263671875,469.8890075683594,810.4047241210938,-1754.5272216796875,474.2301940917969,802.8853759765625,-1754.5272216796875,474.2301940917969,802.8853759765625,-1486.895263671875,469.8890075683594,810.4047241210938,-1754.5272216796875,474.2301940917969,802.8853759765625,-1486.895263671875,469.8890075683594,810.4046020507812,-1486.895263671875,474.2301940917969,802.8853759765625,-1754.5272216796875,480.88128662109375,797.3045043945312,-1754.5272216796875,480.88128662109375,797.3043823242188,-1486.895263671875,474.2301940917969,802.8853759765625,-1754.5272216796875,480.88128662109375,797.3043823242188,-1486.895263671875,474.2301940917969,802.8853759765625,-1486.895263671875,480.88128662109375,797.3045043945312,-1754.5272216796875,489.04010009765625,794.3350219726562,-1754.5272216796875,489.04010009765625,794.3348999023438,-1486.895263671875,480.88128662109375,797.3045043945312,-1754.5272216796875,489.04010009765625,794.3348999023438,-1486.895263671875,480.88128662109375,797.3043823242188,-1486.895263671875,489.04010009765625,794.3350219726562,-1754.5272216796875,497.7225036621094,794.3350219726562,-1754.5272216796875,497.7225036621094,794.3348999023438,-1486.895263671875,489.04010009765625,794.3350219726562,-1754.5272216796875,497.7225036621094,794.3348999023438,-1486.895263671875,489.04010009765625,794.3348999023438,-1486.895263671875,497.7225036621094,794.3350219726562,-1754.5272216796875,505.88128662109375,797.3045043945312,-1754.5272216796875,505.88128662109375,797.3043823242188,-1486.895263671875,497.7225036621094,794.3350219726562,-1754.5272216796875,505.88128662109375,797.3043823242188,-1486.895263671875,497.7225036621094,794.3348999023438,-1486.895263671875,505.88128662109375,797.3045043945312,-1754.5272216796875,512.532470703125,802.8853759765625,-1754.5272216796875,512.532470703125,802.8853759765625,-1486.895263671875,505.88128662109375,797.3045043945312,-1754.5272216796875,512.532470703125,802.8853759765625,-1486.895263671875,505.88128662109375,797.3043823242188,-1486.895263671875,512.532470703125,802.8853759765625,-1754.5272216796875,516.8737182617188,810.4046020507812,-1754.5272216796875,516.8737182617188,810.4046020507812,-1486.895263671875,512.532470703125,802.8853759765625,-1754.5272216796875,516.8737182617188,810.4046020507812,-1486.895263671875,512.532470703125,802.8853759765625,-1486.895263671875,516.8737182617188,810.4046020507812,-1754.5272216796875,518.3812866210938,818.955078125,-1754.5272216796875,518.3812866210938,818.955078125,-1486.895263671875,516.8737182617188,810.4046020507812,-1754.5272216796875,518.3812866210938,818.955078125,-1486.895263671875,516.8737182617188,810.4046020507812,-1486.895263671875,518.3812866210938,818.955078125,-1486.895263671875,516.8737182617188,827.505615234375,-1486.895263671875,516.8737182617188,827.505615234375,-1219.263427734375,518.3812866210938,818.955078125,-1486.895263671875,516.8737182617188,827.505615234375,-1219.263427734375,518.3812866210938,818.955078125,-1219.263427734375,516.8737182617188,827.505615234375,-1486.895263671875,512.532470703125,835.0247802734375,-1486.895263671875,512.532470703125,835.0247192382812,-1219.263427734375,516.8737182617188,827.505615234375,-1486.895263671875,512.532470703125,835.0247192382812,-1219.263427734375,516.8737182617188,827.505615234375,-1219.263427734375,512.532470703125,835.0247802734375,-1486.895263671875,505.88128662109375,840.605712890625,-1486.895263671875,505.88128662109375,840.605712890625,-1219.263427734375,512.532470703125,835.0247802734375,-1486.895263671875,505.88128662109375,840.605712890625,-1219.263427734375,512.532470703125,835.0247192382812,-1219.263427734375,505.88128662109375,840.605712890625,-1486.895263671875,497.72259521484375,843.5753173828125,-1486.895263671875,497.72259521484375,843.5753173828125,-1219.263427734375,505.88128662109375,840.605712890625,-1486.895263671875,497.72259521484375,843.5753173828125,-1219.263427734375,505.88128662109375,840.605712890625,-1219.263427734375,497.72259521484375,843.5753173828125,-1486.895263671875,489.04010009765625,843.5753173828125,-1486.895263671875,489.04010009765625,843.5753173828125,-1219.263427734375,497.72259521484375,843.5753173828125,-1486.895263671875,489.04010009765625,843.5753173828125,-1219.263427734375,497.72259521484375,843.5753173828125,-1219.263427734375,489.04010009765625,843.5753173828125,-1486.895263671875,480.88128662109375,840.605712890625,-1486.895263671875,480.88128662109375,840.605712890625,-1219.263427734375,489.04010009765625,843.5753173828125,-1486.895263671875,480.88128662109375,840.605712890625,-1219.263427734375,489.04010009765625,843.5753173828125,-1219.263427734375,480.88128662109375,840.605712890625,-1486.895263671875,474.2301940917969,835.0247802734375,-1486.895263671875,474.2301940917969,835.0247192382812,-1219.263427734375,480.88128662109375,840.605712890625,-1486.895263671875,474.2301940917969,835.0247192382812,-1219.263427734375,480.88128662109375,840.605712890625,-1219.263427734375,474.2301940917969,835.0247802734375,-1486.895263671875,469.8890075683594,827.505615234375,-1486.895263671875,469.8890075683594,827.505615234375,-1219.263427734375,474.2301940917969,835.0247802734375,-1486.895263671875,469.8890075683594,827.505615234375,-1219.263427734375,474.2301940917969,835.0247192382812,-1219.263427734375,469.8890075683594,827.505615234375,-1486.895263671875,468.38128662109375,818.955078125,-1486.895263671875,468.38128662109375,818.955078125,-1219.263427734375,469.8890075683594,827.505615234375,-1486.895263671875,468.38128662109375,818.955078125,-1219.263427734375,469.8890075683594,827.505615234375,-1219.263427734375,468.38128662109375,818.955078125,-1486.895263671875,469.8890075683594,810.4046020507812,-1486.895263671875,469.8890075683594,810.4044799804688,-1219.263427734375,468.38128662109375,818.955078125,-1486.895263671875,469.8890075683594,810.4044799804688,-1219.263427734375,468.38128662109375,818.955078125,-1219.263427734375,469.8890075683594,810.4046020507812,-1486.895263671875,474.2301940917969,802.8853759765625,-1486.895263671875,474.2301940917969,802.8853759765625,-1219.263427734375,469.8890075683594,810.4046020507812,-1486.895263671875,474.2301940917969,802.8853759765625,-1219.263427734375,469.8890075683594,810.4044799804688,-1219.263427734375,474.2301940917969,802.8853759765625,-1486.895263671875,480.88128662109375,797.3043823242188,-1486.895263671875,480.88128662109375,797.3043823242188,-1219.263427734375,474.2301940917969,802.8853759765625,-1486.895263671875,480.88128662109375,797.3043823242188,-1219.263427734375,474.2301940917969,802.8853759765625,-1219.263427734375,480.88128662109375,797.3043823242188,-1486.895263671875,489.04010009765625,794.3348999023438,-1486.895263671875,489.04010009765625,794.3347778320312,-1219.263427734375,480.88128662109375,797.3043823242188,-1486.895263671875,489.04010009765625,794.3347778320312,-1219.263427734375,480.88128662109375,797.3043823242188,-1219.263427734375,489.04010009765625,794.3348999023438,-1486.895263671875,497.7225036621094,794.3348999023438,-1486.895263671875,497.7225036621094,794.3347778320312,-1219.263427734375,489.04010009765625,794.3348999023438,-1486.895263671875,497.7225036621094,794.3347778320312,-1219.263427734375,489.04010009765625,794.3347778320312,-1219.263427734375,497.7225036621094,794.3348999023438,-1486.895263671875,505.88128662109375,797.3043823242188,-1486.895263671875,505.88128662109375,797.3043823242188,-1219.263427734375,497.7225036621094,794.3348999023438,-1486.895263671875,505.88128662109375,797.3043823242188,-1219.263427734375,497.7225036621094,794.3347778320312,-1219.263427734375,505.88128662109375,797.3043823242188,-1486.895263671875,512.532470703125,802.8853759765625,-1486.895263671875,512.532470703125,802.8853759765625,-1219.263427734375,505.88128662109375,797.3043823242188,-1486.895263671875,512.532470703125,802.8853759765625,-1219.263427734375,505.88128662109375,797.3043823242188,-1219.263427734375,512.532470703125,802.8853759765625,-1486.895263671875,516.8737182617188,810.4046020507812,-1486.895263671875,516.8737182617188,810.4044799804688,-1219.263427734375,512.532470703125,802.8853759765625,-1486.895263671875,516.8737182617188,810.4044799804688,-1219.263427734375,512.532470703125,802.8853759765625,-1219.263427734375,516.8737182617188,810.4046020507812,-1486.895263671875,518.3812866210938,818.955078125,-1486.895263671875,518.3812866210938,818.955078125,-1219.263427734375,516.8737182617188,810.4046020507812,-1486.895263671875,518.3812866210938,818.955078125,-1219.263427734375,516.8737182617188,810.4044799804688,-1219.263427734375,518.3812866210938,818.955078125,-1219.263427734375,516.8737182617188,827.505615234375,-1219.263427734375,516.8737182617188,827.5054931640625,-951.6314697265625,518.3812866210938,818.955078125,-1219.263427734375,516.8737182617188,827.5054931640625,-951.6314697265625,518.3812866210938,818.9550170898438,-951.6314697265625,516.8737182617188,827.505615234375,-1219.263427734375,512.532470703125,835.0247192382812,-1219.263427734375,512.532470703125,835.0247192382812,-951.6314697265625,516.8737182617188,827.505615234375,-1219.263427734375,512.532470703125,835.0247192382812,-951.6314697265625,516.8737182617188,827.5054931640625,-951.6314697265625,512.532470703125,835.0247192382812,-1219.263427734375,505.88128662109375,840.605712890625,-1219.263427734375,505.88128662109375,840.605712890625,-951.6314697265625,512.532470703125,835.0247192382812,-1219.263427734375,505.88128662109375,840.605712890625,-951.6314697265625,512.532470703125,835.0247192382812,-951.6314697265625,505.88128662109375,840.605712890625,-1219.263427734375,497.72259521484375,843.5753173828125,-1219.263427734375,497.72259521484375,843.5751953125,-951.6314697265625,505.88128662109375,840.605712890625,-1219.263427734375,497.72259521484375,843.5751953125,-951.6314697265625,505.88128662109375,840.605712890625,-951.6314697265625,497.72259521484375,843.5753173828125,-1219.263427734375,489.04010009765625,843.5753173828125,-1219.263427734375,489.04010009765625,843.5751953125,-951.6314697265625,497.72259521484375,843.5753173828125,-1219.263427734375,489.04010009765625,843.5751953125,-951.6314697265625,497.72259521484375,843.5751953125,-951.6314697265625,489.04010009765625,843.5753173828125,-1219.263427734375,480.88128662109375,840.605712890625,-1219.263427734375,480.88128662109375,840.605712890625,-951.6314697265625,489.04010009765625,843.5753173828125,-1219.263427734375,480.88128662109375,840.605712890625,-951.6314697265625,489.04010009765625,843.5751953125,-951.6314697265625,480.88128662109375,840.605712890625,-1219.263427734375,474.2301940917969,835.0247192382812,-1219.263427734375,474.2301940917969,835.0247192382812,-951.6314697265625,480.88128662109375,840.605712890625,-1219.263427734375,474.2301940917969,835.0247192382812,-951.6314697265625,480.88128662109375,840.605712890625,-951.6314697265625,474.2301940917969,835.0247192382812,-1219.263427734375,469.8890075683594,827.505615234375,-1219.263427734375,469.8890075683594,827.5054931640625,-951.6314697265625,474.2301940917969,835.0247192382812,-1219.263427734375,469.8890075683594,827.5054931640625,-951.6314697265625,474.2301940917969,835.0247192382812,-951.6314697265625,469.8890075683594,827.505615234375,-1219.263427734375,468.38128662109375,818.955078125,-1219.263427734375,468.38128662109375,818.9550170898438,-951.6314697265625,469.8890075683594,827.505615234375,-1219.263427734375,468.38128662109375,818.9550170898438,-951.6314697265625,469.8890075683594,827.5054931640625,-951.6314697265625,468.38128662109375,818.955078125,-1219.263427734375,469.8890075683594,810.4044799804688,-1219.263427734375,469.8890075683594,810.4044799804688,-951.6314697265625,468.38128662109375,818.955078125,-1219.263427734375,469.8890075683594,810.4044799804688,-951.6314697265625,468.38128662109375,818.9550170898438,-951.6314697265625,469.8890075683594,810.4044799804688,-1219.263427734375,474.2301940917969,802.8853759765625,-1219.263427734375,474.2301940917969,802.8853149414062,-951.6314697265625,469.8890075683594,810.4044799804688,-1219.263427734375,474.2301940917969,802.8853149414062,-951.6314697265625,469.8890075683594,810.4044799804688,-951.6314697265625,474.2301940917969,802.8853759765625,-1219.263427734375,480.88128662109375,797.3043823242188,-1219.263427734375,480.88128662109375,797.3043823242188,-951.6314697265625,474.2301940917969,802.8853759765625,-1219.263427734375,480.88128662109375,797.3043823242188,-951.6314697265625,474.2301940917969,802.8853149414062,-951.6314697265625,480.88128662109375,797.3043823242188,-1219.263427734375,489.04010009765625,794.3347778320312,-1219.263427734375,489.04010009765625,794.3347778320312,-951.6314697265625,480.88128662109375,797.3043823242188,-1219.263427734375,489.04010009765625,794.3347778320312,-951.6314697265625,480.88128662109375,797.3043823242188,-951.6314697265625,489.04010009765625,794.3347778320312,-1219.263427734375,497.7225036621094,794.3347778320312,-1219.263427734375,497.7225036621094,794.3347778320312,-951.6314697265625,489.04010009765625,794.3347778320312,-1219.263427734375,497.7225036621094,794.3347778320312,-951.6314697265625,489.04010009765625,794.3347778320312,-951.6314697265625,497.7225036621094,794.3347778320312,-1219.263427734375,505.88128662109375,797.3043823242188,-1219.263427734375,505.88128662109375,797.3043823242188,-951.6314697265625,497.7225036621094,794.3347778320312,-1219.263427734375,505.88128662109375,797.3043823242188,-951.6314697265625,497.7225036621094,794.3347778320312,-951.6314697265625,505.88128662109375,797.3043823242188,-1219.263427734375,512.532470703125,802.8853759765625,-1219.263427734375,512.532470703125,802.8853149414062,-951.6314697265625,505.88128662109375,797.3043823242188,-1219.263427734375,512.532470703125,802.8853149414062,-951.6314697265625,505.88128662109375,797.3043823242188,-951.6314697265625,512.532470703125,802.8853759765625,-1219.263427734375,516.8737182617188,810.4044799804688,-1219.263427734375,516.8737182617188,810.4044799804688,-951.6314697265625,512.532470703125,802.8853759765625,-1219.263427734375,516.8737182617188,810.4044799804688,-951.6314697265625,512.532470703125,802.8853149414062,-951.6314697265625,516.8737182617188,810.4044799804688,-1219.263427734375,518.3812866210938,818.955078125,-1219.263427734375,518.3812866210938,818.9550170898438,-951.6314697265625,516.8737182617188,810.4044799804688,-1219.263427734375,518.3812866210938,818.9550170898438,-951.6314697265625,516.8737182617188,810.4044799804688,-951.6314697265625,518.3812866210938,818.9550170898438,-951.6314697265625,516.8737182617188,827.5054931640625,-951.6314697265625,516.8737182617188,827.5054931640625,-683.9995727539062,518.3812866210938,818.9550170898438,-951.6314697265625,516.8737182617188,827.5054931640625,-683.9995727539062,518.3812866210938,818.9550170898438,-683.9995727539062,516.8737182617188,827.5054931640625,-951.6314697265625,512.532470703125,835.0247192382812,-951.6314697265625,512.532470703125,835.0247192382812,-683.9995727539062,516.8737182617188,827.5054931640625,-951.6314697265625,512.532470703125,835.0247192382812,-683.9995727539062,516.8737182617188,827.5054931640625,-683.9995727539062,512.532470703125,835.0247192382812,-951.6314697265625,505.88128662109375,840.605712890625,-951.6314697265625,505.88128662109375,840.6055908203125,-683.9995727539062,512.532470703125,835.0247192382812,-951.6314697265625,505.88128662109375,840.6055908203125,-683.9995727539062,512.532470703125,835.0247192382812,-683.9995727539062,505.88128662109375,840.605712890625,-951.6314697265625,497.72259521484375,843.5751953125,-951.6314697265625,497.72259521484375,843.5750732421875,-683.9995727539062,505.88128662109375,840.605712890625,-951.6314697265625,497.72259521484375,843.5750732421875,-683.9995727539062,505.88128662109375,840.6055908203125,-683.9995727539062,497.72259521484375,843.5751953125,-951.6314697265625,489.04010009765625,843.5751953125,-951.6314697265625,489.04010009765625,843.5750732421875,-683.9995727539062,497.72259521484375,843.5751953125,-951.6314697265625,489.04010009765625,843.5750732421875,-683.9995727539062,497.72259521484375,843.5750732421875,-683.9995727539062,489.04010009765625,843.5751953125,-951.6314697265625,480.88128662109375,840.605712890625,-951.6314697265625,480.88128662109375,840.6055908203125,-683.9995727539062,489.04010009765625,843.5751953125,-951.6314697265625,480.88128662109375,840.6055908203125,-683.9995727539062,489.04010009765625,843.5750732421875,-683.9995727539062,480.88128662109375,840.605712890625,-951.6314697265625,474.2301940917969,835.0247192382812,-951.6314697265625,474.2301940917969,835.0247192382812,-683.9995727539062,480.88128662109375,840.605712890625,-951.6314697265625,474.2301940917969,835.0247192382812,-683.9995727539062,480.88128662109375,840.6055908203125,-683.9995727539062,474.2301940917969,835.0247192382812,-951.6314697265625,469.8890075683594,827.5054931640625,-951.6314697265625,469.8890075683594,827.5054931640625,-683.9995727539062,474.2301940917969,835.0247192382812,-951.6314697265625,469.8890075683594,827.5054931640625,-683.9995727539062,474.2301940917969,835.0247192382812,-683.9995727539062,469.8890075683594,827.5054931640625,-951.6314697265625,468.38128662109375,818.9550170898438,-951.6314697265625,468.38128662109375,818.9550170898438,-683.9995727539062,469.8890075683594,827.5054931640625,-951.6314697265625,468.38128662109375,818.9550170898438,-683.9995727539062,469.8890075683594,827.5054931640625,-683.9995727539062,468.38128662109375,818.9550170898438,-951.6314697265625,469.8890075683594,810.4044799804688,-951.6314697265625,469.8890075683594,810.4044799804688,-683.9995727539062,468.38128662109375,818.9550170898438,-951.6314697265625,469.8890075683594,810.4044799804688,-683.9995727539062,468.38128662109375,818.9550170898438,-683.9995727539062,469.8890075683594,810.4044799804688,-951.6314697265625,474.2301940917969,802.8853149414062,-951.6314697265625,474.2301940917969,802.8853149414062,-683.9995727539062,469.8890075683594,810.4044799804688,-951.6314697265625,474.2301940917969,802.8853149414062,-683.9995727539062,469.8890075683594,810.4044799804688,-683.9995727539062,474.2301940917969,802.8853149414062,-951.6314697265625,480.88128662109375,797.3043823242188,-951.6314697265625,480.88128662109375,797.3043212890625,-683.9995727539062,474.2301940917969,802.8853149414062,-951.6314697265625,480.88128662109375,797.3043212890625,-683.9995727539062,474.2301940917969,802.8853149414062,-683.9995727539062,480.88128662109375,797.3043823242188,-951.6314697265625,489.04010009765625,794.3347778320312,-951.6314697265625,489.04010009765625,794.3347778320312,-683.9995727539062,480.88128662109375,797.3043823242188,-951.6314697265625,489.04010009765625,794.3347778320312,-683.9995727539062,480.88128662109375,797.3043212890625,-683.9995727539062,489.04010009765625,794.3347778320312,-951.6314697265625,497.7225036621094,794.3347778320312,-951.6314697265625,497.7225036621094,794.3347778320312,-683.9995727539062,489.04010009765625,794.3347778320312,-951.6314697265625,497.7225036621094,794.3347778320312,-683.9995727539062,489.04010009765625,794.3347778320312,-683.9995727539062,497.7225036621094,794.3347778320312,-951.6314697265625,505.88128662109375,797.3043823242188,-951.6314697265625,505.88128662109375,797.3043212890625,-683.9995727539062,497.7225036621094,794.3347778320312,-951.6314697265625,505.88128662109375,797.3043212890625,-683.9995727539062,497.7225036621094,794.3347778320312,-683.9995727539062,505.88128662109375,797.3043823242188,-951.6314697265625,512.532470703125,802.8853149414062,-951.6314697265625,512.532470703125,802.8853149414062,-683.9995727539062,505.88128662109375,797.3043823242188,-951.6314697265625,512.532470703125,802.8853149414062,-683.9995727539062,505.88128662109375,797.3043212890625,-683.9995727539062,512.532470703125,802.8853149414062,-951.6314697265625,516.8737182617188,810.4044799804688,-951.6314697265625,516.8737182617188,810.4044189453125,-683.9995727539062,512.532470703125,802.8853149414062,-951.6314697265625,516.8737182617188,810.4044189453125,-683.9995727539062,512.532470703125,802.8853149414062,-683.9995727539062,516.8737182617188,810.4044799804688,-951.6314697265625,518.3812866210938,818.9550170898438,-951.6314697265625,518.3812866210938,818.9550170898438,-683.9995727539062,516.8737182617188,810.4044799804688,-951.6314697265625,518.3812866210938,818.9550170898438,-683.9995727539062,516.8737182617188,810.4044189453125,-683.9995727539062,518.3812866210938,818.9550170898438,-683.9995727539062,516.8737182617188,827.5054931640625,-683.9995727539062,516.8737182617188,827.50537109375,-416.3677062988281,518.3812866210938,818.9550170898438,-683.9995727539062,516.8737182617188,827.50537109375,-416.3677062988281,518.3812866210938,818.9548950195312,-416.3677062988281,516.8737182617188,827.5054931640625,-683.9995727539062,512.532470703125,835.0247192382812,-683.9995727539062,512.532470703125,835.0245971679688,-416.3677062988281,516.8737182617188,827.5054931640625,-683.9995727539062,512.532470703125,835.0245971679688,-416.3677062988281,516.8737182617188,827.50537109375,-416.3677062988281,512.532470703125,835.0247192382812,-683.9995727539062,505.88128662109375,840.6055908203125,-683.9995727539062,505.88128662109375,840.6055297851562,-416.3677062988281,512.532470703125,835.0247192382812,-683.9995727539062,505.88128662109375,840.6055297851562,-416.3677062988281,512.532470703125,835.0245971679688,-416.3677062988281,505.88128662109375,840.6055908203125,-683.9995727539062,497.72259521484375,843.5750732421875,-683.9995727539062,497.72259521484375,843.5750732421875,-416.3677062988281,505.88128662109375,840.6055908203125,-683.9995727539062,497.72259521484375,843.5750732421875,-416.3677062988281,505.88128662109375,840.6055297851562,-416.3677062988281,497.72259521484375,843.5750732421875,-683.9995727539062,489.04010009765625,843.5750732421875,-683.9995727539062,489.04010009765625,843.5750732421875,-416.3677062988281,497.72259521484375,843.5750732421875,-683.9995727539062,489.04010009765625,843.5750732421875,-416.3677062988281,497.72259521484375,843.5750732421875,-416.3677062988281,489.04010009765625,843.5750732421875,-683.9995727539062,480.88128662109375,840.6055908203125,-683.9995727539062,480.88128662109375,840.6055297851562,-416.3677062988281,489.04010009765625,843.5750732421875,-683.9995727539062,480.88128662109375,840.6055297851562,-416.3677062988281,489.04010009765625,843.5750732421875,-416.3677062988281,480.88128662109375,840.6055908203125,-683.9995727539062,474.2301940917969,835.0247192382812,-683.9995727539062,474.2301940917969,835.0245971679688,-416.3677062988281,480.88128662109375,840.6055908203125,-683.9995727539062,474.2301940917969,835.0245971679688,-416.3677062988281,480.88128662109375,840.6055297851562,-416.3677062988281,474.2301940917969,835.0247192382812,-683.9995727539062,469.8890075683594,827.5054931640625,-683.9995727539062,469.8890075683594,827.50537109375,-416.3677062988281,474.2301940917969,835.0247192382812,-683.9995727539062,469.8890075683594,827.50537109375,-416.3677062988281,474.2301940917969,835.0245971679688,-416.3677062988281,469.8890075683594,827.5054931640625,-683.9995727539062,468.38128662109375,818.9550170898438,-683.9995727539062,468.38128662109375,818.9548950195312,-416.3677062988281,469.8890075683594,827.5054931640625,-683.9995727539062,468.38128662109375,818.9548950195312,-416.3677062988281,469.8890075683594,827.50537109375,-416.3677062988281,468.38128662109375,818.9550170898438,-683.9995727539062,469.8890075683594,810.4044799804688,-683.9995727539062,469.8890075683594,810.4044189453125,-416.3677062988281,468.38128662109375,818.9550170898438,-683.9995727539062,469.8890075683594,810.4044189453125,-416.3677062988281,468.38128662109375,818.9548950195312,-416.3677062988281,469.8890075683594,810.4044799804688,-683.9995727539062,474.2301940917969,802.8853149414062,-683.9995727539062,474.2301940917969,802.8853149414062,-416.3677062988281,469.8890075683594,810.4044799804688,-683.9995727539062,474.2301940917969,802.8853149414062,-416.3677062988281,469.8890075683594,810.4044189453125,-416.3677062988281,474.2301940917969,802.8853149414062,-683.9995727539062,480.88128662109375,797.3043212890625,-683.9995727539062,480.88128662109375,797.3043212890625,-416.3677062988281,474.2301940917969,802.8853149414062,-683.9995727539062,480.88128662109375,797.3043212890625,-416.3677062988281,474.2301940917969,802.8853149414062,-416.3677062988281,480.88128662109375,797.3043212890625,-683.9995727539062,489.04010009765625,794.3347778320312,-683.9995727539062,489.04010009765625,794.334716796875,-416.3677062988281,480.88128662109375,797.3043212890625,-683.9995727539062,489.04010009765625,794.334716796875,-416.3677062988281,480.88128662109375,797.3043212890625,-416.3677062988281,489.04010009765625,794.3347778320312,-683.9995727539062,497.7225036621094,794.3347778320312,-683.9995727539062,497.7225036621094,794.334716796875,-416.3677062988281,489.04010009765625,794.3347778320312,-683.9995727539062,497.7225036621094,794.334716796875,-416.3677062988281,489.04010009765625,794.334716796875,-416.3677062988281,497.7225036621094,794.3347778320312,-683.9995727539062,505.88128662109375,797.3043212890625,-683.9995727539062,505.88128662109375,797.3043212890625,-416.3677062988281,497.7225036621094,794.3347778320312,-683.9995727539062,505.88128662109375,797.3043212890625,-416.3677062988281,497.7225036621094,794.334716796875,-416.3677062988281,505.88128662109375,797.3043212890625,-683.9995727539062,512.532470703125,802.8853149414062,-683.9995727539062,512.532470703125,802.8851928710938,-416.3677062988281,505.88128662109375,797.3043212890625,-683.9995727539062,512.532470703125,802.8851928710938,-416.3677062988281,505.88128662109375,797.3043212890625,-416.3677062988281,512.532470703125,802.8853149414062,-683.9995727539062,516.8737182617188,810.4044189453125,-683.9995727539062,516.8737182617188,810.4044189453125,-416.3677062988281,512.532470703125,802.8853149414062,-683.9995727539062,516.8737182617188,810.4044189453125,-416.3677062988281,512.532470703125,802.8851928710938,-416.3677062988281,516.8737182617188,810.4044189453125,-683.9995727539062,518.3812866210938,818.9550170898438,-683.9995727539062,518.3812866210938,818.9548950195312,-416.3677062988281,516.8737182617188,810.4044189453125,-683.9995727539062,518.3812866210938,818.9548950195312,-416.3677062988281,516.8737182617188,810.4044189453125,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,516.8737182617188,810.4044189453125,-416.3677062988281,518.3812866210938,818.9548950195312,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,518.3812866210938,818.9548950195312,-416.3677062988281,516.8737182617188,827.50537109375,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,516.8737182617188,827.50537109375,-416.3677062988281,512.532470703125,835.0245971679688,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,512.532470703125,835.0245971679688,-416.3677062988281,505.88128662109375,840.6055297851562,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,505.88128662109375,840.6055297851562,-416.3677062988281,497.72259521484375,843.5750732421875,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,497.72259521484375,843.5750732421875,-416.3677062988281,489.04010009765625,843.5750732421875,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,489.04010009765625,843.5750732421875,-416.3677062988281,480.88128662109375,840.6055297851562,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,480.88128662109375,840.6055297851562,-416.3677062988281,474.2301940917969,835.0245971679688,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,474.2301940917969,835.0245971679688,-416.3677062988281,469.8890075683594,827.50537109375,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,469.8890075683594,827.50537109375,-416.3677062988281,468.38128662109375,818.9548950195312,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,468.38128662109375,818.9548950195312,-416.3677062988281,469.8890075683594,810.4044189453125,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,469.8890075683594,810.4044189453125,-416.3677062988281,474.2301940917969,802.8853149414062,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,474.2301940917969,802.8853149414062,-416.3677062988281,480.88128662109375,797.3043212890625,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,480.88128662109375,797.3043212890625,-416.3677062988281,489.04010009765625,794.334716796875,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,489.04010009765625,794.334716796875,-416.3677062988281,497.7225036621094,794.334716796875,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,497.7225036621094,794.334716796875,-416.3677062988281,505.88128662109375,797.3043212890625,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,505.88128662109375,797.3043212890625,-416.3677062988281,512.532470703125,802.8851928710938,-416.3677062988281,493.38128662109375,818.9548950195312,-416.3677062988281,512.532470703125,802.8851928710938,-416.3677062988281,516.8737182617188,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [493.38128662109375,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466595042122
| }
| }
| },
| {
| "uuid": "F1C40417-548E-48B8-B6B1-D0FD042DABF3",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [593.3812866210938,818.955078125,-1754.5272216796875,612.532470703125,835.0247802734375,-1754.5272216796875,616.8737182617188,827.505615234375,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,616.8737182617188,827.505615234375,-1754.5272216796875,618.3812866210938,818.955078125,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,597.7224731445312,843.5753173828125,-1754.5272216796875,605.8812866210938,840.6057739257812,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,605.8812866210938,840.6057739257812,-1754.5272216796875,612.532470703125,835.0247802734375,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,580.8812866210938,840.6057739257812,-1754.5272216796875,589.0402221679688,843.5753173828125,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,589.0402221679688,843.5753173828125,-1754.5272216796875,597.7224731445312,843.5753173828125,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,569.8889770507812,827.505615234375,-1754.5272216796875,574.230224609375,835.0247802734375,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,574.230224609375,835.0247802734375,-1754.5272216796875,580.8812866210938,840.6057739257812,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,569.8889770507812,810.4047241210938,-1754.5272216796875,568.3812866210938,818.955078125,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,568.3812866210938,818.955078125,-1754.5272216796875,569.8889770507812,827.505615234375,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,580.8812866210938,797.3045043945312,-1754.5272216796875,574.230224609375,802.8853759765625,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,574.230224609375,802.8853759765625,-1754.5272216796875,569.8889770507812,810.4047241210938,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,597.7224731445312,794.3350219726562,-1754.5272216796875,589.0402221679688,794.3350219726562,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,589.0402221679688,794.3350219726562,-1754.5272216796875,580.8812866210938,797.3045043945312,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,612.532470703125,802.8853759765625,-1754.5272216796875,605.8812866210938,797.3045043945312,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,605.8812866210938,797.3045043945312,-1754.5272216796875,597.7224731445312,794.3350219726562,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,618.3812866210938,818.955078125,-1754.5272216796875,616.8737182617188,810.4046020507812,-1754.5272216796875,593.3812866210938,818.955078125,-1754.5272216796875,616.8737182617188,810.4046020507812,-1754.5272216796875,612.532470703125,802.8853759765625,-1754.5272216796875,618.3812866210938,818.955078125,-1754.5272216796875,616.8737182617188,827.505615234375,-1754.5272216796875,616.8737182617188,827.505615234375,-1486.895263671875,618.3812866210938,818.955078125,-1754.5272216796875,616.8737182617188,827.505615234375,-1486.895263671875,618.3812866210938,818.955078125,-1486.895263671875,616.8737182617188,827.505615234375,-1754.5272216796875,612.532470703125,835.0247802734375,-1754.5272216796875,612.532470703125,835.0247802734375,-1486.895263671875,616.8737182617188,827.505615234375,-1754.5272216796875,612.532470703125,835.0247802734375,-1486.895263671875,616.8737182617188,827.505615234375,-1486.895263671875,612.532470703125,835.0247802734375,-1754.5272216796875,605.8812866210938,840.6057739257812,-1754.5272216796875,605.8812866210938,840.605712890625,-1486.895263671875,612.532470703125,835.0247802734375,-1754.5272216796875,605.8812866210938,840.605712890625,-1486.895263671875,612.532470703125,835.0247802734375,-1486.895263671875,605.8812866210938,840.6057739257812,-1754.5272216796875,597.7224731445312,843.5753173828125,-1754.5272216796875,597.7224731445312,843.5753173828125,-1486.895263671875,605.8812866210938,840.6057739257812,-1754.5272216796875,597.7224731445312,843.5753173828125,-1486.895263671875,605.8812866210938,840.605712890625,-1486.895263671875,597.7224731445312,843.5753173828125,-1754.5272216796875,589.0402221679688,843.5753173828125,-1754.5272216796875,589.0402221679688,843.5753173828125,-1486.895263671875,597.7224731445312,843.5753173828125,-1754.5272216796875,589.0402221679688,843.5753173828125,-1486.895263671875,597.7224731445312,843.5753173828125,-1486.895263671875,589.0402221679688,843.5753173828125,-1754.5272216796875,580.8812866210938,840.6057739257812,-1754.5272216796875,580.8812866210938,840.605712890625,-1486.895263671875,589.0402221679688,843.5753173828125,-1754.5272216796875,580.8812866210938,840.605712890625,-1486.895263671875,589.0402221679688,843.5753173828125,-1486.895263671875,580.8812866210938,840.6057739257812,-1754.5272216796875,574.230224609375,835.0247802734375,-1754.5272216796875,574.230224609375,835.0247802734375,-1486.895263671875,580.8812866210938,840.6057739257812,-1754.5272216796875,574.230224609375,835.0247802734375,-1486.895263671875,580.8812866210938,840.605712890625,-1486.895263671875,574.230224609375,835.0247802734375,-1754.5272216796875,569.8889770507812,827.505615234375,-1754.5272216796875,569.8889770507812,827.505615234375,-1486.895263671875,574.230224609375,835.0247802734375,-1754.5272216796875,569.8889770507812,827.505615234375,-1486.895263671875,574.230224609375,835.0247802734375,-1486.895263671875,569.8889770507812,827.505615234375,-1754.5272216796875,568.3812866210938,818.955078125,-1754.5272216796875,568.3812866210938,818.955078125,-1486.895263671875,569.8889770507812,827.505615234375,-1754.5272216796875,568.3812866210938,818.955078125,-1486.895263671875,569.8889770507812,827.505615234375,-1486.895263671875,568.3812866210938,818.955078125,-1754.5272216796875,569.8889770507812,810.4047241210938,-1754.5272216796875,569.8889770507812,810.4046020507812,-1486.895263671875,568.3812866210938,818.955078125,-1754.5272216796875,569.8889770507812,810.4046020507812,-1486.895263671875,568.3812866210938,818.955078125,-1486.895263671875,569.8889770507812,810.4047241210938,-1754.5272216796875,574.230224609375,802.8853759765625,-1754.5272216796875,574.230224609375,802.8853759765625,-1486.895263671875,569.8889770507812,810.4047241210938,-1754.5272216796875,574.230224609375,802.8853759765625,-1486.895263671875,569.8889770507812,810.4046020507812,-1486.895263671875,574.230224609375,802.8853759765625,-1754.5272216796875,580.8812866210938,797.3045043945312,-1754.5272216796875,580.8812866210938,797.3043823242188,-1486.895263671875,574.230224609375,802.8853759765625,-1754.5272216796875,580.8812866210938,797.3043823242188,-1486.895263671875,574.230224609375,802.8853759765625,-1486.895263671875,580.8812866210938,797.3045043945312,-1754.5272216796875,589.0402221679688,794.3350219726562,-1754.5272216796875,589.0402221679688,794.3348999023438,-1486.895263671875,580.8812866210938,797.3045043945312,-1754.5272216796875,589.0402221679688,794.3348999023438,-1486.895263671875,580.8812866210938,797.3043823242188,-1486.895263671875,589.0402221679688,794.3350219726562,-1754.5272216796875,597.7224731445312,794.3350219726562,-1754.5272216796875,597.7224731445312,794.3348999023438,-1486.895263671875,589.0402221679688,794.3350219726562,-1754.5272216796875,597.7224731445312,794.3348999023438,-1486.895263671875,589.0402221679688,794.3348999023438,-1486.895263671875,597.7224731445312,794.3350219726562,-1754.5272216796875,605.8812866210938,797.3045043945312,-1754.5272216796875,605.8812866210938,797.3043823242188,-1486.895263671875,597.7224731445312,794.3350219726562,-1754.5272216796875,605.8812866210938,797.3043823242188,-1486.895263671875,597.7224731445312,794.3348999023438,-1486.895263671875,605.8812866210938,797.3045043945312,-1754.5272216796875,612.532470703125,802.8853759765625,-1754.5272216796875,612.532470703125,802.8853759765625,-1486.895263671875,605.8812866210938,797.3045043945312,-1754.5272216796875,612.532470703125,802.8853759765625,-1486.895263671875,605.8812866210938,797.3043823242188,-1486.895263671875,612.532470703125,802.8853759765625,-1754.5272216796875,616.8737182617188,810.4046020507812,-1754.5272216796875,616.8737182617188,810.4046020507812,-1486.895263671875,612.532470703125,802.8853759765625,-1754.5272216796875,616.8737182617188,810.4046020507812,-1486.895263671875,612.532470703125,802.8853759765625,-1486.895263671875,616.8737182617188,810.4046020507812,-1754.5272216796875,618.3812866210938,818.955078125,-1754.5272216796875,618.3812866210938,818.955078125,-1486.895263671875,616.8737182617188,810.4046020507812,-1754.5272216796875,618.3812866210938,818.955078125,-1486.895263671875,616.8737182617188,810.4046020507812,-1486.895263671875,618.3812866210938,818.955078125,-1486.895263671875,616.8737182617188,827.505615234375,-1486.895263671875,616.8737182617188,827.505615234375,-1219.263427734375,618.3812866210938,818.955078125,-1486.895263671875,616.8737182617188,827.505615234375,-1219.263427734375,618.3812866210938,818.955078125,-1219.263427734375,616.8737182617188,827.505615234375,-1486.895263671875,612.532470703125,835.0247802734375,-1486.895263671875,612.532470703125,835.0247192382812,-1219.263427734375,616.8737182617188,827.505615234375,-1486.895263671875,612.532470703125,835.0247192382812,-1219.263427734375,616.8737182617188,827.505615234375,-1219.263427734375,612.532470703125,835.0247802734375,-1486.895263671875,605.8812866210938,840.605712890625,-1486.895263671875,605.8812866210938,840.605712890625,-1219.263427734375,612.532470703125,835.0247802734375,-1486.895263671875,605.8812866210938,840.605712890625,-1219.263427734375,612.532470703125,835.0247192382812,-1219.263427734375,605.8812866210938,840.605712890625,-1486.895263671875,597.7224731445312,843.5753173828125,-1486.895263671875,597.7224731445312,843.5753173828125,-1219.263427734375,605.8812866210938,840.605712890625,-1486.895263671875,597.7224731445312,843.5753173828125,-1219.263427734375,605.8812866210938,840.605712890625,-1219.263427734375,597.7224731445312,843.5753173828125,-1486.895263671875,589.0402221679688,843.5753173828125,-1486.895263671875,589.0402221679688,843.5753173828125,-1219.263427734375,597.7224731445312,843.5753173828125,-1486.895263671875,589.0402221679688,843.5753173828125,-1219.263427734375,597.7224731445312,843.5753173828125,-1219.263427734375,589.0402221679688,843.5753173828125,-1486.895263671875,580.8812866210938,840.605712890625,-1486.895263671875,580.8812866210938,840.605712890625,-1219.263427734375,589.0402221679688,843.5753173828125,-1486.895263671875,580.8812866210938,840.605712890625,-1219.263427734375,589.0402221679688,843.5753173828125,-1219.263427734375,580.8812866210938,840.605712890625,-1486.895263671875,574.230224609375,835.0247802734375,-1486.895263671875,574.230224609375,835.0247192382812,-1219.263427734375,580.8812866210938,840.605712890625,-1486.895263671875,574.230224609375,835.0247192382812,-1219.263427734375,580.8812866210938,840.605712890625,-1219.263427734375,574.230224609375,835.0247802734375,-1486.895263671875,569.8889770507812,827.505615234375,-1486.895263671875,569.8889770507812,827.505615234375,-1219.263427734375,574.230224609375,835.0247802734375,-1486.895263671875,569.8889770507812,827.505615234375,-1219.263427734375,574.230224609375,835.0247192382812,-1219.263427734375,569.8889770507812,827.505615234375,-1486.895263671875,568.3812866210938,818.955078125,-1486.895263671875,568.3812866210938,818.955078125,-1219.263427734375,569.8889770507812,827.505615234375,-1486.895263671875,568.3812866210938,818.955078125,-1219.263427734375,569.8889770507812,827.505615234375,-1219.263427734375,568.3812866210938,818.955078125,-1486.895263671875,569.8889770507812,810.4046020507812,-1486.895263671875,569.8889770507812,810.4044799804688,-1219.263427734375,568.3812866210938,818.955078125,-1486.895263671875,569.8889770507812,810.4044799804688,-1219.263427734375,568.3812866210938,818.955078125,-1219.263427734375,569.8889770507812,810.4046020507812,-1486.895263671875,574.230224609375,802.8853759765625,-1486.895263671875,574.230224609375,802.8853759765625,-1219.263427734375,569.8889770507812,810.4046020507812,-1486.895263671875,574.230224609375,802.8853759765625,-1219.263427734375,569.8889770507812,810.4044799804688,-1219.263427734375,574.230224609375,802.8853759765625,-1486.895263671875,580.8812866210938,797.3043823242188,-1486.895263671875,580.8812866210938,797.3043823242188,-1219.263427734375,574.230224609375,802.8853759765625,-1486.895263671875,580.8812866210938,797.3043823242188,-1219.263427734375,574.230224609375,802.8853759765625,-1219.263427734375,580.8812866210938,797.3043823242188,-1486.895263671875,589.0402221679688,794.3348999023438,-1486.895263671875,589.0402221679688,794.3347778320312,-1219.263427734375,580.8812866210938,797.3043823242188,-1486.895263671875,589.0402221679688,794.3347778320312,-1219.263427734375,580.8812866210938,797.3043823242188,-1219.263427734375,589.0402221679688,794.3348999023438,-1486.895263671875,597.7224731445312,794.3348999023438,-1486.895263671875,597.7224731445312,794.3347778320312,-1219.263427734375,589.0402221679688,794.3348999023438,-1486.895263671875,597.7224731445312,794.3347778320312,-1219.263427734375,589.0402221679688,794.3347778320312,-1219.263427734375,597.7224731445312,794.3348999023438,-1486.895263671875,605.8812866210938,797.3043823242188,-1486.895263671875,605.8812866210938,797.3043823242188,-1219.263427734375,597.7224731445312,794.3348999023438,-1486.895263671875,605.8812866210938,797.3043823242188,-1219.263427734375,597.7224731445312,794.3347778320312,-1219.263427734375,605.8812866210938,797.3043823242188,-1486.895263671875,612.532470703125,802.8853759765625,-1486.895263671875,612.532470703125,802.8853759765625,-1219.263427734375,605.8812866210938,797.3043823242188,-1486.895263671875,612.532470703125,802.8853759765625,-1219.263427734375,605.8812866210938,797.3043823242188,-1219.263427734375,612.532470703125,802.8853759765625,-1486.895263671875,616.8737182617188,810.4046020507812,-1486.895263671875,616.8737182617188,810.4044799804688,-1219.263427734375,612.532470703125,802.8853759765625,-1486.895263671875,616.8737182617188,810.4044799804688,-1219.263427734375,612.532470703125,802.8853759765625,-1219.263427734375,616.8737182617188,810.4046020507812,-1486.895263671875,618.3812866210938,818.955078125,-1486.895263671875,618.3812866210938,818.955078125,-1219.263427734375,616.8737182617188,810.4046020507812,-1486.895263671875,618.3812866210938,818.955078125,-1219.263427734375,616.8737182617188,810.4044799804688,-1219.263427734375,618.3812866210938,818.955078125,-1219.263427734375,616.8737182617188,827.505615234375,-1219.263427734375,616.8737182617188,827.5054931640625,-951.6314697265625,618.3812866210938,818.955078125,-1219.263427734375,616.8737182617188,827.5054931640625,-951.6314697265625,618.3812866210938,818.9550170898438,-951.6314697265625,616.8737182617188,827.505615234375,-1219.263427734375,612.532470703125,835.0247192382812,-1219.263427734375,612.532470703125,835.0247192382812,-951.6314697265625,616.8737182617188,827.505615234375,-1219.263427734375,612.532470703125,835.0247192382812,-951.6314697265625,616.8737182617188,827.5054931640625,-951.6314697265625,612.532470703125,835.0247192382812,-1219.263427734375,605.8812866210938,840.605712890625,-1219.263427734375,605.8812866210938,840.605712890625,-951.6314697265625,612.532470703125,835.0247192382812,-1219.263427734375,605.8812866210938,840.605712890625,-951.6314697265625,612.532470703125,835.0247192382812,-951.6314697265625,605.8812866210938,840.605712890625,-1219.263427734375,597.7224731445312,843.5753173828125,-1219.263427734375,597.7224731445312,843.5751953125,-951.6314697265625,605.8812866210938,840.605712890625,-1219.263427734375,597.7224731445312,843.5751953125,-951.6314697265625,605.8812866210938,840.605712890625,-951.6314697265625,597.7224731445312,843.5753173828125,-1219.263427734375,589.0402221679688,843.5753173828125,-1219.263427734375,589.0402221679688,843.5751953125,-951.6314697265625,597.7224731445312,843.5753173828125,-1219.263427734375,589.0402221679688,843.5751953125,-951.6314697265625,597.7224731445312,843.5751953125,-951.6314697265625,589.0402221679688,843.5753173828125,-1219.263427734375,580.8812866210938,840.605712890625,-1219.263427734375,580.8812866210938,840.605712890625,-951.6314697265625,589.0402221679688,843.5753173828125,-1219.263427734375,580.8812866210938,840.605712890625,-951.6314697265625,589.0402221679688,843.5751953125,-951.6314697265625,580.8812866210938,840.605712890625,-1219.263427734375,574.230224609375,835.0247192382812,-1219.263427734375,574.230224609375,835.0247192382812,-951.6314697265625,580.8812866210938,840.605712890625,-1219.263427734375,574.230224609375,835.0247192382812,-951.6314697265625,580.8812866210938,840.605712890625,-951.6314697265625,574.230224609375,835.0247192382812,-1219.263427734375,569.8889770507812,827.505615234375,-1219.263427734375,569.8889770507812,827.5054931640625,-951.6314697265625,574.230224609375,835.0247192382812,-1219.263427734375,569.8889770507812,827.5054931640625,-951.6314697265625,574.230224609375,835.0247192382812,-951.6314697265625,569.8889770507812,827.505615234375,-1219.263427734375,568.3812866210938,818.955078125,-1219.263427734375,568.3812866210938,818.9550170898438,-951.6314697265625,569.8889770507812,827.505615234375,-1219.263427734375,568.3812866210938,818.9550170898438,-951.6314697265625,569.8889770507812,827.5054931640625,-951.6314697265625,568.3812866210938,818.955078125,-1219.263427734375,569.8889770507812,810.4044799804688,-1219.263427734375,569.8889770507812,810.4044799804688,-951.6314697265625,568.3812866210938,818.955078125,-1219.263427734375,569.8889770507812,810.4044799804688,-951.6314697265625,568.3812866210938,818.9550170898438,-951.6314697265625,569.8889770507812,810.4044799804688,-1219.263427734375,574.230224609375,802.8853759765625,-1219.263427734375,574.230224609375,802.8853149414062,-951.6314697265625,569.8889770507812,810.4044799804688,-1219.263427734375,574.230224609375,802.8853149414062,-951.6314697265625,569.8889770507812,810.4044799804688,-951.6314697265625,574.230224609375,802.8853759765625,-1219.263427734375,580.8812866210938,797.3043823242188,-1219.263427734375,580.8812866210938,797.3043823242188,-951.6314697265625,574.230224609375,802.8853759765625,-1219.263427734375,580.8812866210938,797.3043823242188,-951.6314697265625,574.230224609375,802.8853149414062,-951.6314697265625,580.8812866210938,797.3043823242188,-1219.263427734375,589.0402221679688,794.3347778320312,-1219.263427734375,589.0402221679688,794.3347778320312,-951.6314697265625,580.8812866210938,797.3043823242188,-1219.263427734375,589.0402221679688,794.3347778320312,-951.6314697265625,580.8812866210938,797.3043823242188,-951.6314697265625,589.0402221679688,794.3347778320312,-1219.263427734375,597.7224731445312,794.3347778320312,-1219.263427734375,597.7224731445312,794.3347778320312,-951.6314697265625,589.0402221679688,794.3347778320312,-1219.263427734375,597.7224731445312,794.3347778320312,-951.6314697265625,589.0402221679688,794.3347778320312,-951.6314697265625,597.7224731445312,794.3347778320312,-1219.263427734375,605.8812866210938,797.3043823242188,-1219.263427734375,605.8812866210938,797.3043823242188,-951.6314697265625,597.7224731445312,794.3347778320312,-1219.263427734375,605.8812866210938,797.3043823242188,-951.6314697265625,597.7224731445312,794.3347778320312,-951.6314697265625,605.8812866210938,797.3043823242188,-1219.263427734375,612.532470703125,802.8853759765625,-1219.263427734375,612.532470703125,802.8853149414062,-951.6314697265625,605.8812866210938,797.3043823242188,-1219.263427734375,612.532470703125,802.8853149414062,-951.6314697265625,605.8812866210938,797.3043823242188,-951.6314697265625,612.532470703125,802.8853759765625,-1219.263427734375,616.8737182617188,810.4044799804688,-1219.263427734375,616.8737182617188,810.4044799804688,-951.6314697265625,612.532470703125,802.8853759765625,-1219.263427734375,616.8737182617188,810.4044799804688,-951.6314697265625,612.532470703125,802.8853149414062,-951.6314697265625,616.8737182617188,810.4044799804688,-1219.263427734375,618.3812866210938,818.955078125,-1219.263427734375,618.3812866210938,818.9550170898438,-951.6314697265625,616.8737182617188,810.4044799804688,-1219.263427734375,618.3812866210938,818.9550170898438,-951.6314697265625,616.8737182617188,810.4044799804688,-951.6314697265625,618.3812866210938,818.9550170898438,-951.6314697265625,616.8737182617188,827.5054931640625,-951.6314697265625,616.8737182617188,827.5054931640625,-683.9995727539062,618.3812866210938,818.9550170898438,-951.6314697265625,616.8737182617188,827.5054931640625,-683.9995727539062,618.3812866210938,818.9550170898438,-683.9995727539062,616.8737182617188,827.5054931640625,-951.6314697265625,612.532470703125,835.0247192382812,-951.6314697265625,612.532470703125,835.0247192382812,-683.9995727539062,616.8737182617188,827.5054931640625,-951.6314697265625,612.532470703125,835.0247192382812,-683.9995727539062,616.8737182617188,827.5054931640625,-683.9995727539062,612.532470703125,835.0247192382812,-951.6314697265625,605.8812866210938,840.605712890625,-951.6314697265625,605.8812866210938,840.6055908203125,-683.9995727539062,612.532470703125,835.0247192382812,-951.6314697265625,605.8812866210938,840.6055908203125,-683.9995727539062,612.532470703125,835.0247192382812,-683.9995727539062,605.8812866210938,840.605712890625,-951.6314697265625,597.7224731445312,843.5751953125,-951.6314697265625,597.7224731445312,843.5750732421875,-683.9995727539062,605.8812866210938,840.605712890625,-951.6314697265625,597.7224731445312,843.5750732421875,-683.9995727539062,605.8812866210938,840.6055908203125,-683.9995727539062,597.7224731445312,843.5751953125,-951.6314697265625,589.0402221679688,843.5751953125,-951.6314697265625,589.0402221679688,843.5750732421875,-683.9995727539062,597.7224731445312,843.5751953125,-951.6314697265625,589.0402221679688,843.5750732421875,-683.9995727539062,597.7224731445312,843.5750732421875,-683.9995727539062,589.0402221679688,843.5751953125,-951.6314697265625,580.8812866210938,840.605712890625,-951.6314697265625,580.8812866210938,840.6055908203125,-683.9995727539062,589.0402221679688,843.5751953125,-951.6314697265625,580.8812866210938,840.6055908203125,-683.9995727539062,589.0402221679688,843.5750732421875,-683.9995727539062,580.8812866210938,840.605712890625,-951.6314697265625,574.230224609375,835.0247192382812,-951.6314697265625,574.230224609375,835.0247192382812,-683.9995727539062,580.8812866210938,840.605712890625,-951.6314697265625,574.230224609375,835.0247192382812,-683.9995727539062,580.8812866210938,840.6055908203125,-683.9995727539062,574.230224609375,835.0247192382812,-951.6314697265625,569.8889770507812,827.5054931640625,-951.6314697265625,569.8889770507812,827.5054931640625,-683.9995727539062,574.230224609375,835.0247192382812,-951.6314697265625,569.8889770507812,827.5054931640625,-683.9995727539062,574.230224609375,835.0247192382812,-683.9995727539062,569.8889770507812,827.5054931640625,-951.6314697265625,568.3812866210938,818.9550170898438,-951.6314697265625,568.3812866210938,818.9550170898438,-683.9995727539062,569.8889770507812,827.5054931640625,-951.6314697265625,568.3812866210938,818.9550170898438,-683.9995727539062,569.8889770507812,827.5054931640625,-683.9995727539062,568.3812866210938,818.9550170898438,-951.6314697265625,569.8889770507812,810.4044799804688,-951.6314697265625,569.8889770507812,810.4044799804688,-683.9995727539062,568.3812866210938,818.9550170898438,-951.6314697265625,569.8889770507812,810.4044799804688,-683.9995727539062,568.3812866210938,818.9550170898438,-683.9995727539062,569.8889770507812,810.4044799804688,-951.6314697265625,574.230224609375,802.8853149414062,-951.6314697265625,574.230224609375,802.8853149414062,-683.9995727539062,569.8889770507812,810.4044799804688,-951.6314697265625,574.230224609375,802.8853149414062,-683.9995727539062,569.8889770507812,810.4044799804688,-683.9995727539062,574.230224609375,802.8853149414062,-951.6314697265625,580.8812866210938,797.3043823242188,-951.6314697265625,580.8812866210938,797.3043212890625,-683.9995727539062,574.230224609375,802.8853149414062,-951.6314697265625,580.8812866210938,797.3043212890625,-683.9995727539062,574.230224609375,802.8853149414062,-683.9995727539062,580.8812866210938,797.3043823242188,-951.6314697265625,589.0402221679688,794.3347778320312,-951.6314697265625,589.0402221679688,794.3347778320312,-683.9995727539062,580.8812866210938,797.3043823242188,-951.6314697265625,589.0402221679688,794.3347778320312,-683.9995727539062,580.8812866210938,797.3043212890625,-683.9995727539062,589.0402221679688,794.3347778320312,-951.6314697265625,597.7224731445312,794.3347778320312,-951.6314697265625,597.7224731445312,794.3347778320312,-683.9995727539062,589.0402221679688,794.3347778320312,-951.6314697265625,597.7224731445312,794.3347778320312,-683.9995727539062,589.0402221679688,794.3347778320312,-683.9995727539062,597.7224731445312,794.3347778320312,-951.6314697265625,605.8812866210938,797.3043823242188,-951.6314697265625,605.8812866210938,797.3043212890625,-683.9995727539062,597.7224731445312,794.3347778320312,-951.6314697265625,605.8812866210938,797.3043212890625,-683.9995727539062,597.7224731445312,794.3347778320312,-683.9995727539062,605.8812866210938,797.3043823242188,-951.6314697265625,612.532470703125,802.8853149414062,-951.6314697265625,612.532470703125,802.8853149414062,-683.9995727539062,605.8812866210938,797.3043823242188,-951.6314697265625,612.532470703125,802.8853149414062,-683.9995727539062,605.8812866210938,797.3043212890625,-683.9995727539062,612.532470703125,802.8853149414062,-951.6314697265625,616.8737182617188,810.4044799804688,-951.6314697265625,616.8737182617188,810.4044189453125,-683.9995727539062,612.532470703125,802.8853149414062,-951.6314697265625,616.8737182617188,810.4044189453125,-683.9995727539062,612.532470703125,802.8853149414062,-683.9995727539062,616.8737182617188,810.4044799804688,-951.6314697265625,618.3812866210938,818.9550170898438,-951.6314697265625,618.3812866210938,818.9550170898438,-683.9995727539062,616.8737182617188,810.4044799804688,-951.6314697265625,618.3812866210938,818.9550170898438,-683.9995727539062,616.8737182617188,810.4044189453125,-683.9995727539062,618.3812866210938,818.9550170898438,-683.9995727539062,616.8737182617188,827.5054931640625,-683.9995727539062,616.8737182617188,827.50537109375,-416.3677062988281,618.3812866210938,818.9550170898438,-683.9995727539062,616.8737182617188,827.50537109375,-416.3677062988281,618.3812866210938,818.9548950195312,-416.3677062988281,616.8737182617188,827.5054931640625,-683.9995727539062,612.532470703125,835.0247192382812,-683.9995727539062,612.532470703125,835.0245971679688,-416.3677062988281,616.8737182617188,827.5054931640625,-683.9995727539062,612.532470703125,835.0245971679688,-416.3677062988281,616.8737182617188,827.50537109375,-416.3677062988281,612.532470703125,835.0247192382812,-683.9995727539062,605.8812866210938,840.6055908203125,-683.9995727539062,605.8812866210938,840.6055297851562,-416.3677062988281,612.532470703125,835.0247192382812,-683.9995727539062,605.8812866210938,840.6055297851562,-416.3677062988281,612.532470703125,835.0245971679688,-416.3677062988281,605.8812866210938,840.6055908203125,-683.9995727539062,597.7224731445312,843.5750732421875,-683.9995727539062,597.7224731445312,843.5750732421875,-416.3677062988281,605.8812866210938,840.6055908203125,-683.9995727539062,597.7224731445312,843.5750732421875,-416.3677062988281,605.8812866210938,840.6055297851562,-416.3677062988281,597.7224731445312,843.5750732421875,-683.9995727539062,589.0402221679688,843.5750732421875,-683.9995727539062,589.0402221679688,843.5750732421875,-416.3677062988281,597.7224731445312,843.5750732421875,-683.9995727539062,589.0402221679688,843.5750732421875,-416.3677062988281,597.7224731445312,843.5750732421875,-416.3677062988281,589.0402221679688,843.5750732421875,-683.9995727539062,580.8812866210938,840.6055908203125,-683.9995727539062,580.8812866210938,840.6055297851562,-416.3677062988281,589.0402221679688,843.5750732421875,-683.9995727539062,580.8812866210938,840.6055297851562,-416.3677062988281,589.0402221679688,843.5750732421875,-416.3677062988281,580.8812866210938,840.6055908203125,-683.9995727539062,574.230224609375,835.0247192382812,-683.9995727539062,574.230224609375,835.0245971679688,-416.3677062988281,580.8812866210938,840.6055908203125,-683.9995727539062,574.230224609375,835.0245971679688,-416.3677062988281,580.8812866210938,840.6055297851562,-416.3677062988281,574.230224609375,835.0247192382812,-683.9995727539062,569.8889770507812,827.5054931640625,-683.9995727539062,569.8889770507812,827.50537109375,-416.3677062988281,574.230224609375,835.0247192382812,-683.9995727539062,569.8889770507812,827.50537109375,-416.3677062988281,574.230224609375,835.0245971679688,-416.3677062988281,569.8889770507812,827.5054931640625,-683.9995727539062,568.3812866210938,818.9550170898438,-683.9995727539062,568.3812866210938,818.9548950195312,-416.3677062988281,569.8889770507812,827.5054931640625,-683.9995727539062,568.3812866210938,818.9548950195312,-416.3677062988281,569.8889770507812,827.50537109375,-416.3677062988281,568.3812866210938,818.9550170898438,-683.9995727539062,569.8889770507812,810.4044799804688,-683.9995727539062,569.8889770507812,810.4044189453125,-416.3677062988281,568.3812866210938,818.9550170898438,-683.9995727539062,569.8889770507812,810.4044189453125,-416.3677062988281,568.3812866210938,818.9548950195312,-416.3677062988281,569.8889770507812,810.4044799804688,-683.9995727539062,574.230224609375,802.8853149414062,-683.9995727539062,574.230224609375,802.8853149414062,-416.3677062988281,569.8889770507812,810.4044799804688,-683.9995727539062,574.230224609375,802.8853149414062,-416.3677062988281,569.8889770507812,810.4044189453125,-416.3677062988281,574.230224609375,802.8853149414062,-683.9995727539062,580.8812866210938,797.3043212890625,-683.9995727539062,580.8812866210938,797.3043212890625,-416.3677062988281,574.230224609375,802.8853149414062,-683.9995727539062,580.8812866210938,797.3043212890625,-416.3677062988281,574.230224609375,802.8853149414062,-416.3677062988281,580.8812866210938,797.3043212890625,-683.9995727539062,589.0402221679688,794.3347778320312,-683.9995727539062,589.0402221679688,794.334716796875,-416.3677062988281,580.8812866210938,797.3043212890625,-683.9995727539062,589.0402221679688,794.334716796875,-416.3677062988281,580.8812866210938,797.3043212890625,-416.3677062988281,589.0402221679688,794.3347778320312,-683.9995727539062,597.7224731445312,794.3347778320312,-683.9995727539062,597.7224731445312,794.334716796875,-416.3677062988281,589.0402221679688,794.3347778320312,-683.9995727539062,597.7224731445312,794.334716796875,-416.3677062988281,589.0402221679688,794.334716796875,-416.3677062988281,597.7224731445312,794.3347778320312,-683.9995727539062,605.8812866210938,797.3043212890625,-683.9995727539062,605.8812866210938,797.3043212890625,-416.3677062988281,597.7224731445312,794.3347778320312,-683.9995727539062,605.8812866210938,797.3043212890625,-416.3677062988281,597.7224731445312,794.334716796875,-416.3677062988281,605.8812866210938,797.3043212890625,-683.9995727539062,612.532470703125,802.8853149414062,-683.9995727539062,612.532470703125,802.8851928710938,-416.3677062988281,605.8812866210938,797.3043212890625,-683.9995727539062,612.532470703125,802.8851928710938,-416.3677062988281,605.8812866210938,797.3043212890625,-416.3677062988281,612.532470703125,802.8853149414062,-683.9995727539062,616.8737182617188,810.4044189453125,-683.9995727539062,616.8737182617188,810.4044189453125,-416.3677062988281,612.532470703125,802.8853149414062,-683.9995727539062,616.8737182617188,810.4044189453125,-416.3677062988281,612.532470703125,802.8851928710938,-416.3677062988281,616.8737182617188,810.4044189453125,-683.9995727539062,618.3812866210938,818.9550170898438,-683.9995727539062,618.3812866210938,818.9548950195312,-416.3677062988281,616.8737182617188,810.4044189453125,-683.9995727539062,618.3812866210938,818.9548950195312,-416.3677062988281,616.8737182617188,810.4044189453125,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,616.8737182617188,810.4044189453125,-416.3677062988281,618.3812866210938,818.9548950195312,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,618.3812866210938,818.9548950195312,-416.3677062988281,616.8737182617188,827.50537109375,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,616.8737182617188,827.50537109375,-416.3677062988281,612.532470703125,835.0245971679688,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,612.532470703125,835.0245971679688,-416.3677062988281,605.8812866210938,840.6055297851562,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,605.8812866210938,840.6055297851562,-416.3677062988281,597.7224731445312,843.5750732421875,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,597.7224731445312,843.5750732421875,-416.3677062988281,589.0402221679688,843.5750732421875,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,589.0402221679688,843.5750732421875,-416.3677062988281,580.8812866210938,840.6055297851562,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,580.8812866210938,840.6055297851562,-416.3677062988281,574.230224609375,835.0245971679688,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,574.230224609375,835.0245971679688,-416.3677062988281,569.8889770507812,827.50537109375,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,569.8889770507812,827.50537109375,-416.3677062988281,568.3812866210938,818.9548950195312,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,568.3812866210938,818.9548950195312,-416.3677062988281,569.8889770507812,810.4044189453125,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,569.8889770507812,810.4044189453125,-416.3677062988281,574.230224609375,802.8853149414062,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,574.230224609375,802.8853149414062,-416.3677062988281,580.8812866210938,797.3043212890625,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,580.8812866210938,797.3043212890625,-416.3677062988281,589.0402221679688,794.334716796875,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,589.0402221679688,794.334716796875,-416.3677062988281,597.7224731445312,794.334716796875,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,597.7224731445312,794.334716796875,-416.3677062988281,605.8812866210938,797.3043212890625,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,605.8812866210938,797.3043212890625,-416.3677062988281,612.532470703125,802.8851928710938,-416.3677062988281,593.3812866210938,818.9548950195312,-416.3677062988281,612.532470703125,802.8851928710938,-416.3677062988281,616.8737182617188,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [593.3812866210938,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466595042122
| }
| }
| },
| {
| "uuid": "D273F8B2-6DD6-4E1D-AD7B-1E488A94D0A0",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [693.3812866210938,818.955078125,-1754.5272216796875,712.532470703125,835.0247802734375,-1754.5272216796875,716.8737182617188,827.505615234375,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,716.8737182617188,827.505615234375,-1754.5272216796875,718.3812866210938,818.955078125,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,697.7224731445312,843.5753173828125,-1754.5272216796875,705.8812866210938,840.6057739257812,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,705.8812866210938,840.6057739257812,-1754.5272216796875,712.532470703125,835.0247802734375,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,680.8812866210938,840.6057739257812,-1754.5272216796875,689.0402221679688,843.5753173828125,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,689.0402221679688,843.5753173828125,-1754.5272216796875,697.7224731445312,843.5753173828125,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,669.8889770507812,827.505615234375,-1754.5272216796875,674.230224609375,835.0247802734375,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,674.230224609375,835.0247802734375,-1754.5272216796875,680.8812866210938,840.6057739257812,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,669.8889770507812,810.4047241210938,-1754.5272216796875,668.3812866210938,818.955078125,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,668.3812866210938,818.955078125,-1754.5272216796875,669.8889770507812,827.505615234375,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,680.8812866210938,797.3045043945312,-1754.5272216796875,674.230224609375,802.8853759765625,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,674.230224609375,802.8853759765625,-1754.5272216796875,669.8889770507812,810.4047241210938,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,697.7224731445312,794.3350219726562,-1754.5272216796875,689.0402221679688,794.3350219726562,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,689.0402221679688,794.3350219726562,-1754.5272216796875,680.8812866210938,797.3045043945312,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,712.532470703125,802.8853759765625,-1754.5272216796875,705.8812866210938,797.3045043945312,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,705.8812866210938,797.3045043945312,-1754.5272216796875,697.7224731445312,794.3350219726562,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,718.3812866210938,818.955078125,-1754.5272216796875,716.8737182617188,810.4046020507812,-1754.5272216796875,693.3812866210938,818.955078125,-1754.5272216796875,716.8737182617188,810.4046020507812,-1754.5272216796875,712.532470703125,802.8853759765625,-1754.5272216796875,718.3812866210938,818.955078125,-1754.5272216796875,716.8737182617188,827.505615234375,-1754.5272216796875,716.8737182617188,827.505615234375,-1486.895263671875,718.3812866210938,818.955078125,-1754.5272216796875,716.8737182617188,827.505615234375,-1486.895263671875,718.3812866210938,818.955078125,-1486.895263671875,716.8737182617188,827.505615234375,-1754.5272216796875,712.532470703125,835.0247802734375,-1754.5272216796875,712.532470703125,835.0247802734375,-1486.895263671875,716.8737182617188,827.505615234375,-1754.5272216796875,712.532470703125,835.0247802734375,-1486.895263671875,716.8737182617188,827.505615234375,-1486.895263671875,712.532470703125,835.0247802734375,-1754.5272216796875,705.8812866210938,840.6057739257812,-1754.5272216796875,705.8812866210938,840.605712890625,-1486.895263671875,712.532470703125,835.0247802734375,-1754.5272216796875,705.8812866210938,840.605712890625,-1486.895263671875,712.532470703125,835.0247802734375,-1486.895263671875,705.8812866210938,840.6057739257812,-1754.5272216796875,697.7224731445312,843.5753173828125,-1754.5272216796875,697.7224731445312,843.5753173828125,-1486.895263671875,705.8812866210938,840.6057739257812,-1754.5272216796875,697.7224731445312,843.5753173828125,-1486.895263671875,705.8812866210938,840.605712890625,-1486.895263671875,697.7224731445312,843.5753173828125,-1754.5272216796875,689.0402221679688,843.5753173828125,-1754.5272216796875,689.0402221679688,843.5753173828125,-1486.895263671875,697.7224731445312,843.5753173828125,-1754.5272216796875,689.0402221679688,843.5753173828125,-1486.895263671875,697.7224731445312,843.5753173828125,-1486.895263671875,689.0402221679688,843.5753173828125,-1754.5272216796875,680.8812866210938,840.6057739257812,-1754.5272216796875,680.8812866210938,840.605712890625,-1486.895263671875,689.0402221679688,843.5753173828125,-1754.5272216796875,680.8812866210938,840.605712890625,-1486.895263671875,689.0402221679688,843.5753173828125,-1486.895263671875,680.8812866210938,840.6057739257812,-1754.5272216796875,674.230224609375,835.0247802734375,-1754.5272216796875,674.230224609375,835.0247802734375,-1486.895263671875,680.8812866210938,840.6057739257812,-1754.5272216796875,674.230224609375,835.0247802734375,-1486.895263671875,680.8812866210938,840.605712890625,-1486.895263671875,674.230224609375,835.0247802734375,-1754.5272216796875,669.8889770507812,827.505615234375,-1754.5272216796875,669.8889770507812,827.505615234375,-1486.895263671875,674.230224609375,835.0247802734375,-1754.5272216796875,669.8889770507812,827.505615234375,-1486.895263671875,674.230224609375,835.0247802734375,-1486.895263671875,669.8889770507812,827.505615234375,-1754.5272216796875,668.3812866210938,818.955078125,-1754.5272216796875,668.3812866210938,818.955078125,-1486.895263671875,669.8889770507812,827.505615234375,-1754.5272216796875,668.3812866210938,818.955078125,-1486.895263671875,669.8889770507812,827.505615234375,-1486.895263671875,668.3812866210938,818.955078125,-1754.5272216796875,669.8889770507812,810.4047241210938,-1754.5272216796875,669.8889770507812,810.4046020507812,-1486.895263671875,668.3812866210938,818.955078125,-1754.5272216796875,669.8889770507812,810.4046020507812,-1486.895263671875,668.3812866210938,818.955078125,-1486.895263671875,669.8889770507812,810.4047241210938,-1754.5272216796875,674.230224609375,802.8853759765625,-1754.5272216796875,674.230224609375,802.8853759765625,-1486.895263671875,669.8889770507812,810.4047241210938,-1754.5272216796875,674.230224609375,802.8853759765625,-1486.895263671875,669.8889770507812,810.4046020507812,-1486.895263671875,674.230224609375,802.8853759765625,-1754.5272216796875,680.8812866210938,797.3045043945312,-1754.5272216796875,680.8812866210938,797.3043823242188,-1486.895263671875,674.230224609375,802.8853759765625,-1754.5272216796875,680.8812866210938,797.3043823242188,-1486.895263671875,674.230224609375,802.8853759765625,-1486.895263671875,680.8812866210938,797.3045043945312,-1754.5272216796875,689.0402221679688,794.3350219726562,-1754.5272216796875,689.0402221679688,794.3348999023438,-1486.895263671875,680.8812866210938,797.3045043945312,-1754.5272216796875,689.0402221679688,794.3348999023438,-1486.895263671875,680.8812866210938,797.3043823242188,-1486.895263671875,689.0402221679688,794.3350219726562,-1754.5272216796875,697.7224731445312,794.3350219726562,-1754.5272216796875,697.7224731445312,794.3348999023438,-1486.895263671875,689.0402221679688,794.3350219726562,-1754.5272216796875,697.7224731445312,794.3348999023438,-1486.895263671875,689.0402221679688,794.3348999023438,-1486.895263671875,697.7224731445312,794.3350219726562,-1754.5272216796875,705.8812866210938,797.3045043945312,-1754.5272216796875,705.8812866210938,797.3043823242188,-1486.895263671875,697.7224731445312,794.3350219726562,-1754.5272216796875,705.8812866210938,797.3043823242188,-1486.895263671875,697.7224731445312,794.3348999023438,-1486.895263671875,705.8812866210938,797.3045043945312,-1754.5272216796875,712.532470703125,802.8853759765625,-1754.5272216796875,712.532470703125,802.8853759765625,-1486.895263671875,705.8812866210938,797.3045043945312,-1754.5272216796875,712.532470703125,802.8853759765625,-1486.895263671875,705.8812866210938,797.3043823242188,-1486.895263671875,712.532470703125,802.8853759765625,-1754.5272216796875,716.8737182617188,810.4046020507812,-1754.5272216796875,716.8737182617188,810.4046020507812,-1486.895263671875,712.532470703125,802.8853759765625,-1754.5272216796875,716.8737182617188,810.4046020507812,-1486.895263671875,712.532470703125,802.8853759765625,-1486.895263671875,716.8737182617188,810.4046020507812,-1754.5272216796875,718.3812866210938,818.955078125,-1754.5272216796875,718.3812866210938,818.955078125,-1486.895263671875,716.8737182617188,810.4046020507812,-1754.5272216796875,718.3812866210938,818.955078125,-1486.895263671875,716.8737182617188,810.4046020507812,-1486.895263671875,718.3812866210938,818.955078125,-1486.895263671875,716.8737182617188,827.505615234375,-1486.895263671875,716.8737182617188,827.505615234375,-1219.263427734375,718.3812866210938,818.955078125,-1486.895263671875,716.8737182617188,827.505615234375,-1219.263427734375,718.3812866210938,818.955078125,-1219.263427734375,716.8737182617188,827.505615234375,-1486.895263671875,712.532470703125,835.0247802734375,-1486.895263671875,712.532470703125,835.0247192382812,-1219.263427734375,716.8737182617188,827.505615234375,-1486.895263671875,712.532470703125,835.0247192382812,-1219.263427734375,716.8737182617188,827.505615234375,-1219.263427734375,712.532470703125,835.0247802734375,-1486.895263671875,705.8812866210938,840.605712890625,-1486.895263671875,705.8812866210938,840.605712890625,-1219.263427734375,712.532470703125,835.0247802734375,-1486.895263671875,705.8812866210938,840.605712890625,-1219.263427734375,712.532470703125,835.0247192382812,-1219.263427734375,705.8812866210938,840.605712890625,-1486.895263671875,697.7224731445312,843.5753173828125,-1486.895263671875,697.7224731445312,843.5753173828125,-1219.263427734375,705.8812866210938,840.605712890625,-1486.895263671875,697.7224731445312,843.5753173828125,-1219.263427734375,705.8812866210938,840.605712890625,-1219.263427734375,697.7224731445312,843.5753173828125,-1486.895263671875,689.0402221679688,843.5753173828125,-1486.895263671875,689.0402221679688,843.5753173828125,-1219.263427734375,697.7224731445312,843.5753173828125,-1486.895263671875,689.0402221679688,843.5753173828125,-1219.263427734375,697.7224731445312,843.5753173828125,-1219.263427734375,689.0402221679688,843.5753173828125,-1486.895263671875,680.8812866210938,840.605712890625,-1486.895263671875,680.8812866210938,840.605712890625,-1219.263427734375,689.0402221679688,843.5753173828125,-1486.895263671875,680.8812866210938,840.605712890625,-1219.263427734375,689.0402221679688,843.5753173828125,-1219.263427734375,680.8812866210938,840.605712890625,-1486.895263671875,674.230224609375,835.0247802734375,-1486.895263671875,674.230224609375,835.0247192382812,-1219.263427734375,680.8812866210938,840.605712890625,-1486.895263671875,674.230224609375,835.0247192382812,-1219.263427734375,680.8812866210938,840.605712890625,-1219.263427734375,674.230224609375,835.0247802734375,-1486.895263671875,669.8889770507812,827.505615234375,-1486.895263671875,669.8889770507812,827.505615234375,-1219.263427734375,674.230224609375,835.0247802734375,-1486.895263671875,669.8889770507812,827.505615234375,-1219.263427734375,674.230224609375,835.0247192382812,-1219.263427734375,669.8889770507812,827.505615234375,-1486.895263671875,668.3812866210938,818.955078125,-1486.895263671875,668.3812866210938,818.955078125,-1219.263427734375,669.8889770507812,827.505615234375,-1486.895263671875,668.3812866210938,818.955078125,-1219.263427734375,669.8889770507812,827.505615234375,-1219.263427734375,668.3812866210938,818.955078125,-1486.895263671875,669.8889770507812,810.4046020507812,-1486.895263671875,669.8889770507812,810.4044799804688,-1219.263427734375,668.3812866210938,818.955078125,-1486.895263671875,669.8889770507812,810.4044799804688,-1219.263427734375,668.3812866210938,818.955078125,-1219.263427734375,669.8889770507812,810.4046020507812,-1486.895263671875,674.230224609375,802.8853759765625,-1486.895263671875,674.230224609375,802.8853759765625,-1219.263427734375,669.8889770507812,810.4046020507812,-1486.895263671875,674.230224609375,802.8853759765625,-1219.263427734375,669.8889770507812,810.4044799804688,-1219.263427734375,674.230224609375,802.8853759765625,-1486.895263671875,680.8812866210938,797.3043823242188,-1486.895263671875,680.8812866210938,797.3043823242188,-1219.263427734375,674.230224609375,802.8853759765625,-1486.895263671875,680.8812866210938,797.3043823242188,-1219.263427734375,674.230224609375,802.8853759765625,-1219.263427734375,680.8812866210938,797.3043823242188,-1486.895263671875,689.0402221679688,794.3348999023438,-1486.895263671875,689.0402221679688,794.3347778320312,-1219.263427734375,680.8812866210938,797.3043823242188,-1486.895263671875,689.0402221679688,794.3347778320312,-1219.263427734375,680.8812866210938,797.3043823242188,-1219.263427734375,689.0402221679688,794.3348999023438,-1486.895263671875,697.7224731445312,794.3348999023438,-1486.895263671875,697.7224731445312,794.3347778320312,-1219.263427734375,689.0402221679688,794.3348999023438,-1486.895263671875,697.7224731445312,794.3347778320312,-1219.263427734375,689.0402221679688,794.3347778320312,-1219.263427734375,697.7224731445312,794.3348999023438,-1486.895263671875,705.8812866210938,797.3043823242188,-1486.895263671875,705.8812866210938,797.3043823242188,-1219.263427734375,697.7224731445312,794.3348999023438,-1486.895263671875,705.8812866210938,797.3043823242188,-1219.263427734375,697.7224731445312,794.3347778320312,-1219.263427734375,705.8812866210938,797.3043823242188,-1486.895263671875,712.532470703125,802.8853759765625,-1486.895263671875,712.532470703125,802.8853759765625,-1219.263427734375,705.8812866210938,797.3043823242188,-1486.895263671875,712.532470703125,802.8853759765625,-1219.263427734375,705.8812866210938,797.3043823242188,-1219.263427734375,712.532470703125,802.8853759765625,-1486.895263671875,716.8737182617188,810.4046020507812,-1486.895263671875,716.8737182617188,810.4044799804688,-1219.263427734375,712.532470703125,802.8853759765625,-1486.895263671875,716.8737182617188,810.4044799804688,-1219.263427734375,712.532470703125,802.8853759765625,-1219.263427734375,716.8737182617188,810.4046020507812,-1486.895263671875,718.3812866210938,818.955078125,-1486.895263671875,718.3812866210938,818.955078125,-1219.263427734375,716.8737182617188,810.4046020507812,-1486.895263671875,718.3812866210938,818.955078125,-1219.263427734375,716.8737182617188,810.4044799804688,-1219.263427734375,718.3812866210938,818.955078125,-1219.263427734375,716.8737182617188,827.505615234375,-1219.263427734375,716.8737182617188,827.5054931640625,-951.6314697265625,718.3812866210938,818.955078125,-1219.263427734375,716.8737182617188,827.5054931640625,-951.6314697265625,718.3812866210938,818.9550170898438,-951.6314697265625,716.8737182617188,827.505615234375,-1219.263427734375,712.532470703125,835.0247192382812,-1219.263427734375,712.532470703125,835.0247192382812,-951.6314697265625,716.8737182617188,827.505615234375,-1219.263427734375,712.532470703125,835.0247192382812,-951.6314697265625,716.8737182617188,827.5054931640625,-951.6314697265625,712.532470703125,835.0247192382812,-1219.263427734375,705.8812866210938,840.605712890625,-1219.263427734375,705.8812866210938,840.605712890625,-951.6314697265625,712.532470703125,835.0247192382812,-1219.263427734375,705.8812866210938,840.605712890625,-951.6314697265625,712.532470703125,835.0247192382812,-951.6314697265625,705.8812866210938,840.605712890625,-1219.263427734375,697.7224731445312,843.5753173828125,-1219.263427734375,697.7224731445312,843.5751953125,-951.6314697265625,705.8812866210938,840.605712890625,-1219.263427734375,697.7224731445312,843.5751953125,-951.6314697265625,705.8812866210938,840.605712890625,-951.6314697265625,697.7224731445312,843.5753173828125,-1219.263427734375,689.0402221679688,843.5753173828125,-1219.263427734375,689.0402221679688,843.5751953125,-951.6314697265625,697.7224731445312,843.5753173828125,-1219.263427734375,689.0402221679688,843.5751953125,-951.6314697265625,697.7224731445312,843.5751953125,-951.6314697265625,689.0402221679688,843.5753173828125,-1219.263427734375,680.8812866210938,840.605712890625,-1219.263427734375,680.8812866210938,840.605712890625,-951.6314697265625,689.0402221679688,843.5753173828125,-1219.263427734375,680.8812866210938,840.605712890625,-951.6314697265625,689.0402221679688,843.5751953125,-951.6314697265625,680.8812866210938,840.605712890625,-1219.263427734375,674.230224609375,835.0247192382812,-1219.263427734375,674.230224609375,835.0247192382812,-951.6314697265625,680.8812866210938,840.605712890625,-1219.263427734375,674.230224609375,835.0247192382812,-951.6314697265625,680.8812866210938,840.605712890625,-951.6314697265625,674.230224609375,835.0247192382812,-1219.263427734375,669.8889770507812,827.505615234375,-1219.263427734375,669.8889770507812,827.5054931640625,-951.6314697265625,674.230224609375,835.0247192382812,-1219.263427734375,669.8889770507812,827.5054931640625,-951.6314697265625,674.230224609375,835.0247192382812,-951.6314697265625,669.8889770507812,827.505615234375,-1219.263427734375,668.3812866210938,818.955078125,-1219.263427734375,668.3812866210938,818.9550170898438,-951.6314697265625,669.8889770507812,827.505615234375,-1219.263427734375,668.3812866210938,818.9550170898438,-951.6314697265625,669.8889770507812,827.5054931640625,-951.6314697265625,668.3812866210938,818.955078125,-1219.263427734375,669.8889770507812,810.4044799804688,-1219.263427734375,669.8889770507812,810.4044799804688,-951.6314697265625,668.3812866210938,818.955078125,-1219.263427734375,669.8889770507812,810.4044799804688,-951.6314697265625,668.3812866210938,818.9550170898438,-951.6314697265625,669.8889770507812,810.4044799804688,-1219.263427734375,674.230224609375,802.8853759765625,-1219.263427734375,674.230224609375,802.8853149414062,-951.6314697265625,669.8889770507812,810.4044799804688,-1219.263427734375,674.230224609375,802.8853149414062,-951.6314697265625,669.8889770507812,810.4044799804688,-951.6314697265625,674.230224609375,802.8853759765625,-1219.263427734375,680.8812866210938,797.3043823242188,-1219.263427734375,680.8812866210938,797.3043823242188,-951.6314697265625,674.230224609375,802.8853759765625,-1219.263427734375,680.8812866210938,797.3043823242188,-951.6314697265625,674.230224609375,802.8853149414062,-951.6314697265625,680.8812866210938,797.3043823242188,-1219.263427734375,689.0402221679688,794.3347778320312,-1219.263427734375,689.0402221679688,794.3347778320312,-951.6314697265625,680.8812866210938,797.3043823242188,-1219.263427734375,689.0402221679688,794.3347778320312,-951.6314697265625,680.8812866210938,797.3043823242188,-951.6314697265625,689.0402221679688,794.3347778320312,-1219.263427734375,697.7224731445312,794.3347778320312,-1219.263427734375,697.7224731445312,794.3347778320312,-951.6314697265625,689.0402221679688,794.3347778320312,-1219.263427734375,697.7224731445312,794.3347778320312,-951.6314697265625,689.0402221679688,794.3347778320312,-951.6314697265625,697.7224731445312,794.3347778320312,-1219.263427734375,705.8812866210938,797.3043823242188,-1219.263427734375,705.8812866210938,797.3043823242188,-951.6314697265625,697.7224731445312,794.3347778320312,-1219.263427734375,705.8812866210938,797.3043823242188,-951.6314697265625,697.7224731445312,794.3347778320312,-951.6314697265625,705.8812866210938,797.3043823242188,-1219.263427734375,712.532470703125,802.8853759765625,-1219.263427734375,712.532470703125,802.8853149414062,-951.6314697265625,705.8812866210938,797.3043823242188,-1219.263427734375,712.532470703125,802.8853149414062,-951.6314697265625,705.8812866210938,797.3043823242188,-951.6314697265625,712.532470703125,802.8853759765625,-1219.263427734375,716.8737182617188,810.4044799804688,-1219.263427734375,716.8737182617188,810.4044799804688,-951.6314697265625,712.532470703125,802.8853759765625,-1219.263427734375,716.8737182617188,810.4044799804688,-951.6314697265625,712.532470703125,802.8853149414062,-951.6314697265625,716.8737182617188,810.4044799804688,-1219.263427734375,718.3812866210938,818.955078125,-1219.263427734375,718.3812866210938,818.9550170898438,-951.6314697265625,716.8737182617188,810.4044799804688,-1219.263427734375,718.3812866210938,818.9550170898438,-951.6314697265625,716.8737182617188,810.4044799804688,-951.6314697265625,718.3812866210938,818.9550170898438,-951.6314697265625,716.8737182617188,827.5054931640625,-951.6314697265625,716.8737182617188,827.5054931640625,-683.9995727539062,718.3812866210938,818.9550170898438,-951.6314697265625,716.8737182617188,827.5054931640625,-683.9995727539062,718.3812866210938,818.9550170898438,-683.9995727539062,716.8737182617188,827.5054931640625,-951.6314697265625,712.532470703125,835.0247192382812,-951.6314697265625,712.532470703125,835.0247192382812,-683.9995727539062,716.8737182617188,827.5054931640625,-951.6314697265625,712.532470703125,835.0247192382812,-683.9995727539062,716.8737182617188,827.5054931640625,-683.9995727539062,712.532470703125,835.0247192382812,-951.6314697265625,705.8812866210938,840.605712890625,-951.6314697265625,705.8812866210938,840.6055908203125,-683.9995727539062,712.532470703125,835.0247192382812,-951.6314697265625,705.8812866210938,840.6055908203125,-683.9995727539062,712.532470703125,835.0247192382812,-683.9995727539062,705.8812866210938,840.605712890625,-951.6314697265625,697.7224731445312,843.5751953125,-951.6314697265625,697.7224731445312,843.5750732421875,-683.9995727539062,705.8812866210938,840.605712890625,-951.6314697265625,697.7224731445312,843.5750732421875,-683.9995727539062,705.8812866210938,840.6055908203125,-683.9995727539062,697.7224731445312,843.5751953125,-951.6314697265625,689.0402221679688,843.5751953125,-951.6314697265625,689.0402221679688,843.5750732421875,-683.9995727539062,697.7224731445312,843.5751953125,-951.6314697265625,689.0402221679688,843.5750732421875,-683.9995727539062,697.7224731445312,843.5750732421875,-683.9995727539062,689.0402221679688,843.5751953125,-951.6314697265625,680.8812866210938,840.605712890625,-951.6314697265625,680.8812866210938,840.6055908203125,-683.9995727539062,689.0402221679688,843.5751953125,-951.6314697265625,680.8812866210938,840.6055908203125,-683.9995727539062,689.0402221679688,843.5750732421875,-683.9995727539062,680.8812866210938,840.605712890625,-951.6314697265625,674.230224609375,835.0247192382812,-951.6314697265625,674.230224609375,835.0247192382812,-683.9995727539062,680.8812866210938,840.605712890625,-951.6314697265625,674.230224609375,835.0247192382812,-683.9995727539062,680.8812866210938,840.6055908203125,-683.9995727539062,674.230224609375,835.0247192382812,-951.6314697265625,669.8889770507812,827.5054931640625,-951.6314697265625,669.8889770507812,827.5054931640625,-683.9995727539062,674.230224609375,835.0247192382812,-951.6314697265625,669.8889770507812,827.5054931640625,-683.9995727539062,674.230224609375,835.0247192382812,-683.9995727539062,669.8889770507812,827.5054931640625,-951.6314697265625,668.3812866210938,818.9550170898438,-951.6314697265625,668.3812866210938,818.9550170898438,-683.9995727539062,669.8889770507812,827.5054931640625,-951.6314697265625,668.3812866210938,818.9550170898438,-683.9995727539062,669.8889770507812,827.5054931640625,-683.9995727539062,668.3812866210938,818.9550170898438,-951.6314697265625,669.8889770507812,810.4044799804688,-951.6314697265625,669.8889770507812,810.4044799804688,-683.9995727539062,668.3812866210938,818.9550170898438,-951.6314697265625,669.8889770507812,810.4044799804688,-683.9995727539062,668.3812866210938,818.9550170898438,-683.9995727539062,669.8889770507812,810.4044799804688,-951.6314697265625,674.230224609375,802.8853149414062,-951.6314697265625,674.230224609375,802.8853149414062,-683.9995727539062,669.8889770507812,810.4044799804688,-951.6314697265625,674.230224609375,802.8853149414062,-683.9995727539062,669.8889770507812,810.4044799804688,-683.9995727539062,674.230224609375,802.8853149414062,-951.6314697265625,680.8812866210938,797.3043823242188,-951.6314697265625,680.8812866210938,797.3043212890625,-683.9995727539062,674.230224609375,802.8853149414062,-951.6314697265625,680.8812866210938,797.3043212890625,-683.9995727539062,674.230224609375,802.8853149414062,-683.9995727539062,680.8812866210938,797.3043823242188,-951.6314697265625,689.0402221679688,794.3347778320312,-951.6314697265625,689.0402221679688,794.3347778320312,-683.9995727539062,680.8812866210938,797.3043823242188,-951.6314697265625,689.0402221679688,794.3347778320312,-683.9995727539062,680.8812866210938,797.3043212890625,-683.9995727539062,689.0402221679688,794.3347778320312,-951.6314697265625,697.7224731445312,794.3347778320312,-951.6314697265625,697.7224731445312,794.3347778320312,-683.9995727539062,689.0402221679688,794.3347778320312,-951.6314697265625,697.7224731445312,794.3347778320312,-683.9995727539062,689.0402221679688,794.3347778320312,-683.9995727539062,697.7224731445312,794.3347778320312,-951.6314697265625,705.8812866210938,797.3043823242188,-951.6314697265625,705.8812866210938,797.3043212890625,-683.9995727539062,697.7224731445312,794.3347778320312,-951.6314697265625,705.8812866210938,797.3043212890625,-683.9995727539062,697.7224731445312,794.3347778320312,-683.9995727539062,705.8812866210938,797.3043823242188,-951.6314697265625,712.532470703125,802.8853149414062,-951.6314697265625,712.532470703125,802.8853149414062,-683.9995727539062,705.8812866210938,797.3043823242188,-951.6314697265625,712.532470703125,802.8853149414062,-683.9995727539062,705.8812866210938,797.3043212890625,-683.9995727539062,712.532470703125,802.8853149414062,-951.6314697265625,716.8737182617188,810.4044799804688,-951.6314697265625,716.8737182617188,810.4044189453125,-683.9995727539062,712.532470703125,802.8853149414062,-951.6314697265625,716.8737182617188,810.4044189453125,-683.9995727539062,712.532470703125,802.8853149414062,-683.9995727539062,716.8737182617188,810.4044799804688,-951.6314697265625,718.3812866210938,818.9550170898438,-951.6314697265625,718.3812866210938,818.9550170898438,-683.9995727539062,716.8737182617188,810.4044799804688,-951.6314697265625,718.3812866210938,818.9550170898438,-683.9995727539062,716.8737182617188,810.4044189453125,-683.9995727539062,718.3812866210938,818.9550170898438,-683.9995727539062,716.8737182617188,827.5054931640625,-683.9995727539062,716.8737182617188,827.50537109375,-416.3677062988281,718.3812866210938,818.9550170898438,-683.9995727539062,716.8737182617188,827.50537109375,-416.3677062988281,718.3812866210938,818.9548950195312,-416.3677062988281,716.8737182617188,827.5054931640625,-683.9995727539062,712.532470703125,835.0247192382812,-683.9995727539062,712.532470703125,835.0245971679688,-416.3677062988281,716.8737182617188,827.5054931640625,-683.9995727539062,712.532470703125,835.0245971679688,-416.3677062988281,716.8737182617188,827.50537109375,-416.3677062988281,712.532470703125,835.0247192382812,-683.9995727539062,705.8812866210938,840.6055908203125,-683.9995727539062,705.8812866210938,840.6055297851562,-416.3677062988281,712.532470703125,835.0247192382812,-683.9995727539062,705.8812866210938,840.6055297851562,-416.3677062988281,712.532470703125,835.0245971679688,-416.3677062988281,705.8812866210938,840.6055908203125,-683.9995727539062,697.7224731445312,843.5750732421875,-683.9995727539062,697.7224731445312,843.5750732421875,-416.3677062988281,705.8812866210938,840.6055908203125,-683.9995727539062,697.7224731445312,843.5750732421875,-416.3677062988281,705.8812866210938,840.6055297851562,-416.3677062988281,697.7224731445312,843.5750732421875,-683.9995727539062,689.0402221679688,843.5750732421875,-683.9995727539062,689.0402221679688,843.5750732421875,-416.3677062988281,697.7224731445312,843.5750732421875,-683.9995727539062,689.0402221679688,843.5750732421875,-416.3677062988281,697.7224731445312,843.5750732421875,-416.3677062988281,689.0402221679688,843.5750732421875,-683.9995727539062,680.8812866210938,840.6055908203125,-683.9995727539062,680.8812866210938,840.6055297851562,-416.3677062988281,689.0402221679688,843.5750732421875,-683.9995727539062,680.8812866210938,840.6055297851562,-416.3677062988281,689.0402221679688,843.5750732421875,-416.3677062988281,680.8812866210938,840.6055908203125,-683.9995727539062,674.230224609375,835.0247192382812,-683.9995727539062,674.230224609375,835.0245971679688,-416.3677062988281,680.8812866210938,840.6055908203125,-683.9995727539062,674.230224609375,835.0245971679688,-416.3677062988281,680.8812866210938,840.6055297851562,-416.3677062988281,674.230224609375,835.0247192382812,-683.9995727539062,669.8889770507812,827.5054931640625,-683.9995727539062,669.8889770507812,827.50537109375,-416.3677062988281,674.230224609375,835.0247192382812,-683.9995727539062,669.8889770507812,827.50537109375,-416.3677062988281,674.230224609375,835.0245971679688,-416.3677062988281,669.8889770507812,827.5054931640625,-683.9995727539062,668.3812866210938,818.9550170898438,-683.9995727539062,668.3812866210938,818.9548950195312,-416.3677062988281,669.8889770507812,827.5054931640625,-683.9995727539062,668.3812866210938,818.9548950195312,-416.3677062988281,669.8889770507812,827.50537109375,-416.3677062988281,668.3812866210938,818.9550170898438,-683.9995727539062,669.8889770507812,810.4044799804688,-683.9995727539062,669.8889770507812,810.4044189453125,-416.3677062988281,668.3812866210938,818.9550170898438,-683.9995727539062,669.8889770507812,810.4044189453125,-416.3677062988281,668.3812866210938,818.9548950195312,-416.3677062988281,669.8889770507812,810.4044799804688,-683.9995727539062,674.230224609375,802.8853149414062,-683.9995727539062,674.230224609375,802.8853149414062,-416.3677062988281,669.8889770507812,810.4044799804688,-683.9995727539062,674.230224609375,802.8853149414062,-416.3677062988281,669.8889770507812,810.4044189453125,-416.3677062988281,674.230224609375,802.8853149414062,-683.9995727539062,680.8812866210938,797.3043212890625,-683.9995727539062,680.8812866210938,797.3043212890625,-416.3677062988281,674.230224609375,802.8853149414062,-683.9995727539062,680.8812866210938,797.3043212890625,-416.3677062988281,674.230224609375,802.8853149414062,-416.3677062988281,680.8812866210938,797.3043212890625,-683.9995727539062,689.0402221679688,794.3347778320312,-683.9995727539062,689.0402221679688,794.334716796875,-416.3677062988281,680.8812866210938,797.3043212890625,-683.9995727539062,689.0402221679688,794.334716796875,-416.3677062988281,680.8812866210938,797.3043212890625,-416.3677062988281,689.0402221679688,794.3347778320312,-683.9995727539062,697.7224731445312,794.3347778320312,-683.9995727539062,697.7224731445312,794.334716796875,-416.3677062988281,689.0402221679688,794.3347778320312,-683.9995727539062,697.7224731445312,794.334716796875,-416.3677062988281,689.0402221679688,794.334716796875,-416.3677062988281,697.7224731445312,794.3347778320312,-683.9995727539062,705.8812866210938,797.3043212890625,-683.9995727539062,705.8812866210938,797.3043212890625,-416.3677062988281,697.7224731445312,794.3347778320312,-683.9995727539062,705.8812866210938,797.3043212890625,-416.3677062988281,697.7224731445312,794.334716796875,-416.3677062988281,705.8812866210938,797.3043212890625,-683.9995727539062,712.532470703125,802.8853149414062,-683.9995727539062,712.532470703125,802.8851928710938,-416.3677062988281,705.8812866210938,797.3043212890625,-683.9995727539062,712.532470703125,802.8851928710938,-416.3677062988281,705.8812866210938,797.3043212890625,-416.3677062988281,712.532470703125,802.8853149414062,-683.9995727539062,716.8737182617188,810.4044189453125,-683.9995727539062,716.8737182617188,810.4044189453125,-416.3677062988281,712.532470703125,802.8853149414062,-683.9995727539062,716.8737182617188,810.4044189453125,-416.3677062988281,712.532470703125,802.8851928710938,-416.3677062988281,716.8737182617188,810.4044189453125,-683.9995727539062,718.3812866210938,818.9550170898438,-683.9995727539062,718.3812866210938,818.9548950195312,-416.3677062988281,716.8737182617188,810.4044189453125,-683.9995727539062,718.3812866210938,818.9548950195312,-416.3677062988281,716.8737182617188,810.4044189453125,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,716.8737182617188,810.4044189453125,-416.3677062988281,718.3812866210938,818.9548950195312,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,718.3812866210938,818.9548950195312,-416.3677062988281,716.8737182617188,827.50537109375,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,716.8737182617188,827.50537109375,-416.3677062988281,712.532470703125,835.0245971679688,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,712.532470703125,835.0245971679688,-416.3677062988281,705.8812866210938,840.6055297851562,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,705.8812866210938,840.6055297851562,-416.3677062988281,697.7224731445312,843.5750732421875,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,697.7224731445312,843.5750732421875,-416.3677062988281,689.0402221679688,843.5750732421875,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,689.0402221679688,843.5750732421875,-416.3677062988281,680.8812866210938,840.6055297851562,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,680.8812866210938,840.6055297851562,-416.3677062988281,674.230224609375,835.0245971679688,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,674.230224609375,835.0245971679688,-416.3677062988281,669.8889770507812,827.50537109375,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,669.8889770507812,827.50537109375,-416.3677062988281,668.3812866210938,818.9548950195312,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,668.3812866210938,818.9548950195312,-416.3677062988281,669.8889770507812,810.4044189453125,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,669.8889770507812,810.4044189453125,-416.3677062988281,674.230224609375,802.8853149414062,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,674.230224609375,802.8853149414062,-416.3677062988281,680.8812866210938,797.3043212890625,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,680.8812866210938,797.3043212890625,-416.3677062988281,689.0402221679688,794.334716796875,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,689.0402221679688,794.334716796875,-416.3677062988281,697.7224731445312,794.334716796875,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,697.7224731445312,794.334716796875,-416.3677062988281,705.8812866210938,797.3043212890625,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,705.8812866210938,797.3043212890625,-416.3677062988281,712.532470703125,802.8851928710938,-416.3677062988281,693.3812866210938,818.9548950195312,-416.3677062988281,712.532470703125,802.8851928710938,-416.3677062988281,716.8737182617188,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [693.3812866210938,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466595042122
| }
| }
| },
| {
| "uuid": "5D5D11C1-39E1-4E4A-913A-B0E854BA77EB",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [793.3812866210938,818.955078125,-1754.5272216796875,812.532470703125,835.0247802734375,-1754.5272216796875,816.8737182617188,827.505615234375,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,816.8737182617188,827.505615234375,-1754.5272216796875,818.3812866210938,818.955078125,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,797.7224731445312,843.5753173828125,-1754.5272216796875,805.8812866210938,840.6057739257812,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,805.8812866210938,840.6057739257812,-1754.5272216796875,812.532470703125,835.0247802734375,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,780.8812866210938,840.6057739257812,-1754.5272216796875,789.0402221679688,843.5753173828125,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,789.0402221679688,843.5753173828125,-1754.5272216796875,797.7224731445312,843.5753173828125,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,769.8889770507812,827.505615234375,-1754.5272216796875,774.230224609375,835.0247802734375,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,774.230224609375,835.0247802734375,-1754.5272216796875,780.8812866210938,840.6057739257812,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,769.8889770507812,810.4047241210938,-1754.5272216796875,768.3812866210938,818.955078125,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,768.3812866210938,818.955078125,-1754.5272216796875,769.8889770507812,827.505615234375,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,780.8812866210938,797.3045043945312,-1754.5272216796875,774.230224609375,802.8853759765625,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,774.230224609375,802.8853759765625,-1754.5272216796875,769.8889770507812,810.4047241210938,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,797.7224731445312,794.3350219726562,-1754.5272216796875,789.0402221679688,794.3350219726562,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,789.0402221679688,794.3350219726562,-1754.5272216796875,780.8812866210938,797.3045043945312,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,812.532470703125,802.8853759765625,-1754.5272216796875,805.8812866210938,797.3045043945312,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,805.8812866210938,797.3045043945312,-1754.5272216796875,797.7224731445312,794.3350219726562,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,818.3812866210938,818.955078125,-1754.5272216796875,816.8737182617188,810.4046020507812,-1754.5272216796875,793.3812866210938,818.955078125,-1754.5272216796875,816.8737182617188,810.4046020507812,-1754.5272216796875,812.532470703125,802.8853759765625,-1754.5272216796875,818.3812866210938,818.955078125,-1754.5272216796875,816.8737182617188,827.505615234375,-1754.5272216796875,816.8737182617188,827.505615234375,-1486.895263671875,818.3812866210938,818.955078125,-1754.5272216796875,816.8737182617188,827.505615234375,-1486.895263671875,818.3812866210938,818.955078125,-1486.895263671875,816.8737182617188,827.505615234375,-1754.5272216796875,812.532470703125,835.0247802734375,-1754.5272216796875,812.532470703125,835.0247802734375,-1486.895263671875,816.8737182617188,827.505615234375,-1754.5272216796875,812.532470703125,835.0247802734375,-1486.895263671875,816.8737182617188,827.505615234375,-1486.895263671875,812.532470703125,835.0247802734375,-1754.5272216796875,805.8812866210938,840.6057739257812,-1754.5272216796875,805.8812866210938,840.605712890625,-1486.895263671875,812.532470703125,835.0247802734375,-1754.5272216796875,805.8812866210938,840.605712890625,-1486.895263671875,812.532470703125,835.0247802734375,-1486.895263671875,805.8812866210938,840.6057739257812,-1754.5272216796875,797.7224731445312,843.5753173828125,-1754.5272216796875,797.7224731445312,843.5753173828125,-1486.895263671875,805.8812866210938,840.6057739257812,-1754.5272216796875,797.7224731445312,843.5753173828125,-1486.895263671875,805.8812866210938,840.605712890625,-1486.895263671875,797.7224731445312,843.5753173828125,-1754.5272216796875,789.0402221679688,843.5753173828125,-1754.5272216796875,789.0402221679688,843.5753173828125,-1486.895263671875,797.7224731445312,843.5753173828125,-1754.5272216796875,789.0402221679688,843.5753173828125,-1486.895263671875,797.7224731445312,843.5753173828125,-1486.895263671875,789.0402221679688,843.5753173828125,-1754.5272216796875,780.8812866210938,840.6057739257812,-1754.5272216796875,780.8812866210938,840.605712890625,-1486.895263671875,789.0402221679688,843.5753173828125,-1754.5272216796875,780.8812866210938,840.605712890625,-1486.895263671875,789.0402221679688,843.5753173828125,-1486.895263671875,780.8812866210938,840.6057739257812,-1754.5272216796875,774.230224609375,835.0247802734375,-1754.5272216796875,774.230224609375,835.0247802734375,-1486.895263671875,780.8812866210938,840.6057739257812,-1754.5272216796875,774.230224609375,835.0247802734375,-1486.895263671875,780.8812866210938,840.605712890625,-1486.895263671875,774.230224609375,835.0247802734375,-1754.5272216796875,769.8889770507812,827.505615234375,-1754.5272216796875,769.8889770507812,827.505615234375,-1486.895263671875,774.230224609375,835.0247802734375,-1754.5272216796875,769.8889770507812,827.505615234375,-1486.895263671875,774.230224609375,835.0247802734375,-1486.895263671875,769.8889770507812,827.505615234375,-1754.5272216796875,768.3812866210938,818.955078125,-1754.5272216796875,768.3812866210938,818.955078125,-1486.895263671875,769.8889770507812,827.505615234375,-1754.5272216796875,768.3812866210938,818.955078125,-1486.895263671875,769.8889770507812,827.505615234375,-1486.895263671875,768.3812866210938,818.955078125,-1754.5272216796875,769.8889770507812,810.4047241210938,-1754.5272216796875,769.8889770507812,810.4046020507812,-1486.895263671875,768.3812866210938,818.955078125,-1754.5272216796875,769.8889770507812,810.4046020507812,-1486.895263671875,768.3812866210938,818.955078125,-1486.895263671875,769.8889770507812,810.4047241210938,-1754.5272216796875,774.230224609375,802.8853759765625,-1754.5272216796875,774.230224609375,802.8853759765625,-1486.895263671875,769.8889770507812,810.4047241210938,-1754.5272216796875,774.230224609375,802.8853759765625,-1486.895263671875,769.8889770507812,810.4046020507812,-1486.895263671875,774.230224609375,802.8853759765625,-1754.5272216796875,780.8812866210938,797.3045043945312,-1754.5272216796875,780.8812866210938,797.3043823242188,-1486.895263671875,774.230224609375,802.8853759765625,-1754.5272216796875,780.8812866210938,797.3043823242188,-1486.895263671875,774.230224609375,802.8853759765625,-1486.895263671875,780.8812866210938,797.3045043945312,-1754.5272216796875,789.0402221679688,794.3350219726562,-1754.5272216796875,789.0402221679688,794.3348999023438,-1486.895263671875,780.8812866210938,797.3045043945312,-1754.5272216796875,789.0402221679688,794.3348999023438,-1486.895263671875,780.8812866210938,797.3043823242188,-1486.895263671875,789.0402221679688,794.3350219726562,-1754.5272216796875,797.7224731445312,794.3350219726562,-1754.5272216796875,797.7224731445312,794.3348999023438,-1486.895263671875,789.0402221679688,794.3350219726562,-1754.5272216796875,797.7224731445312,794.3348999023438,-1486.895263671875,789.0402221679688,794.3348999023438,-1486.895263671875,797.7224731445312,794.3350219726562,-1754.5272216796875,805.8812866210938,797.3045043945312,-1754.5272216796875,805.8812866210938,797.3043823242188,-1486.895263671875,797.7224731445312,794.3350219726562,-1754.5272216796875,805.8812866210938,797.3043823242188,-1486.895263671875,797.7224731445312,794.3348999023438,-1486.895263671875,805.8812866210938,797.3045043945312,-1754.5272216796875,812.532470703125,802.8853759765625,-1754.5272216796875,812.532470703125,802.8853759765625,-1486.895263671875,805.8812866210938,797.3045043945312,-1754.5272216796875,812.532470703125,802.8853759765625,-1486.895263671875,805.8812866210938,797.3043823242188,-1486.895263671875,812.532470703125,802.8853759765625,-1754.5272216796875,816.8737182617188,810.4046020507812,-1754.5272216796875,816.8737182617188,810.4046020507812,-1486.895263671875,812.532470703125,802.8853759765625,-1754.5272216796875,816.8737182617188,810.4046020507812,-1486.895263671875,812.532470703125,802.8853759765625,-1486.895263671875,816.8737182617188,810.4046020507812,-1754.5272216796875,818.3812866210938,818.955078125,-1754.5272216796875,818.3812866210938,818.955078125,-1486.895263671875,816.8737182617188,810.4046020507812,-1754.5272216796875,818.3812866210938,818.955078125,-1486.895263671875,816.8737182617188,810.4046020507812,-1486.895263671875,818.3812866210938,818.955078125,-1486.895263671875,816.8737182617188,827.505615234375,-1486.895263671875,816.8737182617188,827.505615234375,-1219.263427734375,818.3812866210938,818.955078125,-1486.895263671875,816.8737182617188,827.505615234375,-1219.263427734375,818.3812866210938,818.955078125,-1219.263427734375,816.8737182617188,827.505615234375,-1486.895263671875,812.532470703125,835.0247802734375,-1486.895263671875,812.532470703125,835.0247192382812,-1219.263427734375,816.8737182617188,827.505615234375,-1486.895263671875,812.532470703125,835.0247192382812,-1219.263427734375,816.8737182617188,827.505615234375,-1219.263427734375,812.532470703125,835.0247802734375,-1486.895263671875,805.8812866210938,840.605712890625,-1486.895263671875,805.8812866210938,840.605712890625,-1219.263427734375,812.532470703125,835.0247802734375,-1486.895263671875,805.8812866210938,840.605712890625,-1219.263427734375,812.532470703125,835.0247192382812,-1219.263427734375,805.8812866210938,840.605712890625,-1486.895263671875,797.7224731445312,843.5753173828125,-1486.895263671875,797.7224731445312,843.5753173828125,-1219.263427734375,805.8812866210938,840.605712890625,-1486.895263671875,797.7224731445312,843.5753173828125,-1219.263427734375,805.8812866210938,840.605712890625,-1219.263427734375,797.7224731445312,843.5753173828125,-1486.895263671875,789.0402221679688,843.5753173828125,-1486.895263671875,789.0402221679688,843.5753173828125,-1219.263427734375,797.7224731445312,843.5753173828125,-1486.895263671875,789.0402221679688,843.5753173828125,-1219.263427734375,797.7224731445312,843.5753173828125,-1219.263427734375,789.0402221679688,843.5753173828125,-1486.895263671875,780.8812866210938,840.605712890625,-1486.895263671875,780.8812866210938,840.605712890625,-1219.263427734375,789.0402221679688,843.5753173828125,-1486.895263671875,780.8812866210938,840.605712890625,-1219.263427734375,789.0402221679688,843.5753173828125,-1219.263427734375,780.8812866210938,840.605712890625,-1486.895263671875,774.230224609375,835.0247802734375,-1486.895263671875,774.230224609375,835.0247192382812,-1219.263427734375,780.8812866210938,840.605712890625,-1486.895263671875,774.230224609375,835.0247192382812,-1219.263427734375,780.8812866210938,840.605712890625,-1219.263427734375,774.230224609375,835.0247802734375,-1486.895263671875,769.8889770507812,827.505615234375,-1486.895263671875,769.8889770507812,827.505615234375,-1219.263427734375,774.230224609375,835.0247802734375,-1486.895263671875,769.8889770507812,827.505615234375,-1219.263427734375,774.230224609375,835.0247192382812,-1219.263427734375,769.8889770507812,827.505615234375,-1486.895263671875,768.3812866210938,818.955078125,-1486.895263671875,768.3812866210938,818.955078125,-1219.263427734375,769.8889770507812,827.505615234375,-1486.895263671875,768.3812866210938,818.955078125,-1219.263427734375,769.8889770507812,827.505615234375,-1219.263427734375,768.3812866210938,818.955078125,-1486.895263671875,769.8889770507812,810.4046020507812,-1486.895263671875,769.8889770507812,810.4044799804688,-1219.263427734375,768.3812866210938,818.955078125,-1486.895263671875,769.8889770507812,810.4044799804688,-1219.263427734375,768.3812866210938,818.955078125,-1219.263427734375,769.8889770507812,810.4046020507812,-1486.895263671875,774.230224609375,802.8853759765625,-1486.895263671875,774.230224609375,802.8853759765625,-1219.263427734375,769.8889770507812,810.4046020507812,-1486.895263671875,774.230224609375,802.8853759765625,-1219.263427734375,769.8889770507812,810.4044799804688,-1219.263427734375,774.230224609375,802.8853759765625,-1486.895263671875,780.8812866210938,797.3043823242188,-1486.895263671875,780.8812866210938,797.3043823242188,-1219.263427734375,774.230224609375,802.8853759765625,-1486.895263671875,780.8812866210938,797.3043823242188,-1219.263427734375,774.230224609375,802.8853759765625,-1219.263427734375,780.8812866210938,797.3043823242188,-1486.895263671875,789.0402221679688,794.3348999023438,-1486.895263671875,789.0402221679688,794.3347778320312,-1219.263427734375,780.8812866210938,797.3043823242188,-1486.895263671875,789.0402221679688,794.3347778320312,-1219.263427734375,780.8812866210938,797.3043823242188,-1219.263427734375,789.0402221679688,794.3348999023438,-1486.895263671875,797.7224731445312,794.3348999023438,-1486.895263671875,797.7224731445312,794.3347778320312,-1219.263427734375,789.0402221679688,794.3348999023438,-1486.895263671875,797.7224731445312,794.3347778320312,-1219.263427734375,789.0402221679688,794.3347778320312,-1219.263427734375,797.7224731445312,794.3348999023438,-1486.895263671875,805.8812866210938,797.3043823242188,-1486.895263671875,805.8812866210938,797.3043823242188,-1219.263427734375,797.7224731445312,794.3348999023438,-1486.895263671875,805.8812866210938,797.3043823242188,-1219.263427734375,797.7224731445312,794.3347778320312,-1219.263427734375,805.8812866210938,797.3043823242188,-1486.895263671875,812.532470703125,802.8853759765625,-1486.895263671875,812.532470703125,802.8853759765625,-1219.263427734375,805.8812866210938,797.3043823242188,-1486.895263671875,812.532470703125,802.8853759765625,-1219.263427734375,805.8812866210938,797.3043823242188,-1219.263427734375,812.532470703125,802.8853759765625,-1486.895263671875,816.8737182617188,810.4046020507812,-1486.895263671875,816.8737182617188,810.4044799804688,-1219.263427734375,812.532470703125,802.8853759765625,-1486.895263671875,816.8737182617188,810.4044799804688,-1219.263427734375,812.532470703125,802.8853759765625,-1219.263427734375,816.8737182617188,810.4046020507812,-1486.895263671875,818.3812866210938,818.955078125,-1486.895263671875,818.3812866210938,818.955078125,-1219.263427734375,816.8737182617188,810.4046020507812,-1486.895263671875,818.3812866210938,818.955078125,-1219.263427734375,816.8737182617188,810.4044799804688,-1219.263427734375,818.3812866210938,818.955078125,-1219.263427734375,816.8737182617188,827.505615234375,-1219.263427734375,816.8737182617188,827.5054931640625,-951.6314697265625,818.3812866210938,818.955078125,-1219.263427734375,816.8737182617188,827.5054931640625,-951.6314697265625,818.3812866210938,818.9550170898438,-951.6314697265625,816.8737182617188,827.505615234375,-1219.263427734375,812.532470703125,835.0247192382812,-1219.263427734375,812.532470703125,835.0247192382812,-951.6314697265625,816.8737182617188,827.505615234375,-1219.263427734375,812.532470703125,835.0247192382812,-951.6314697265625,816.8737182617188,827.5054931640625,-951.6314697265625,812.532470703125,835.0247192382812,-1219.263427734375,805.8812866210938,840.605712890625,-1219.263427734375,805.8812866210938,840.605712890625,-951.6314697265625,812.532470703125,835.0247192382812,-1219.263427734375,805.8812866210938,840.605712890625,-951.6314697265625,812.532470703125,835.0247192382812,-951.6314697265625,805.8812866210938,840.605712890625,-1219.263427734375,797.7224731445312,843.5753173828125,-1219.263427734375,797.7224731445312,843.5751953125,-951.6314697265625,805.8812866210938,840.605712890625,-1219.263427734375,797.7224731445312,843.5751953125,-951.6314697265625,805.8812866210938,840.605712890625,-951.6314697265625,797.7224731445312,843.5753173828125,-1219.263427734375,789.0402221679688,843.5753173828125,-1219.263427734375,789.0402221679688,843.5751953125,-951.6314697265625,797.7224731445312,843.5753173828125,-1219.263427734375,789.0402221679688,843.5751953125,-951.6314697265625,797.7224731445312,843.5751953125,-951.6314697265625,789.0402221679688,843.5753173828125,-1219.263427734375,780.8812866210938,840.605712890625,-1219.263427734375,780.8812866210938,840.605712890625,-951.6314697265625,789.0402221679688,843.5753173828125,-1219.263427734375,780.8812866210938,840.605712890625,-951.6314697265625,789.0402221679688,843.5751953125,-951.6314697265625,780.8812866210938,840.605712890625,-1219.263427734375,774.230224609375,835.0247192382812,-1219.263427734375,774.230224609375,835.0247192382812,-951.6314697265625,780.8812866210938,840.605712890625,-1219.263427734375,774.230224609375,835.0247192382812,-951.6314697265625,780.8812866210938,840.605712890625,-951.6314697265625,774.230224609375,835.0247192382812,-1219.263427734375,769.8889770507812,827.505615234375,-1219.263427734375,769.8889770507812,827.5054931640625,-951.6314697265625,774.230224609375,835.0247192382812,-1219.263427734375,769.8889770507812,827.5054931640625,-951.6314697265625,774.230224609375,835.0247192382812,-951.6314697265625,769.8889770507812,827.505615234375,-1219.263427734375,768.3812866210938,818.955078125,-1219.263427734375,768.3812866210938,818.9550170898438,-951.6314697265625,769.8889770507812,827.505615234375,-1219.263427734375,768.3812866210938,818.9550170898438,-951.6314697265625,769.8889770507812,827.5054931640625,-951.6314697265625,768.3812866210938,818.955078125,-1219.263427734375,769.8889770507812,810.4044799804688,-1219.263427734375,769.8889770507812,810.4044799804688,-951.6314697265625,768.3812866210938,818.955078125,-1219.263427734375,769.8889770507812,810.4044799804688,-951.6314697265625,768.3812866210938,818.9550170898438,-951.6314697265625,769.8889770507812,810.4044799804688,-1219.263427734375,774.230224609375,802.8853759765625,-1219.263427734375,774.230224609375,802.8853149414062,-951.6314697265625,769.8889770507812,810.4044799804688,-1219.263427734375,774.230224609375,802.8853149414062,-951.6314697265625,769.8889770507812,810.4044799804688,-951.6314697265625,774.230224609375,802.8853759765625,-1219.263427734375,780.8812866210938,797.3043823242188,-1219.263427734375,780.8812866210938,797.3043823242188,-951.6314697265625,774.230224609375,802.8853759765625,-1219.263427734375,780.8812866210938,797.3043823242188,-951.6314697265625,774.230224609375,802.8853149414062,-951.6314697265625,780.8812866210938,797.3043823242188,-1219.263427734375,789.0402221679688,794.3347778320312,-1219.263427734375,789.0402221679688,794.3347778320312,-951.6314697265625,780.8812866210938,797.3043823242188,-1219.263427734375,789.0402221679688,794.3347778320312,-951.6314697265625,780.8812866210938,797.3043823242188,-951.6314697265625,789.0402221679688,794.3347778320312,-1219.263427734375,797.7224731445312,794.3347778320312,-1219.263427734375,797.7224731445312,794.3347778320312,-951.6314697265625,789.0402221679688,794.3347778320312,-1219.263427734375,797.7224731445312,794.3347778320312,-951.6314697265625,789.0402221679688,794.3347778320312,-951.6314697265625,797.7224731445312,794.3347778320312,-1219.263427734375,805.8812866210938,797.3043823242188,-1219.263427734375,805.8812866210938,797.3043823242188,-951.6314697265625,797.7224731445312,794.3347778320312,-1219.263427734375,805.8812866210938,797.3043823242188,-951.6314697265625,797.7224731445312,794.3347778320312,-951.6314697265625,805.8812866210938,797.3043823242188,-1219.263427734375,812.532470703125,802.8853759765625,-1219.263427734375,812.532470703125,802.8853149414062,-951.6314697265625,805.8812866210938,797.3043823242188,-1219.263427734375,812.532470703125,802.8853149414062,-951.6314697265625,805.8812866210938,797.3043823242188,-951.6314697265625,812.532470703125,802.8853759765625,-1219.263427734375,816.8737182617188,810.4044799804688,-1219.263427734375,816.8737182617188,810.4044799804688,-951.6314697265625,812.532470703125,802.8853759765625,-1219.263427734375,816.8737182617188,810.4044799804688,-951.6314697265625,812.532470703125,802.8853149414062,-951.6314697265625,816.8737182617188,810.4044799804688,-1219.263427734375,818.3812866210938,818.955078125,-1219.263427734375,818.3812866210938,818.9550170898438,-951.6314697265625,816.8737182617188,810.4044799804688,-1219.263427734375,818.3812866210938,818.9550170898438,-951.6314697265625,816.8737182617188,810.4044799804688,-951.6314697265625,818.3812866210938,818.9550170898438,-951.6314697265625,816.8737182617188,827.5054931640625,-951.6314697265625,816.8737182617188,827.5054931640625,-683.9995727539062,818.3812866210938,818.9550170898438,-951.6314697265625,816.8737182617188,827.5054931640625,-683.9995727539062,818.3812866210938,818.9550170898438,-683.9995727539062,816.8737182617188,827.5054931640625,-951.6314697265625,812.532470703125,835.0247192382812,-951.6314697265625,812.532470703125,835.0247192382812,-683.9995727539062,816.8737182617188,827.5054931640625,-951.6314697265625,812.532470703125,835.0247192382812,-683.9995727539062,816.8737182617188,827.5054931640625,-683.9995727539062,812.532470703125,835.0247192382812,-951.6314697265625,805.8812866210938,840.605712890625,-951.6314697265625,805.8812866210938,840.6055908203125,-683.9995727539062,812.532470703125,835.0247192382812,-951.6314697265625,805.8812866210938,840.6055908203125,-683.9995727539062,812.532470703125,835.0247192382812,-683.9995727539062,805.8812866210938,840.605712890625,-951.6314697265625,797.7224731445312,843.5751953125,-951.6314697265625,797.7224731445312,843.5750732421875,-683.9995727539062,805.8812866210938,840.605712890625,-951.6314697265625,797.7224731445312,843.5750732421875,-683.9995727539062,805.8812866210938,840.6055908203125,-683.9995727539062,797.7224731445312,843.5751953125,-951.6314697265625,789.0402221679688,843.5751953125,-951.6314697265625,789.0402221679688,843.5750732421875,-683.9995727539062,797.7224731445312,843.5751953125,-951.6314697265625,789.0402221679688,843.5750732421875,-683.9995727539062,797.7224731445312,843.5750732421875,-683.9995727539062,789.0402221679688,843.5751953125,-951.6314697265625,780.8812866210938,840.605712890625,-951.6314697265625,780.8812866210938,840.6055908203125,-683.9995727539062,789.0402221679688,843.5751953125,-951.6314697265625,780.8812866210938,840.6055908203125,-683.9995727539062,789.0402221679688,843.5750732421875,-683.9995727539062,780.8812866210938,840.605712890625,-951.6314697265625,774.230224609375,835.0247192382812,-951.6314697265625,774.230224609375,835.0247192382812,-683.9995727539062,780.8812866210938,840.605712890625,-951.6314697265625,774.230224609375,835.0247192382812,-683.9995727539062,780.8812866210938,840.6055908203125,-683.9995727539062,774.230224609375,835.0247192382812,-951.6314697265625,769.8889770507812,827.5054931640625,-951.6314697265625,769.8889770507812,827.5054931640625,-683.9995727539062,774.230224609375,835.0247192382812,-951.6314697265625,769.8889770507812,827.5054931640625,-683.9995727539062,774.230224609375,835.0247192382812,-683.9995727539062,769.8889770507812,827.5054931640625,-951.6314697265625,768.3812866210938,818.9550170898438,-951.6314697265625,768.3812866210938,818.9550170898438,-683.9995727539062,769.8889770507812,827.5054931640625,-951.6314697265625,768.3812866210938,818.9550170898438,-683.9995727539062,769.8889770507812,827.5054931640625,-683.9995727539062,768.3812866210938,818.9550170898438,-951.6314697265625,769.8889770507812,810.4044799804688,-951.6314697265625,769.8889770507812,810.4044799804688,-683.9995727539062,768.3812866210938,818.9550170898438,-951.6314697265625,769.8889770507812,810.4044799804688,-683.9995727539062,768.3812866210938,818.9550170898438,-683.9995727539062,769.8889770507812,810.4044799804688,-951.6314697265625,774.230224609375,802.8853149414062,-951.6314697265625,774.230224609375,802.8853149414062,-683.9995727539062,769.8889770507812,810.4044799804688,-951.6314697265625,774.230224609375,802.8853149414062,-683.9995727539062,769.8889770507812,810.4044799804688,-683.9995727539062,774.230224609375,802.8853149414062,-951.6314697265625,780.8812866210938,797.3043823242188,-951.6314697265625,780.8812866210938,797.3043212890625,-683.9995727539062,774.230224609375,802.8853149414062,-951.6314697265625,780.8812866210938,797.3043212890625,-683.9995727539062,774.230224609375,802.8853149414062,-683.9995727539062,780.8812866210938,797.3043823242188,-951.6314697265625,789.0402221679688,794.3347778320312,-951.6314697265625,789.0402221679688,794.3347778320312,-683.9995727539062,780.8812866210938,797.3043823242188,-951.6314697265625,789.0402221679688,794.3347778320312,-683.9995727539062,780.8812866210938,797.3043212890625,-683.9995727539062,789.0402221679688,794.3347778320312,-951.6314697265625,797.7224731445312,794.3347778320312,-951.6314697265625,797.7224731445312,794.3347778320312,-683.9995727539062,789.0402221679688,794.3347778320312,-951.6314697265625,797.7224731445312,794.3347778320312,-683.9995727539062,789.0402221679688,794.3347778320312,-683.9995727539062,797.7224731445312,794.3347778320312,-951.6314697265625,805.8812866210938,797.3043823242188,-951.6314697265625,805.8812866210938,797.3043212890625,-683.9995727539062,797.7224731445312,794.3347778320312,-951.6314697265625,805.8812866210938,797.3043212890625,-683.9995727539062,797.7224731445312,794.3347778320312,-683.9995727539062,805.8812866210938,797.3043823242188,-951.6314697265625,812.532470703125,802.8853149414062,-951.6314697265625,812.532470703125,802.8853149414062,-683.9995727539062,805.8812866210938,797.3043823242188,-951.6314697265625,812.532470703125,802.8853149414062,-683.9995727539062,805.8812866210938,797.3043212890625,-683.9995727539062,812.532470703125,802.8853149414062,-951.6314697265625,816.8737182617188,810.4044799804688,-951.6314697265625,816.8737182617188,810.4044189453125,-683.9995727539062,812.532470703125,802.8853149414062,-951.6314697265625,816.8737182617188,810.4044189453125,-683.9995727539062,812.532470703125,802.8853149414062,-683.9995727539062,816.8737182617188,810.4044799804688,-951.6314697265625,818.3812866210938,818.9550170898438,-951.6314697265625,818.3812866210938,818.9550170898438,-683.9995727539062,816.8737182617188,810.4044799804688,-951.6314697265625,818.3812866210938,818.9550170898438,-683.9995727539062,816.8737182617188,810.4044189453125,-683.9995727539062,818.3812866210938,818.9550170898438,-683.9995727539062,816.8737182617188,827.5054931640625,-683.9995727539062,816.8737182617188,827.50537109375,-416.3677062988281,818.3812866210938,818.9550170898438,-683.9995727539062,816.8737182617188,827.50537109375,-416.3677062988281,818.3812866210938,818.9548950195312,-416.3677062988281,816.8737182617188,827.5054931640625,-683.9995727539062,812.532470703125,835.0247192382812,-683.9995727539062,812.532470703125,835.0245971679688,-416.3677062988281,816.8737182617188,827.5054931640625,-683.9995727539062,812.532470703125,835.0245971679688,-416.3677062988281,816.8737182617188,827.50537109375,-416.3677062988281,812.532470703125,835.0247192382812,-683.9995727539062,805.8812866210938,840.6055908203125,-683.9995727539062,805.8812866210938,840.6055297851562,-416.3677062988281,812.532470703125,835.0247192382812,-683.9995727539062,805.8812866210938,840.6055297851562,-416.3677062988281,812.532470703125,835.0245971679688,-416.3677062988281,805.8812866210938,840.6055908203125,-683.9995727539062,797.7224731445312,843.5750732421875,-683.9995727539062,797.7224731445312,843.5750732421875,-416.3677062988281,805.8812866210938,840.6055908203125,-683.9995727539062,797.7224731445312,843.5750732421875,-416.3677062988281,805.8812866210938,840.6055297851562,-416.3677062988281,797.7224731445312,843.5750732421875,-683.9995727539062,789.0402221679688,843.5750732421875,-683.9995727539062,789.0402221679688,843.5750732421875,-416.3677062988281,797.7224731445312,843.5750732421875,-683.9995727539062,789.0402221679688,843.5750732421875,-416.3677062988281,797.7224731445312,843.5750732421875,-416.3677062988281,789.0402221679688,843.5750732421875,-683.9995727539062,780.8812866210938,840.6055908203125,-683.9995727539062,780.8812866210938,840.6055297851562,-416.3677062988281,789.0402221679688,843.5750732421875,-683.9995727539062,780.8812866210938,840.6055297851562,-416.3677062988281,789.0402221679688,843.5750732421875,-416.3677062988281,780.8812866210938,840.6055908203125,-683.9995727539062,774.230224609375,835.0247192382812,-683.9995727539062,774.230224609375,835.0245971679688,-416.3677062988281,780.8812866210938,840.6055908203125,-683.9995727539062,774.230224609375,835.0245971679688,-416.3677062988281,780.8812866210938,840.6055297851562,-416.3677062988281,774.230224609375,835.0247192382812,-683.9995727539062,769.8889770507812,827.5054931640625,-683.9995727539062,769.8889770507812,827.50537109375,-416.3677062988281,774.230224609375,835.0247192382812,-683.9995727539062,769.8889770507812,827.50537109375,-416.3677062988281,774.230224609375,835.0245971679688,-416.3677062988281,769.8889770507812,827.5054931640625,-683.9995727539062,768.3812866210938,818.9550170898438,-683.9995727539062,768.3812866210938,818.9548950195312,-416.3677062988281,769.8889770507812,827.5054931640625,-683.9995727539062,768.3812866210938,818.9548950195312,-416.3677062988281,769.8889770507812,827.50537109375,-416.3677062988281,768.3812866210938,818.9550170898438,-683.9995727539062,769.8889770507812,810.4044799804688,-683.9995727539062,769.8889770507812,810.4044189453125,-416.3677062988281,768.3812866210938,818.9550170898438,-683.9995727539062,769.8889770507812,810.4044189453125,-416.3677062988281,768.3812866210938,818.9548950195312,-416.3677062988281,769.8889770507812,810.4044799804688,-683.9995727539062,774.230224609375,802.8853149414062,-683.9995727539062,774.230224609375,802.8853149414062,-416.3677062988281,769.8889770507812,810.4044799804688,-683.9995727539062,774.230224609375,802.8853149414062,-416.3677062988281,769.8889770507812,810.4044189453125,-416.3677062988281,774.230224609375,802.8853149414062,-683.9995727539062,780.8812866210938,797.3043212890625,-683.9995727539062,780.8812866210938,797.3043212890625,-416.3677062988281,774.230224609375,802.8853149414062,-683.9995727539062,780.8812866210938,797.3043212890625,-416.3677062988281,774.230224609375,802.8853149414062,-416.3677062988281,780.8812866210938,797.3043212890625,-683.9995727539062,789.0402221679688,794.3347778320312,-683.9995727539062,789.0402221679688,794.334716796875,-416.3677062988281,780.8812866210938,797.3043212890625,-683.9995727539062,789.0402221679688,794.334716796875,-416.3677062988281,780.8812866210938,797.3043212890625,-416.3677062988281,789.0402221679688,794.3347778320312,-683.9995727539062,797.7224731445312,794.3347778320312,-683.9995727539062,797.7224731445312,794.334716796875,-416.3677062988281,789.0402221679688,794.3347778320312,-683.9995727539062,797.7224731445312,794.334716796875,-416.3677062988281,789.0402221679688,794.334716796875,-416.3677062988281,797.7224731445312,794.3347778320312,-683.9995727539062,805.8812866210938,797.3043212890625,-683.9995727539062,805.8812866210938,797.3043212890625,-416.3677062988281,797.7224731445312,794.3347778320312,-683.9995727539062,805.8812866210938,797.3043212890625,-416.3677062988281,797.7224731445312,794.334716796875,-416.3677062988281,805.8812866210938,797.3043212890625,-683.9995727539062,812.532470703125,802.8853149414062,-683.9995727539062,812.532470703125,802.8851928710938,-416.3677062988281,805.8812866210938,797.3043212890625,-683.9995727539062,812.532470703125,802.8851928710938,-416.3677062988281,805.8812866210938,797.3043212890625,-416.3677062988281,812.532470703125,802.8853149414062,-683.9995727539062,816.8737182617188,810.4044189453125,-683.9995727539062,816.8737182617188,810.4044189453125,-416.3677062988281,812.532470703125,802.8853149414062,-683.9995727539062,816.8737182617188,810.4044189453125,-416.3677062988281,812.532470703125,802.8851928710938,-416.3677062988281,816.8737182617188,810.4044189453125,-683.9995727539062,818.3812866210938,818.9550170898438,-683.9995727539062,818.3812866210938,818.9548950195312,-416.3677062988281,816.8737182617188,810.4044189453125,-683.9995727539062,818.3812866210938,818.9548950195312,-416.3677062988281,816.8737182617188,810.4044189453125,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,816.8737182617188,810.4044189453125,-416.3677062988281,818.3812866210938,818.9548950195312,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,818.3812866210938,818.9548950195312,-416.3677062988281,816.8737182617188,827.50537109375,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,816.8737182617188,827.50537109375,-416.3677062988281,812.532470703125,835.0245971679688,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,812.532470703125,835.0245971679688,-416.3677062988281,805.8812866210938,840.6055297851562,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,805.8812866210938,840.6055297851562,-416.3677062988281,797.7224731445312,843.5750732421875,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,797.7224731445312,843.5750732421875,-416.3677062988281,789.0402221679688,843.5750732421875,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,789.0402221679688,843.5750732421875,-416.3677062988281,780.8812866210938,840.6055297851562,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,780.8812866210938,840.6055297851562,-416.3677062988281,774.230224609375,835.0245971679688,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,774.230224609375,835.0245971679688,-416.3677062988281,769.8889770507812,827.50537109375,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,769.8889770507812,827.50537109375,-416.3677062988281,768.3812866210938,818.9548950195312,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,768.3812866210938,818.9548950195312,-416.3677062988281,769.8889770507812,810.4044189453125,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,769.8889770507812,810.4044189453125,-416.3677062988281,774.230224609375,802.8853149414062,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,774.230224609375,802.8853149414062,-416.3677062988281,780.8812866210938,797.3043212890625,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,780.8812866210938,797.3043212890625,-416.3677062988281,789.0402221679688,794.334716796875,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,789.0402221679688,794.334716796875,-416.3677062988281,797.7224731445312,794.334716796875,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,797.7224731445312,794.334716796875,-416.3677062988281,805.8812866210938,797.3043212890625,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,805.8812866210938,797.3043212890625,-416.3677062988281,812.532470703125,802.8851928710938,-416.3677062988281,793.3812866210938,818.9548950195312,-416.3677062988281,812.532470703125,802.8851928710938,-416.3677062988281,816.8737182617188,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [793.3812866210938,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466595042122
| }
| }
| },
| {
| "uuid": "5C002284-54F7-4946-BF1A-8E06B2D20128",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [893.3812866210938,818.955078125,-1754.5272216796875,912.532470703125,835.0247802734375,-1754.5272216796875,916.8737182617188,827.505615234375,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,916.8737182617188,827.505615234375,-1754.5272216796875,918.3812866210938,818.955078125,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,897.7224731445312,843.5753173828125,-1754.5272216796875,905.8812866210938,840.6057739257812,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,905.8812866210938,840.6057739257812,-1754.5272216796875,912.532470703125,835.0247802734375,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,880.8812866210938,840.6057739257812,-1754.5272216796875,889.0402221679688,843.5753173828125,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,889.0402221679688,843.5753173828125,-1754.5272216796875,897.7224731445312,843.5753173828125,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,869.8889770507812,827.505615234375,-1754.5272216796875,874.230224609375,835.0247802734375,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,874.230224609375,835.0247802734375,-1754.5272216796875,880.8812866210938,840.6057739257812,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,869.8889770507812,810.4047241210938,-1754.5272216796875,868.3812866210938,818.955078125,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,868.3812866210938,818.955078125,-1754.5272216796875,869.8889770507812,827.505615234375,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,880.8812866210938,797.3045043945312,-1754.5272216796875,874.230224609375,802.8853759765625,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,874.230224609375,802.8853759765625,-1754.5272216796875,869.8889770507812,810.4047241210938,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,897.7224731445312,794.3350219726562,-1754.5272216796875,889.0402221679688,794.3350219726562,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,889.0402221679688,794.3350219726562,-1754.5272216796875,880.8812866210938,797.3045043945312,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,912.532470703125,802.8853759765625,-1754.5272216796875,905.8812866210938,797.3045043945312,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,905.8812866210938,797.3045043945312,-1754.5272216796875,897.7224731445312,794.3350219726562,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,918.3812866210938,818.955078125,-1754.5272216796875,916.8737182617188,810.4046020507812,-1754.5272216796875,893.3812866210938,818.955078125,-1754.5272216796875,916.8737182617188,810.4046020507812,-1754.5272216796875,912.532470703125,802.8853759765625,-1754.5272216796875,918.3812866210938,818.955078125,-1754.5272216796875,916.8737182617188,827.505615234375,-1754.5272216796875,916.8737182617188,827.505615234375,-1486.895263671875,918.3812866210938,818.955078125,-1754.5272216796875,916.8737182617188,827.505615234375,-1486.895263671875,918.3812866210938,818.955078125,-1486.895263671875,916.8737182617188,827.505615234375,-1754.5272216796875,912.532470703125,835.0247802734375,-1754.5272216796875,912.532470703125,835.0247802734375,-1486.895263671875,916.8737182617188,827.505615234375,-1754.5272216796875,912.532470703125,835.0247802734375,-1486.895263671875,916.8737182617188,827.505615234375,-1486.895263671875,912.532470703125,835.0247802734375,-1754.5272216796875,905.8812866210938,840.6057739257812,-1754.5272216796875,905.8812866210938,840.605712890625,-1486.895263671875,912.532470703125,835.0247802734375,-1754.5272216796875,905.8812866210938,840.605712890625,-1486.895263671875,912.532470703125,835.0247802734375,-1486.895263671875,905.8812866210938,840.6057739257812,-1754.5272216796875,897.7224731445312,843.5753173828125,-1754.5272216796875,897.7224731445312,843.5753173828125,-1486.895263671875,905.8812866210938,840.6057739257812,-1754.5272216796875,897.7224731445312,843.5753173828125,-1486.895263671875,905.8812866210938,840.605712890625,-1486.895263671875,897.7224731445312,843.5753173828125,-1754.5272216796875,889.0402221679688,843.5753173828125,-1754.5272216796875,889.0402221679688,843.5753173828125,-1486.895263671875,897.7224731445312,843.5753173828125,-1754.5272216796875,889.0402221679688,843.5753173828125,-1486.895263671875,897.7224731445312,843.5753173828125,-1486.895263671875,889.0402221679688,843.5753173828125,-1754.5272216796875,880.8812866210938,840.6057739257812,-1754.5272216796875,880.8812866210938,840.605712890625,-1486.895263671875,889.0402221679688,843.5753173828125,-1754.5272216796875,880.8812866210938,840.605712890625,-1486.895263671875,889.0402221679688,843.5753173828125,-1486.895263671875,880.8812866210938,840.6057739257812,-1754.5272216796875,874.230224609375,835.0247802734375,-1754.5272216796875,874.230224609375,835.0247802734375,-1486.895263671875,880.8812866210938,840.6057739257812,-1754.5272216796875,874.230224609375,835.0247802734375,-1486.895263671875,880.8812866210938,840.605712890625,-1486.895263671875,874.230224609375,835.0247802734375,-1754.5272216796875,869.8889770507812,827.505615234375,-1754.5272216796875,869.8889770507812,827.505615234375,-1486.895263671875,874.230224609375,835.0247802734375,-1754.5272216796875,869.8889770507812,827.505615234375,-1486.895263671875,874.230224609375,835.0247802734375,-1486.895263671875,869.8889770507812,827.505615234375,-1754.5272216796875,868.3812866210938,818.955078125,-1754.5272216796875,868.3812866210938,818.955078125,-1486.895263671875,869.8889770507812,827.505615234375,-1754.5272216796875,868.3812866210938,818.955078125,-1486.895263671875,869.8889770507812,827.505615234375,-1486.895263671875,868.3812866210938,818.955078125,-1754.5272216796875,869.8889770507812,810.4047241210938,-1754.5272216796875,869.8889770507812,810.4046020507812,-1486.895263671875,868.3812866210938,818.955078125,-1754.5272216796875,869.8889770507812,810.4046020507812,-1486.895263671875,868.3812866210938,818.955078125,-1486.895263671875,869.8889770507812,810.4047241210938,-1754.5272216796875,874.230224609375,802.8853759765625,-1754.5272216796875,874.230224609375,802.8853759765625,-1486.895263671875,869.8889770507812,810.4047241210938,-1754.5272216796875,874.230224609375,802.8853759765625,-1486.895263671875,869.8889770507812,810.4046020507812,-1486.895263671875,874.230224609375,802.8853759765625,-1754.5272216796875,880.8812866210938,797.3045043945312,-1754.5272216796875,880.8812866210938,797.3043823242188,-1486.895263671875,874.230224609375,802.8853759765625,-1754.5272216796875,880.8812866210938,797.3043823242188,-1486.895263671875,874.230224609375,802.8853759765625,-1486.895263671875,880.8812866210938,797.3045043945312,-1754.5272216796875,889.0402221679688,794.3350219726562,-1754.5272216796875,889.0402221679688,794.3348999023438,-1486.895263671875,880.8812866210938,797.3045043945312,-1754.5272216796875,889.0402221679688,794.3348999023438,-1486.895263671875,880.8812866210938,797.3043823242188,-1486.895263671875,889.0402221679688,794.3350219726562,-1754.5272216796875,897.7224731445312,794.3350219726562,-1754.5272216796875,897.7224731445312,794.3348999023438,-1486.895263671875,889.0402221679688,794.3350219726562,-1754.5272216796875,897.7224731445312,794.3348999023438,-1486.895263671875,889.0402221679688,794.3348999023438,-1486.895263671875,897.7224731445312,794.3350219726562,-1754.5272216796875,905.8812866210938,797.3045043945312,-1754.5272216796875,905.8812866210938,797.3043823242188,-1486.895263671875,897.7224731445312,794.3350219726562,-1754.5272216796875,905.8812866210938,797.3043823242188,-1486.895263671875,897.7224731445312,794.3348999023438,-1486.895263671875,905.8812866210938,797.3045043945312,-1754.5272216796875,912.532470703125,802.8853759765625,-1754.5272216796875,912.532470703125,802.8853759765625,-1486.895263671875,905.8812866210938,797.3045043945312,-1754.5272216796875,912.532470703125,802.8853759765625,-1486.895263671875,905.8812866210938,797.3043823242188,-1486.895263671875,912.532470703125,802.8853759765625,-1754.5272216796875,916.8737182617188,810.4046020507812,-1754.5272216796875,916.8737182617188,810.4046020507812,-1486.895263671875,912.532470703125,802.8853759765625,-1754.5272216796875,916.8737182617188,810.4046020507812,-1486.895263671875,912.532470703125,802.8853759765625,-1486.895263671875,916.8737182617188,810.4046020507812,-1754.5272216796875,918.3812866210938,818.955078125,-1754.5272216796875,918.3812866210938,818.955078125,-1486.895263671875,916.8737182617188,810.4046020507812,-1754.5272216796875,918.3812866210938,818.955078125,-1486.895263671875,916.8737182617188,810.4046020507812,-1486.895263671875,918.3812866210938,818.955078125,-1486.895263671875,916.8737182617188,827.505615234375,-1486.895263671875,916.8737182617188,827.505615234375,-1219.263427734375,918.3812866210938,818.955078125,-1486.895263671875,916.8737182617188,827.505615234375,-1219.263427734375,918.3812866210938,818.955078125,-1219.263427734375,916.8737182617188,827.505615234375,-1486.895263671875,912.532470703125,835.0247802734375,-1486.895263671875,912.532470703125,835.0247192382812,-1219.263427734375,916.8737182617188,827.505615234375,-1486.895263671875,912.532470703125,835.0247192382812,-1219.263427734375,916.8737182617188,827.505615234375,-1219.263427734375,912.532470703125,835.0247802734375,-1486.895263671875,905.8812866210938,840.605712890625,-1486.895263671875,905.8812866210938,840.605712890625,-1219.263427734375,912.532470703125,835.0247802734375,-1486.895263671875,905.8812866210938,840.605712890625,-1219.263427734375,912.532470703125,835.0247192382812,-1219.263427734375,905.8812866210938,840.605712890625,-1486.895263671875,897.7224731445312,843.5753173828125,-1486.895263671875,897.7224731445312,843.5753173828125,-1219.263427734375,905.8812866210938,840.605712890625,-1486.895263671875,897.7224731445312,843.5753173828125,-1219.263427734375,905.8812866210938,840.605712890625,-1219.263427734375,897.7224731445312,843.5753173828125,-1486.895263671875,889.0402221679688,843.5753173828125,-1486.895263671875,889.0402221679688,843.5753173828125,-1219.263427734375,897.7224731445312,843.5753173828125,-1486.895263671875,889.0402221679688,843.5753173828125,-1219.263427734375,897.7224731445312,843.5753173828125,-1219.263427734375,889.0402221679688,843.5753173828125,-1486.895263671875,880.8812866210938,840.605712890625,-1486.895263671875,880.8812866210938,840.605712890625,-1219.263427734375,889.0402221679688,843.5753173828125,-1486.895263671875,880.8812866210938,840.605712890625,-1219.263427734375,889.0402221679688,843.5753173828125,-1219.263427734375,880.8812866210938,840.605712890625,-1486.895263671875,874.230224609375,835.0247802734375,-1486.895263671875,874.230224609375,835.0247192382812,-1219.263427734375,880.8812866210938,840.605712890625,-1486.895263671875,874.230224609375,835.0247192382812,-1219.263427734375,880.8812866210938,840.605712890625,-1219.263427734375,874.230224609375,835.0247802734375,-1486.895263671875,869.8889770507812,827.505615234375,-1486.895263671875,869.8889770507812,827.505615234375,-1219.263427734375,874.230224609375,835.0247802734375,-1486.895263671875,869.8889770507812,827.505615234375,-1219.263427734375,874.230224609375,835.0247192382812,-1219.263427734375,869.8889770507812,827.505615234375,-1486.895263671875,868.3812866210938,818.955078125,-1486.895263671875,868.3812866210938,818.955078125,-1219.263427734375,869.8889770507812,827.505615234375,-1486.895263671875,868.3812866210938,818.955078125,-1219.263427734375,869.8889770507812,827.505615234375,-1219.263427734375,868.3812866210938,818.955078125,-1486.895263671875,869.8889770507812,810.4046020507812,-1486.895263671875,869.8889770507812,810.4044799804688,-1219.263427734375,868.3812866210938,818.955078125,-1486.895263671875,869.8889770507812,810.4044799804688,-1219.263427734375,868.3812866210938,818.955078125,-1219.263427734375,869.8889770507812,810.4046020507812,-1486.895263671875,874.230224609375,802.8853759765625,-1486.895263671875,874.230224609375,802.8853759765625,-1219.263427734375,869.8889770507812,810.4046020507812,-1486.895263671875,874.230224609375,802.8853759765625,-1219.263427734375,869.8889770507812,810.4044799804688,-1219.263427734375,874.230224609375,802.8853759765625,-1486.895263671875,880.8812866210938,797.3043823242188,-1486.895263671875,880.8812866210938,797.3043823242188,-1219.263427734375,874.230224609375,802.8853759765625,-1486.895263671875,880.8812866210938,797.3043823242188,-1219.263427734375,874.230224609375,802.8853759765625,-1219.263427734375,880.8812866210938,797.3043823242188,-1486.895263671875,889.0402221679688,794.3348999023438,-1486.895263671875,889.0402221679688,794.3347778320312,-1219.263427734375,880.8812866210938,797.3043823242188,-1486.895263671875,889.0402221679688,794.3347778320312,-1219.263427734375,880.8812866210938,797.3043823242188,-1219.263427734375,889.0402221679688,794.3348999023438,-1486.895263671875,897.7224731445312,794.3348999023438,-1486.895263671875,897.7224731445312,794.3347778320312,-1219.263427734375,889.0402221679688,794.3348999023438,-1486.895263671875,897.7224731445312,794.3347778320312,-1219.263427734375,889.0402221679688,794.3347778320312,-1219.263427734375,897.7224731445312,794.3348999023438,-1486.895263671875,905.8812866210938,797.3043823242188,-1486.895263671875,905.8812866210938,797.3043823242188,-1219.263427734375,897.7224731445312,794.3348999023438,-1486.895263671875,905.8812866210938,797.3043823242188,-1219.263427734375,897.7224731445312,794.3347778320312,-1219.263427734375,905.8812866210938,797.3043823242188,-1486.895263671875,912.532470703125,802.8853759765625,-1486.895263671875,912.532470703125,802.8853759765625,-1219.263427734375,905.8812866210938,797.3043823242188,-1486.895263671875,912.532470703125,802.8853759765625,-1219.263427734375,905.8812866210938,797.3043823242188,-1219.263427734375,912.532470703125,802.8853759765625,-1486.895263671875,916.8737182617188,810.4046020507812,-1486.895263671875,916.8737182617188,810.4044799804688,-1219.263427734375,912.532470703125,802.8853759765625,-1486.895263671875,916.8737182617188,810.4044799804688,-1219.263427734375,912.532470703125,802.8853759765625,-1219.263427734375,916.8737182617188,810.4046020507812,-1486.895263671875,918.3812866210938,818.955078125,-1486.895263671875,918.3812866210938,818.955078125,-1219.263427734375,916.8737182617188,810.4046020507812,-1486.895263671875,918.3812866210938,818.955078125,-1219.263427734375,916.8737182617188,810.4044799804688,-1219.263427734375,918.3812866210938,818.955078125,-1219.263427734375,916.8737182617188,827.505615234375,-1219.263427734375,916.8737182617188,827.5054931640625,-951.6314697265625,918.3812866210938,818.955078125,-1219.263427734375,916.8737182617188,827.5054931640625,-951.6314697265625,918.3812866210938,818.9550170898438,-951.6314697265625,916.8737182617188,827.505615234375,-1219.263427734375,912.532470703125,835.0247192382812,-1219.263427734375,912.532470703125,835.0247192382812,-951.6314697265625,916.8737182617188,827.505615234375,-1219.263427734375,912.532470703125,835.0247192382812,-951.6314697265625,916.8737182617188,827.5054931640625,-951.6314697265625,912.532470703125,835.0247192382812,-1219.263427734375,905.8812866210938,840.605712890625,-1219.263427734375,905.8812866210938,840.605712890625,-951.6314697265625,912.532470703125,835.0247192382812,-1219.263427734375,905.8812866210938,840.605712890625,-951.6314697265625,912.532470703125,835.0247192382812,-951.6314697265625,905.8812866210938,840.605712890625,-1219.263427734375,897.7224731445312,843.5753173828125,-1219.263427734375,897.7224731445312,843.5751953125,-951.6314697265625,905.8812866210938,840.605712890625,-1219.263427734375,897.7224731445312,843.5751953125,-951.6314697265625,905.8812866210938,840.605712890625,-951.6314697265625,897.7224731445312,843.5753173828125,-1219.263427734375,889.0402221679688,843.5753173828125,-1219.263427734375,889.0402221679688,843.5751953125,-951.6314697265625,897.7224731445312,843.5753173828125,-1219.263427734375,889.0402221679688,843.5751953125,-951.6314697265625,897.7224731445312,843.5751953125,-951.6314697265625,889.0402221679688,843.5753173828125,-1219.263427734375,880.8812866210938,840.605712890625,-1219.263427734375,880.8812866210938,840.605712890625,-951.6314697265625,889.0402221679688,843.5753173828125,-1219.263427734375,880.8812866210938,840.605712890625,-951.6314697265625,889.0402221679688,843.5751953125,-951.6314697265625,880.8812866210938,840.605712890625,-1219.263427734375,874.230224609375,835.0247192382812,-1219.263427734375,874.230224609375,835.0247192382812,-951.6314697265625,880.8812866210938,840.605712890625,-1219.263427734375,874.230224609375,835.0247192382812,-951.6314697265625,880.8812866210938,840.605712890625,-951.6314697265625,874.230224609375,835.0247192382812,-1219.263427734375,869.8889770507812,827.505615234375,-1219.263427734375,869.8889770507812,827.5054931640625,-951.6314697265625,874.230224609375,835.0247192382812,-1219.263427734375,869.8889770507812,827.5054931640625,-951.6314697265625,874.230224609375,835.0247192382812,-951.6314697265625,869.8889770507812,827.505615234375,-1219.263427734375,868.3812866210938,818.955078125,-1219.263427734375,868.3812866210938,818.9550170898438,-951.6314697265625,869.8889770507812,827.505615234375,-1219.263427734375,868.3812866210938,818.9550170898438,-951.6314697265625,869.8889770507812,827.5054931640625,-951.6314697265625,868.3812866210938,818.955078125,-1219.263427734375,869.8889770507812,810.4044799804688,-1219.263427734375,869.8889770507812,810.4044799804688,-951.6314697265625,868.3812866210938,818.955078125,-1219.263427734375,869.8889770507812,810.4044799804688,-951.6314697265625,868.3812866210938,818.9550170898438,-951.6314697265625,869.8889770507812,810.4044799804688,-1219.263427734375,874.230224609375,802.8853759765625,-1219.263427734375,874.230224609375,802.8853149414062,-951.6314697265625,869.8889770507812,810.4044799804688,-1219.263427734375,874.230224609375,802.8853149414062,-951.6314697265625,869.8889770507812,810.4044799804688,-951.6314697265625,874.230224609375,802.8853759765625,-1219.263427734375,880.8812866210938,797.3043823242188,-1219.263427734375,880.8812866210938,797.3043823242188,-951.6314697265625,874.230224609375,802.8853759765625,-1219.263427734375,880.8812866210938,797.3043823242188,-951.6314697265625,874.230224609375,802.8853149414062,-951.6314697265625,880.8812866210938,797.3043823242188,-1219.263427734375,889.0402221679688,794.3347778320312,-1219.263427734375,889.0402221679688,794.3347778320312,-951.6314697265625,880.8812866210938,797.3043823242188,-1219.263427734375,889.0402221679688,794.3347778320312,-951.6314697265625,880.8812866210938,797.3043823242188,-951.6314697265625,889.0402221679688,794.3347778320312,-1219.263427734375,897.7224731445312,794.3347778320312,-1219.263427734375,897.7224731445312,794.3347778320312,-951.6314697265625,889.0402221679688,794.3347778320312,-1219.263427734375,897.7224731445312,794.3347778320312,-951.6314697265625,889.0402221679688,794.3347778320312,-951.6314697265625,897.7224731445312,794.3347778320312,-1219.263427734375,905.8812866210938,797.3043823242188,-1219.263427734375,905.8812866210938,797.3043823242188,-951.6314697265625,897.7224731445312,794.3347778320312,-1219.263427734375,905.8812866210938,797.3043823242188,-951.6314697265625,897.7224731445312,794.3347778320312,-951.6314697265625,905.8812866210938,797.3043823242188,-1219.263427734375,912.532470703125,802.8853759765625,-1219.263427734375,912.532470703125,802.8853149414062,-951.6314697265625,905.8812866210938,797.3043823242188,-1219.263427734375,912.532470703125,802.8853149414062,-951.6314697265625,905.8812866210938,797.3043823242188,-951.6314697265625,912.532470703125,802.8853759765625,-1219.263427734375,916.8737182617188,810.4044799804688,-1219.263427734375,916.8737182617188,810.4044799804688,-951.6314697265625,912.532470703125,802.8853759765625,-1219.263427734375,916.8737182617188,810.4044799804688,-951.6314697265625,912.532470703125,802.8853149414062,-951.6314697265625,916.8737182617188,810.4044799804688,-1219.263427734375,918.3812866210938,818.955078125,-1219.263427734375,918.3812866210938,818.9550170898438,-951.6314697265625,916.8737182617188,810.4044799804688,-1219.263427734375,918.3812866210938,818.9550170898438,-951.6314697265625,916.8737182617188,810.4044799804688,-951.6314697265625,918.3812866210938,818.9550170898438,-951.6314697265625,916.8737182617188,827.5054931640625,-951.6314697265625,916.8737182617188,827.5054931640625,-683.9995727539062,918.3812866210938,818.9550170898438,-951.6314697265625,916.8737182617188,827.5054931640625,-683.9995727539062,918.3812866210938,818.9550170898438,-683.9995727539062,916.8737182617188,827.5054931640625,-951.6314697265625,912.532470703125,835.0247192382812,-951.6314697265625,912.532470703125,835.0247192382812,-683.9995727539062,916.8737182617188,827.5054931640625,-951.6314697265625,912.532470703125,835.0247192382812,-683.9995727539062,916.8737182617188,827.5054931640625,-683.9995727539062,912.532470703125,835.0247192382812,-951.6314697265625,905.8812866210938,840.605712890625,-951.6314697265625,905.8812866210938,840.6055908203125,-683.9995727539062,912.532470703125,835.0247192382812,-951.6314697265625,905.8812866210938,840.6055908203125,-683.9995727539062,912.532470703125,835.0247192382812,-683.9995727539062,905.8812866210938,840.605712890625,-951.6314697265625,897.7224731445312,843.5751953125,-951.6314697265625,897.7224731445312,843.5750732421875,-683.9995727539062,905.8812866210938,840.605712890625,-951.6314697265625,897.7224731445312,843.5750732421875,-683.9995727539062,905.8812866210938,840.6055908203125,-683.9995727539062,897.7224731445312,843.5751953125,-951.6314697265625,889.0402221679688,843.5751953125,-951.6314697265625,889.0402221679688,843.5750732421875,-683.9995727539062,897.7224731445312,843.5751953125,-951.6314697265625,889.0402221679688,843.5750732421875,-683.9995727539062,897.7224731445312,843.5750732421875,-683.9995727539062,889.0402221679688,843.5751953125,-951.6314697265625,880.8812866210938,840.605712890625,-951.6314697265625,880.8812866210938,840.6055908203125,-683.9995727539062,889.0402221679688,843.5751953125,-951.6314697265625,880.8812866210938,840.6055908203125,-683.9995727539062,889.0402221679688,843.5750732421875,-683.9995727539062,880.8812866210938,840.605712890625,-951.6314697265625,874.230224609375,835.0247192382812,-951.6314697265625,874.230224609375,835.0247192382812,-683.9995727539062,880.8812866210938,840.605712890625,-951.6314697265625,874.230224609375,835.0247192382812,-683.9995727539062,880.8812866210938,840.6055908203125,-683.9995727539062,874.230224609375,835.0247192382812,-951.6314697265625,869.8889770507812,827.5054931640625,-951.6314697265625,869.8889770507812,827.5054931640625,-683.9995727539062,874.230224609375,835.0247192382812,-951.6314697265625,869.8889770507812,827.5054931640625,-683.9995727539062,874.230224609375,835.0247192382812,-683.9995727539062,869.8889770507812,827.5054931640625,-951.6314697265625,868.3812866210938,818.9550170898438,-951.6314697265625,868.3812866210938,818.9550170898438,-683.9995727539062,869.8889770507812,827.5054931640625,-951.6314697265625,868.3812866210938,818.9550170898438,-683.9995727539062,869.8889770507812,827.5054931640625,-683.9995727539062,868.3812866210938,818.9550170898438,-951.6314697265625,869.8889770507812,810.4044799804688,-951.6314697265625,869.8889770507812,810.4044799804688,-683.9995727539062,868.3812866210938,818.9550170898438,-951.6314697265625,869.8889770507812,810.4044799804688,-683.9995727539062,868.3812866210938,818.9550170898438,-683.9995727539062,869.8889770507812,810.4044799804688,-951.6314697265625,874.230224609375,802.8853149414062,-951.6314697265625,874.230224609375,802.8853149414062,-683.9995727539062,869.8889770507812,810.4044799804688,-951.6314697265625,874.230224609375,802.8853149414062,-683.9995727539062,869.8889770507812,810.4044799804688,-683.9995727539062,874.230224609375,802.8853149414062,-951.6314697265625,880.8812866210938,797.3043823242188,-951.6314697265625,880.8812866210938,797.3043212890625,-683.9995727539062,874.230224609375,802.8853149414062,-951.6314697265625,880.8812866210938,797.3043212890625,-683.9995727539062,874.230224609375,802.8853149414062,-683.9995727539062,880.8812866210938,797.3043823242188,-951.6314697265625,889.0402221679688,794.3347778320312,-951.6314697265625,889.0402221679688,794.3347778320312,-683.9995727539062,880.8812866210938,797.3043823242188,-951.6314697265625,889.0402221679688,794.3347778320312,-683.9995727539062,880.8812866210938,797.3043212890625,-683.9995727539062,889.0402221679688,794.3347778320312,-951.6314697265625,897.7224731445312,794.3347778320312,-951.6314697265625,897.7224731445312,794.3347778320312,-683.9995727539062,889.0402221679688,794.3347778320312,-951.6314697265625,897.7224731445312,794.3347778320312,-683.9995727539062,889.0402221679688,794.3347778320312,-683.9995727539062,897.7224731445312,794.3347778320312,-951.6314697265625,905.8812866210938,797.3043823242188,-951.6314697265625,905.8812866210938,797.3043212890625,-683.9995727539062,897.7224731445312,794.3347778320312,-951.6314697265625,905.8812866210938,797.3043212890625,-683.9995727539062,897.7224731445312,794.3347778320312,-683.9995727539062,905.8812866210938,797.3043823242188,-951.6314697265625,912.532470703125,802.8853149414062,-951.6314697265625,912.532470703125,802.8853149414062,-683.9995727539062,905.8812866210938,797.3043823242188,-951.6314697265625,912.532470703125,802.8853149414062,-683.9995727539062,905.8812866210938,797.3043212890625,-683.9995727539062,912.532470703125,802.8853149414062,-951.6314697265625,916.8737182617188,810.4044799804688,-951.6314697265625,916.8737182617188,810.4044189453125,-683.9995727539062,912.532470703125,802.8853149414062,-951.6314697265625,916.8737182617188,810.4044189453125,-683.9995727539062,912.532470703125,802.8853149414062,-683.9995727539062,916.8737182617188,810.4044799804688,-951.6314697265625,918.3812866210938,818.9550170898438,-951.6314697265625,918.3812866210938,818.9550170898438,-683.9995727539062,916.8737182617188,810.4044799804688,-951.6314697265625,918.3812866210938,818.9550170898438,-683.9995727539062,916.8737182617188,810.4044189453125,-683.9995727539062,918.3812866210938,818.9550170898438,-683.9995727539062,916.8737182617188,827.5054931640625,-683.9995727539062,916.8737182617188,827.50537109375,-416.3677062988281,918.3812866210938,818.9550170898438,-683.9995727539062,916.8737182617188,827.50537109375,-416.3677062988281,918.3812866210938,818.9548950195312,-416.3677062988281,916.8737182617188,827.5054931640625,-683.9995727539062,912.532470703125,835.0247192382812,-683.9995727539062,912.532470703125,835.0245971679688,-416.3677062988281,916.8737182617188,827.5054931640625,-683.9995727539062,912.532470703125,835.0245971679688,-416.3677062988281,916.8737182617188,827.50537109375,-416.3677062988281,912.532470703125,835.0247192382812,-683.9995727539062,905.8812866210938,840.6055908203125,-683.9995727539062,905.8812866210938,840.6055297851562,-416.3677062988281,912.532470703125,835.0247192382812,-683.9995727539062,905.8812866210938,840.6055297851562,-416.3677062988281,912.532470703125,835.0245971679688,-416.3677062988281,905.8812866210938,840.6055908203125,-683.9995727539062,897.7224731445312,843.5750732421875,-683.9995727539062,897.7224731445312,843.5750732421875,-416.3677062988281,905.8812866210938,840.6055908203125,-683.9995727539062,897.7224731445312,843.5750732421875,-416.3677062988281,905.8812866210938,840.6055297851562,-416.3677062988281,897.7224731445312,843.5750732421875,-683.9995727539062,889.0402221679688,843.5750732421875,-683.9995727539062,889.0402221679688,843.5750732421875,-416.3677062988281,897.7224731445312,843.5750732421875,-683.9995727539062,889.0402221679688,843.5750732421875,-416.3677062988281,897.7224731445312,843.5750732421875,-416.3677062988281,889.0402221679688,843.5750732421875,-683.9995727539062,880.8812866210938,840.6055908203125,-683.9995727539062,880.8812866210938,840.6055297851562,-416.3677062988281,889.0402221679688,843.5750732421875,-683.9995727539062,880.8812866210938,840.6055297851562,-416.3677062988281,889.0402221679688,843.5750732421875,-416.3677062988281,880.8812866210938,840.6055908203125,-683.9995727539062,874.230224609375,835.0247192382812,-683.9995727539062,874.230224609375,835.0245971679688,-416.3677062988281,880.8812866210938,840.6055908203125,-683.9995727539062,874.230224609375,835.0245971679688,-416.3677062988281,880.8812866210938,840.6055297851562,-416.3677062988281,874.230224609375,835.0247192382812,-683.9995727539062,869.8889770507812,827.5054931640625,-683.9995727539062,869.8889770507812,827.50537109375,-416.3677062988281,874.230224609375,835.0247192382812,-683.9995727539062,869.8889770507812,827.50537109375,-416.3677062988281,874.230224609375,835.0245971679688,-416.3677062988281,869.8889770507812,827.5054931640625,-683.9995727539062,868.3812866210938,818.9550170898438,-683.9995727539062,868.3812866210938,818.9548950195312,-416.3677062988281,869.8889770507812,827.5054931640625,-683.9995727539062,868.3812866210938,818.9548950195312,-416.3677062988281,869.8889770507812,827.50537109375,-416.3677062988281,868.3812866210938,818.9550170898438,-683.9995727539062,869.8889770507812,810.4044799804688,-683.9995727539062,869.8889770507812,810.4044189453125,-416.3677062988281,868.3812866210938,818.9550170898438,-683.9995727539062,869.8889770507812,810.4044189453125,-416.3677062988281,868.3812866210938,818.9548950195312,-416.3677062988281,869.8889770507812,810.4044799804688,-683.9995727539062,874.230224609375,802.8853149414062,-683.9995727539062,874.230224609375,802.8853149414062,-416.3677062988281,869.8889770507812,810.4044799804688,-683.9995727539062,874.230224609375,802.8853149414062,-416.3677062988281,869.8889770507812,810.4044189453125,-416.3677062988281,874.230224609375,802.8853149414062,-683.9995727539062,880.8812866210938,797.3043212890625,-683.9995727539062,880.8812866210938,797.3043212890625,-416.3677062988281,874.230224609375,802.8853149414062,-683.9995727539062,880.8812866210938,797.3043212890625,-416.3677062988281,874.230224609375,802.8853149414062,-416.3677062988281,880.8812866210938,797.3043212890625,-683.9995727539062,889.0402221679688,794.3347778320312,-683.9995727539062,889.0402221679688,794.334716796875,-416.3677062988281,880.8812866210938,797.3043212890625,-683.9995727539062,889.0402221679688,794.334716796875,-416.3677062988281,880.8812866210938,797.3043212890625,-416.3677062988281,889.0402221679688,794.3347778320312,-683.9995727539062,897.7224731445312,794.3347778320312,-683.9995727539062,897.7224731445312,794.334716796875,-416.3677062988281,889.0402221679688,794.3347778320312,-683.9995727539062,897.7224731445312,794.334716796875,-416.3677062988281,889.0402221679688,794.334716796875,-416.3677062988281,897.7224731445312,794.3347778320312,-683.9995727539062,905.8812866210938,797.3043212890625,-683.9995727539062,905.8812866210938,797.3043212890625,-416.3677062988281,897.7224731445312,794.3347778320312,-683.9995727539062,905.8812866210938,797.3043212890625,-416.3677062988281,897.7224731445312,794.334716796875,-416.3677062988281,905.8812866210938,797.3043212890625,-683.9995727539062,912.532470703125,802.8853149414062,-683.9995727539062,912.532470703125,802.8851928710938,-416.3677062988281,905.8812866210938,797.3043212890625,-683.9995727539062,912.532470703125,802.8851928710938,-416.3677062988281,905.8812866210938,797.3043212890625,-416.3677062988281,912.532470703125,802.8853149414062,-683.9995727539062,916.8737182617188,810.4044189453125,-683.9995727539062,916.8737182617188,810.4044189453125,-416.3677062988281,912.532470703125,802.8853149414062,-683.9995727539062,916.8737182617188,810.4044189453125,-416.3677062988281,912.532470703125,802.8851928710938,-416.3677062988281,916.8737182617188,810.4044189453125,-683.9995727539062,918.3812866210938,818.9550170898438,-683.9995727539062,918.3812866210938,818.9548950195312,-416.3677062988281,916.8737182617188,810.4044189453125,-683.9995727539062,918.3812866210938,818.9548950195312,-416.3677062988281,916.8737182617188,810.4044189453125,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,916.8737182617188,810.4044189453125,-416.3677062988281,918.3812866210938,818.9548950195312,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,918.3812866210938,818.9548950195312,-416.3677062988281,916.8737182617188,827.50537109375,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,916.8737182617188,827.50537109375,-416.3677062988281,912.532470703125,835.0245971679688,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,912.532470703125,835.0245971679688,-416.3677062988281,905.8812866210938,840.6055297851562,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,905.8812866210938,840.6055297851562,-416.3677062988281,897.7224731445312,843.5750732421875,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,897.7224731445312,843.5750732421875,-416.3677062988281,889.0402221679688,843.5750732421875,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,889.0402221679688,843.5750732421875,-416.3677062988281,880.8812866210938,840.6055297851562,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,880.8812866210938,840.6055297851562,-416.3677062988281,874.230224609375,835.0245971679688,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,874.230224609375,835.0245971679688,-416.3677062988281,869.8889770507812,827.50537109375,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,869.8889770507812,827.50537109375,-416.3677062988281,868.3812866210938,818.9548950195312,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,868.3812866210938,818.9548950195312,-416.3677062988281,869.8889770507812,810.4044189453125,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,869.8889770507812,810.4044189453125,-416.3677062988281,874.230224609375,802.8853149414062,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,874.230224609375,802.8853149414062,-416.3677062988281,880.8812866210938,797.3043212890625,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,880.8812866210938,797.3043212890625,-416.3677062988281,889.0402221679688,794.334716796875,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,889.0402221679688,794.334716796875,-416.3677062988281,897.7224731445312,794.334716796875,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,897.7224731445312,794.334716796875,-416.3677062988281,905.8812866210938,797.3043212890625,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,905.8812866210938,797.3043212890625,-416.3677062988281,912.532470703125,802.8851928710938,-416.3677062988281,893.3812866210938,818.9548950195312,-416.3677062988281,912.532470703125,802.8851928710938,-416.3677062988281,916.8737182617188,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [893.3812866210938,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466595042122
| }
| }
| },
| {
| "uuid": "2B4582D6-9471-4237-BF34-E1BF9E879911",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [993.3812866210938,818.955078125,-1754.5272216796875,1012.532470703125,835.0247802734375,-1754.5272216796875,1016.8737182617188,827.505615234375,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,1016.8737182617188,827.505615234375,-1754.5272216796875,1018.3812866210938,818.955078125,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,997.7224731445312,843.5753173828125,-1754.5272216796875,1005.8812866210938,840.6057739257812,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,1005.8812866210938,840.6057739257812,-1754.5272216796875,1012.532470703125,835.0247802734375,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,980.8812866210938,840.6057739257812,-1754.5272216796875,989.0402221679688,843.5753173828125,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,989.0402221679688,843.5753173828125,-1754.5272216796875,997.7224731445312,843.5753173828125,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,969.8889770507812,827.505615234375,-1754.5272216796875,974.230224609375,835.0247802734375,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,974.230224609375,835.0247802734375,-1754.5272216796875,980.8812866210938,840.6057739257812,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,969.8889770507812,810.4047241210938,-1754.5272216796875,968.3812866210938,818.955078125,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,968.3812866210938,818.955078125,-1754.5272216796875,969.8889770507812,827.505615234375,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,980.8812866210938,797.3045043945312,-1754.5272216796875,974.230224609375,802.8853759765625,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,974.230224609375,802.8853759765625,-1754.5272216796875,969.8889770507812,810.4047241210938,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,997.7224731445312,794.3350219726562,-1754.5272216796875,989.0402221679688,794.3350219726562,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,989.0402221679688,794.3350219726562,-1754.5272216796875,980.8812866210938,797.3045043945312,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,1012.532470703125,802.8853759765625,-1754.5272216796875,1005.8812866210938,797.3045043945312,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,1005.8812866210938,797.3045043945312,-1754.5272216796875,997.7224731445312,794.3350219726562,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,1018.3812866210938,818.955078125,-1754.5272216796875,1016.8737182617188,810.4046020507812,-1754.5272216796875,993.3812866210938,818.955078125,-1754.5272216796875,1016.8737182617188,810.4046020507812,-1754.5272216796875,1012.532470703125,802.8853759765625,-1754.5272216796875,1018.3812866210938,818.955078125,-1754.5272216796875,1016.8737182617188,827.505615234375,-1754.5272216796875,1016.8737182617188,827.505615234375,-1486.895263671875,1018.3812866210938,818.955078125,-1754.5272216796875,1016.8737182617188,827.505615234375,-1486.895263671875,1018.3812866210938,818.955078125,-1486.895263671875,1016.8737182617188,827.505615234375,-1754.5272216796875,1012.532470703125,835.0247802734375,-1754.5272216796875,1012.532470703125,835.0247802734375,-1486.895263671875,1016.8737182617188,827.505615234375,-1754.5272216796875,1012.532470703125,835.0247802734375,-1486.895263671875,1016.8737182617188,827.505615234375,-1486.895263671875,1012.532470703125,835.0247802734375,-1754.5272216796875,1005.8812866210938,840.6057739257812,-1754.5272216796875,1005.8812866210938,840.605712890625,-1486.895263671875,1012.532470703125,835.0247802734375,-1754.5272216796875,1005.8812866210938,840.605712890625,-1486.895263671875,1012.532470703125,835.0247802734375,-1486.895263671875,1005.8812866210938,840.6057739257812,-1754.5272216796875,997.7224731445312,843.5753173828125,-1754.5272216796875,997.7224731445312,843.5753173828125,-1486.895263671875,1005.8812866210938,840.6057739257812,-1754.5272216796875,997.7224731445312,843.5753173828125,-1486.895263671875,1005.8812866210938,840.605712890625,-1486.895263671875,997.7224731445312,843.5753173828125,-1754.5272216796875,989.0402221679688,843.5753173828125,-1754.5272216796875,989.0402221679688,843.5753173828125,-1486.895263671875,997.7224731445312,843.5753173828125,-1754.5272216796875,989.0402221679688,843.5753173828125,-1486.895263671875,997.7224731445312,843.5753173828125,-1486.895263671875,989.0402221679688,843.5753173828125,-1754.5272216796875,980.8812866210938,840.6057739257812,-1754.5272216796875,980.8812866210938,840.605712890625,-1486.895263671875,989.0402221679688,843.5753173828125,-1754.5272216796875,980.8812866210938,840.605712890625,-1486.895263671875,989.0402221679688,843.5753173828125,-1486.895263671875,980.8812866210938,840.6057739257812,-1754.5272216796875,974.230224609375,835.0247802734375,-1754.5272216796875,974.230224609375,835.0247802734375,-1486.895263671875,980.8812866210938,840.6057739257812,-1754.5272216796875,974.230224609375,835.0247802734375,-1486.895263671875,980.8812866210938,840.605712890625,-1486.895263671875,974.230224609375,835.0247802734375,-1754.5272216796875,969.8889770507812,827.505615234375,-1754.5272216796875,969.8889770507812,827.505615234375,-1486.895263671875,974.230224609375,835.0247802734375,-1754.5272216796875,969.8889770507812,827.505615234375,-1486.895263671875,974.230224609375,835.0247802734375,-1486.895263671875,969.8889770507812,827.505615234375,-1754.5272216796875,968.3812866210938,818.955078125,-1754.5272216796875,968.3812866210938,818.955078125,-1486.895263671875,969.8889770507812,827.505615234375,-1754.5272216796875,968.3812866210938,818.955078125,-1486.895263671875,969.8889770507812,827.505615234375,-1486.895263671875,968.3812866210938,818.955078125,-1754.5272216796875,969.8889770507812,810.4047241210938,-1754.5272216796875,969.8889770507812,810.4046020507812,-1486.895263671875,968.3812866210938,818.955078125,-1754.5272216796875,969.8889770507812,810.4046020507812,-1486.895263671875,968.3812866210938,818.955078125,-1486.895263671875,969.8889770507812,810.4047241210938,-1754.5272216796875,974.230224609375,802.8853759765625,-1754.5272216796875,974.230224609375,802.8853759765625,-1486.895263671875,969.8889770507812,810.4047241210938,-1754.5272216796875,974.230224609375,802.8853759765625,-1486.895263671875,969.8889770507812,810.4046020507812,-1486.895263671875,974.230224609375,802.8853759765625,-1754.5272216796875,980.8812866210938,797.3045043945312,-1754.5272216796875,980.8812866210938,797.3043823242188,-1486.895263671875,974.230224609375,802.8853759765625,-1754.5272216796875,980.8812866210938,797.3043823242188,-1486.895263671875,974.230224609375,802.8853759765625,-1486.895263671875,980.8812866210938,797.3045043945312,-1754.5272216796875,989.0402221679688,794.3350219726562,-1754.5272216796875,989.0402221679688,794.3348999023438,-1486.895263671875,980.8812866210938,797.3045043945312,-1754.5272216796875,989.0402221679688,794.3348999023438,-1486.895263671875,980.8812866210938,797.3043823242188,-1486.895263671875,989.0402221679688,794.3350219726562,-1754.5272216796875,997.7224731445312,794.3350219726562,-1754.5272216796875,997.7224731445312,794.3348999023438,-1486.895263671875,989.0402221679688,794.3350219726562,-1754.5272216796875,997.7224731445312,794.3348999023438,-1486.895263671875,989.0402221679688,794.3348999023438,-1486.895263671875,997.7224731445312,794.3350219726562,-1754.5272216796875,1005.8812866210938,797.3045043945312,-1754.5272216796875,1005.8812866210938,797.3043823242188,-1486.895263671875,997.7224731445312,794.3350219726562,-1754.5272216796875,1005.8812866210938,797.3043823242188,-1486.895263671875,997.7224731445312,794.3348999023438,-1486.895263671875,1005.8812866210938,797.3045043945312,-1754.5272216796875,1012.532470703125,802.8853759765625,-1754.5272216796875,1012.532470703125,802.8853759765625,-1486.895263671875,1005.8812866210938,797.3045043945312,-1754.5272216796875,1012.532470703125,802.8853759765625,-1486.895263671875,1005.8812866210938,797.3043823242188,-1486.895263671875,1012.532470703125,802.8853759765625,-1754.5272216796875,1016.8737182617188,810.4046020507812,-1754.5272216796875,1016.8737182617188,810.4046020507812,-1486.895263671875,1012.532470703125,802.8853759765625,-1754.5272216796875,1016.8737182617188,810.4046020507812,-1486.895263671875,1012.532470703125,802.8853759765625,-1486.895263671875,1016.8737182617188,810.4046020507812,-1754.5272216796875,1018.3812866210938,818.955078125,-1754.5272216796875,1018.3812866210938,818.955078125,-1486.895263671875,1016.8737182617188,810.4046020507812,-1754.5272216796875,1018.3812866210938,818.955078125,-1486.895263671875,1016.8737182617188,810.4046020507812,-1486.895263671875,1018.3812866210938,818.955078125,-1486.895263671875,1016.8737182617188,827.505615234375,-1486.895263671875,1016.8737182617188,827.505615234375,-1219.263427734375,1018.3812866210938,818.955078125,-1486.895263671875,1016.8737182617188,827.505615234375,-1219.263427734375,1018.3812866210938,818.955078125,-1219.263427734375,1016.8737182617188,827.505615234375,-1486.895263671875,1012.532470703125,835.0247802734375,-1486.895263671875,1012.532470703125,835.0247192382812,-1219.263427734375,1016.8737182617188,827.505615234375,-1486.895263671875,1012.532470703125,835.0247192382812,-1219.263427734375,1016.8737182617188,827.505615234375,-1219.263427734375,1012.532470703125,835.0247802734375,-1486.895263671875,1005.8812866210938,840.605712890625,-1486.895263671875,1005.8812866210938,840.605712890625,-1219.263427734375,1012.532470703125,835.0247802734375,-1486.895263671875,1005.8812866210938,840.605712890625,-1219.263427734375,1012.532470703125,835.0247192382812,-1219.263427734375,1005.8812866210938,840.605712890625,-1486.895263671875,997.7224731445312,843.5753173828125,-1486.895263671875,997.7224731445312,843.5753173828125,-1219.263427734375,1005.8812866210938,840.605712890625,-1486.895263671875,997.7224731445312,843.5753173828125,-1219.263427734375,1005.8812866210938,840.605712890625,-1219.263427734375,997.7224731445312,843.5753173828125,-1486.895263671875,989.0402221679688,843.5753173828125,-1486.895263671875,989.0402221679688,843.5753173828125,-1219.263427734375,997.7224731445312,843.5753173828125,-1486.895263671875,989.0402221679688,843.5753173828125,-1219.263427734375,997.7224731445312,843.5753173828125,-1219.263427734375,989.0402221679688,843.5753173828125,-1486.895263671875,980.8812866210938,840.605712890625,-1486.895263671875,980.8812866210938,840.605712890625,-1219.263427734375,989.0402221679688,843.5753173828125,-1486.895263671875,980.8812866210938,840.605712890625,-1219.263427734375,989.0402221679688,843.5753173828125,-1219.263427734375,980.8812866210938,840.605712890625,-1486.895263671875,974.230224609375,835.0247802734375,-1486.895263671875,974.230224609375,835.0247192382812,-1219.263427734375,980.8812866210938,840.605712890625,-1486.895263671875,974.230224609375,835.0247192382812,-1219.263427734375,980.8812866210938,840.605712890625,-1219.263427734375,974.230224609375,835.0247802734375,-1486.895263671875,969.8889770507812,827.505615234375,-1486.895263671875,969.8889770507812,827.505615234375,-1219.263427734375,974.230224609375,835.0247802734375,-1486.895263671875,969.8889770507812,827.505615234375,-1219.263427734375,974.230224609375,835.0247192382812,-1219.263427734375,969.8889770507812,827.505615234375,-1486.895263671875,968.3812866210938,818.955078125,-1486.895263671875,968.3812866210938,818.955078125,-1219.263427734375,969.8889770507812,827.505615234375,-1486.895263671875,968.3812866210938,818.955078125,-1219.263427734375,969.8889770507812,827.505615234375,-1219.263427734375,968.3812866210938,818.955078125,-1486.895263671875,969.8889770507812,810.4046020507812,-1486.895263671875,969.8889770507812,810.4044799804688,-1219.263427734375,968.3812866210938,818.955078125,-1486.895263671875,969.8889770507812,810.4044799804688,-1219.263427734375,968.3812866210938,818.955078125,-1219.263427734375,969.8889770507812,810.4046020507812,-1486.895263671875,974.230224609375,802.8853759765625,-1486.895263671875,974.230224609375,802.8853759765625,-1219.263427734375,969.8889770507812,810.4046020507812,-1486.895263671875,974.230224609375,802.8853759765625,-1219.263427734375,969.8889770507812,810.4044799804688,-1219.263427734375,974.230224609375,802.8853759765625,-1486.895263671875,980.8812866210938,797.3043823242188,-1486.895263671875,980.8812866210938,797.3043823242188,-1219.263427734375,974.230224609375,802.8853759765625,-1486.895263671875,980.8812866210938,797.3043823242188,-1219.263427734375,974.230224609375,802.8853759765625,-1219.263427734375,980.8812866210938,797.3043823242188,-1486.895263671875,989.0402221679688,794.3348999023438,-1486.895263671875,989.0402221679688,794.3347778320312,-1219.263427734375,980.8812866210938,797.3043823242188,-1486.895263671875,989.0402221679688,794.3347778320312,-1219.263427734375,980.8812866210938,797.3043823242188,-1219.263427734375,989.0402221679688,794.3348999023438,-1486.895263671875,997.7224731445312,794.3348999023438,-1486.895263671875,997.7224731445312,794.3347778320312,-1219.263427734375,989.0402221679688,794.3348999023438,-1486.895263671875,997.7224731445312,794.3347778320312,-1219.263427734375,989.0402221679688,794.3347778320312,-1219.263427734375,997.7224731445312,794.3348999023438,-1486.895263671875,1005.8812866210938,797.3043823242188,-1486.895263671875,1005.8812866210938,797.3043823242188,-1219.263427734375,997.7224731445312,794.3348999023438,-1486.895263671875,1005.8812866210938,797.3043823242188,-1219.263427734375,997.7224731445312,794.3347778320312,-1219.263427734375,1005.8812866210938,797.3043823242188,-1486.895263671875,1012.532470703125,802.8853759765625,-1486.895263671875,1012.532470703125,802.8853759765625,-1219.263427734375,1005.8812866210938,797.3043823242188,-1486.895263671875,1012.532470703125,802.8853759765625,-1219.263427734375,1005.8812866210938,797.3043823242188,-1219.263427734375,1012.532470703125,802.8853759765625,-1486.895263671875,1016.8737182617188,810.4046020507812,-1486.895263671875,1016.8737182617188,810.4044799804688,-1219.263427734375,1012.532470703125,802.8853759765625,-1486.895263671875,1016.8737182617188,810.4044799804688,-1219.263427734375,1012.532470703125,802.8853759765625,-1219.263427734375,1016.8737182617188,810.4046020507812,-1486.895263671875,1018.3812866210938,818.955078125,-1486.895263671875,1018.3812866210938,818.955078125,-1219.263427734375,1016.8737182617188,810.4046020507812,-1486.895263671875,1018.3812866210938,818.955078125,-1219.263427734375,1016.8737182617188,810.4044799804688,-1219.263427734375,1018.3812866210938,818.955078125,-1219.263427734375,1016.8737182617188,827.505615234375,-1219.263427734375,1016.8737182617188,827.5054931640625,-951.6314697265625,1018.3812866210938,818.955078125,-1219.263427734375,1016.8737182617188,827.5054931640625,-951.6314697265625,1018.3812866210938,818.9550170898438,-951.6314697265625,1016.8737182617188,827.505615234375,-1219.263427734375,1012.532470703125,835.0247192382812,-1219.263427734375,1012.532470703125,835.0247192382812,-951.6314697265625,1016.8737182617188,827.505615234375,-1219.263427734375,1012.532470703125,835.0247192382812,-951.6314697265625,1016.8737182617188,827.5054931640625,-951.6314697265625,1012.532470703125,835.0247192382812,-1219.263427734375,1005.8812866210938,840.605712890625,-1219.263427734375,1005.8812866210938,840.605712890625,-951.6314697265625,1012.532470703125,835.0247192382812,-1219.263427734375,1005.8812866210938,840.605712890625,-951.6314697265625,1012.532470703125,835.0247192382812,-951.6314697265625,1005.8812866210938,840.605712890625,-1219.263427734375,997.7224731445312,843.5753173828125,-1219.263427734375,997.7224731445312,843.5751953125,-951.6314697265625,1005.8812866210938,840.605712890625,-1219.263427734375,997.7224731445312,843.5751953125,-951.6314697265625,1005.8812866210938,840.605712890625,-951.6314697265625,997.7224731445312,843.5753173828125,-1219.263427734375,989.0402221679688,843.5753173828125,-1219.263427734375,989.0402221679688,843.5751953125,-951.6314697265625,997.7224731445312,843.5753173828125,-1219.263427734375,989.0402221679688,843.5751953125,-951.6314697265625,997.7224731445312,843.5751953125,-951.6314697265625,989.0402221679688,843.5753173828125,-1219.263427734375,980.8812866210938,840.605712890625,-1219.263427734375,980.8812866210938,840.605712890625,-951.6314697265625,989.0402221679688,843.5753173828125,-1219.263427734375,980.8812866210938,840.605712890625,-951.6314697265625,989.0402221679688,843.5751953125,-951.6314697265625,980.8812866210938,840.605712890625,-1219.263427734375,974.230224609375,835.0247192382812,-1219.263427734375,974.230224609375,835.0247192382812,-951.6314697265625,980.8812866210938,840.605712890625,-1219.263427734375,974.230224609375,835.0247192382812,-951.6314697265625,980.8812866210938,840.605712890625,-951.6314697265625,974.230224609375,835.0247192382812,-1219.263427734375,969.8889770507812,827.505615234375,-1219.263427734375,969.8889770507812,827.5054931640625,-951.6314697265625,974.230224609375,835.0247192382812,-1219.263427734375,969.8889770507812,827.5054931640625,-951.6314697265625,974.230224609375,835.0247192382812,-951.6314697265625,969.8889770507812,827.505615234375,-1219.263427734375,968.3812866210938,818.955078125,-1219.263427734375,968.3812866210938,818.9550170898438,-951.6314697265625,969.8889770507812,827.505615234375,-1219.263427734375,968.3812866210938,818.9550170898438,-951.6314697265625,969.8889770507812,827.5054931640625,-951.6314697265625,968.3812866210938,818.955078125,-1219.263427734375,969.8889770507812,810.4044799804688,-1219.263427734375,969.8889770507812,810.4044799804688,-951.6314697265625,968.3812866210938,818.955078125,-1219.263427734375,969.8889770507812,810.4044799804688,-951.6314697265625,968.3812866210938,818.9550170898438,-951.6314697265625,969.8889770507812,810.4044799804688,-1219.263427734375,974.230224609375,802.8853759765625,-1219.263427734375,974.230224609375,802.8853149414062,-951.6314697265625,969.8889770507812,810.4044799804688,-1219.263427734375,974.230224609375,802.8853149414062,-951.6314697265625,969.8889770507812,810.4044799804688,-951.6314697265625,974.230224609375,802.8853759765625,-1219.263427734375,980.8812866210938,797.3043823242188,-1219.263427734375,980.8812866210938,797.3043823242188,-951.6314697265625,974.230224609375,802.8853759765625,-1219.263427734375,980.8812866210938,797.3043823242188,-951.6314697265625,974.230224609375,802.8853149414062,-951.6314697265625,980.8812866210938,797.3043823242188,-1219.263427734375,989.0402221679688,794.3347778320312,-1219.263427734375,989.0402221679688,794.3347778320312,-951.6314697265625,980.8812866210938,797.3043823242188,-1219.263427734375,989.0402221679688,794.3347778320312,-951.6314697265625,980.8812866210938,797.3043823242188,-951.6314697265625,989.0402221679688,794.3347778320312,-1219.263427734375,997.7224731445312,794.3347778320312,-1219.263427734375,997.7224731445312,794.3347778320312,-951.6314697265625,989.0402221679688,794.3347778320312,-1219.263427734375,997.7224731445312,794.3347778320312,-951.6314697265625,989.0402221679688,794.3347778320312,-951.6314697265625,997.7224731445312,794.3347778320312,-1219.263427734375,1005.8812866210938,797.3043823242188,-1219.263427734375,1005.8812866210938,797.3043823242188,-951.6314697265625,997.7224731445312,794.3347778320312,-1219.263427734375,1005.8812866210938,797.3043823242188,-951.6314697265625,997.7224731445312,794.3347778320312,-951.6314697265625,1005.8812866210938,797.3043823242188,-1219.263427734375,1012.532470703125,802.8853759765625,-1219.263427734375,1012.532470703125,802.8853149414062,-951.6314697265625,1005.8812866210938,797.3043823242188,-1219.263427734375,1012.532470703125,802.8853149414062,-951.6314697265625,1005.8812866210938,797.3043823242188,-951.6314697265625,1012.532470703125,802.8853759765625,-1219.263427734375,1016.8737182617188,810.4044799804688,-1219.263427734375,1016.8737182617188,810.4044799804688,-951.6314697265625,1012.532470703125,802.8853759765625,-1219.263427734375,1016.8737182617188,810.4044799804688,-951.6314697265625,1012.532470703125,802.8853149414062,-951.6314697265625,1016.8737182617188,810.4044799804688,-1219.263427734375,1018.3812866210938,818.955078125,-1219.263427734375,1018.3812866210938,818.9550170898438,-951.6314697265625,1016.8737182617188,810.4044799804688,-1219.263427734375,1018.3812866210938,818.9550170898438,-951.6314697265625,1016.8737182617188,810.4044799804688,-951.6314697265625,1018.3812866210938,818.9550170898438,-951.6314697265625,1016.8737182617188,827.5054931640625,-951.6314697265625,1016.8737182617188,827.5054931640625,-683.9995727539062,1018.3812866210938,818.9550170898438,-951.6314697265625,1016.8737182617188,827.5054931640625,-683.9995727539062,1018.3812866210938,818.9550170898438,-683.9995727539062,1016.8737182617188,827.5054931640625,-951.6314697265625,1012.532470703125,835.0247192382812,-951.6314697265625,1012.532470703125,835.0247192382812,-683.9995727539062,1016.8737182617188,827.5054931640625,-951.6314697265625,1012.532470703125,835.0247192382812,-683.9995727539062,1016.8737182617188,827.5054931640625,-683.9995727539062,1012.532470703125,835.0247192382812,-951.6314697265625,1005.8812866210938,840.605712890625,-951.6314697265625,1005.8812866210938,840.6055908203125,-683.9995727539062,1012.532470703125,835.0247192382812,-951.6314697265625,1005.8812866210938,840.6055908203125,-683.9995727539062,1012.532470703125,835.0247192382812,-683.9995727539062,1005.8812866210938,840.605712890625,-951.6314697265625,997.7224731445312,843.5751953125,-951.6314697265625,997.7224731445312,843.5750732421875,-683.9995727539062,1005.8812866210938,840.605712890625,-951.6314697265625,997.7224731445312,843.5750732421875,-683.9995727539062,1005.8812866210938,840.6055908203125,-683.9995727539062,997.7224731445312,843.5751953125,-951.6314697265625,989.0402221679688,843.5751953125,-951.6314697265625,989.0402221679688,843.5750732421875,-683.9995727539062,997.7224731445312,843.5751953125,-951.6314697265625,989.0402221679688,843.5750732421875,-683.9995727539062,997.7224731445312,843.5750732421875,-683.9995727539062,989.0402221679688,843.5751953125,-951.6314697265625,980.8812866210938,840.605712890625,-951.6314697265625,980.8812866210938,840.6055908203125,-683.9995727539062,989.0402221679688,843.5751953125,-951.6314697265625,980.8812866210938,840.6055908203125,-683.9995727539062,989.0402221679688,843.5750732421875,-683.9995727539062,980.8812866210938,840.605712890625,-951.6314697265625,974.230224609375,835.0247192382812,-951.6314697265625,974.230224609375,835.0247192382812,-683.9995727539062,980.8812866210938,840.605712890625,-951.6314697265625,974.230224609375,835.0247192382812,-683.9995727539062,980.8812866210938,840.6055908203125,-683.9995727539062,974.230224609375,835.0247192382812,-951.6314697265625,969.8889770507812,827.5054931640625,-951.6314697265625,969.8889770507812,827.5054931640625,-683.9995727539062,974.230224609375,835.0247192382812,-951.6314697265625,969.8889770507812,827.5054931640625,-683.9995727539062,974.230224609375,835.0247192382812,-683.9995727539062,969.8889770507812,827.5054931640625,-951.6314697265625,968.3812866210938,818.9550170898438,-951.6314697265625,968.3812866210938,818.9550170898438,-683.9995727539062,969.8889770507812,827.5054931640625,-951.6314697265625,968.3812866210938,818.9550170898438,-683.9995727539062,969.8889770507812,827.5054931640625,-683.9995727539062,968.3812866210938,818.9550170898438,-951.6314697265625,969.8889770507812,810.4044799804688,-951.6314697265625,969.8889770507812,810.4044799804688,-683.9995727539062,968.3812866210938,818.9550170898438,-951.6314697265625,969.8889770507812,810.4044799804688,-683.9995727539062,968.3812866210938,818.9550170898438,-683.9995727539062,969.8889770507812,810.4044799804688,-951.6314697265625,974.230224609375,802.8853149414062,-951.6314697265625,974.230224609375,802.8853149414062,-683.9995727539062,969.8889770507812,810.4044799804688,-951.6314697265625,974.230224609375,802.8853149414062,-683.9995727539062,969.8889770507812,810.4044799804688,-683.9995727539062,974.230224609375,802.8853149414062,-951.6314697265625,980.8812866210938,797.3043823242188,-951.6314697265625,980.8812866210938,797.3043212890625,-683.9995727539062,974.230224609375,802.8853149414062,-951.6314697265625,980.8812866210938,797.3043212890625,-683.9995727539062,974.230224609375,802.8853149414062,-683.9995727539062,980.8812866210938,797.3043823242188,-951.6314697265625,989.0402221679688,794.3347778320312,-951.6314697265625,989.0402221679688,794.3347778320312,-683.9995727539062,980.8812866210938,797.3043823242188,-951.6314697265625,989.0402221679688,794.3347778320312,-683.9995727539062,980.8812866210938,797.3043212890625,-683.9995727539062,989.0402221679688,794.3347778320312,-951.6314697265625,997.7224731445312,794.3347778320312,-951.6314697265625,997.7224731445312,794.3347778320312,-683.9995727539062,989.0402221679688,794.3347778320312,-951.6314697265625,997.7224731445312,794.3347778320312,-683.9995727539062,989.0402221679688,794.3347778320312,-683.9995727539062,997.7224731445312,794.3347778320312,-951.6314697265625,1005.8812866210938,797.3043823242188,-951.6314697265625,1005.8812866210938,797.3043212890625,-683.9995727539062,997.7224731445312,794.3347778320312,-951.6314697265625,1005.8812866210938,797.3043212890625,-683.9995727539062,997.7224731445312,794.3347778320312,-683.9995727539062,1005.8812866210938,797.3043823242188,-951.6314697265625,1012.532470703125,802.8853149414062,-951.6314697265625,1012.532470703125,802.8853149414062,-683.9995727539062,1005.8812866210938,797.3043823242188,-951.6314697265625,1012.532470703125,802.8853149414062,-683.9995727539062,1005.8812866210938,797.3043212890625,-683.9995727539062,1012.532470703125,802.8853149414062,-951.6314697265625,1016.8737182617188,810.4044799804688,-951.6314697265625,1016.8737182617188,810.4044189453125,-683.9995727539062,1012.532470703125,802.8853149414062,-951.6314697265625,1016.8737182617188,810.4044189453125,-683.9995727539062,1012.532470703125,802.8853149414062,-683.9995727539062,1016.8737182617188,810.4044799804688,-951.6314697265625,1018.3812866210938,818.9550170898438,-951.6314697265625,1018.3812866210938,818.9550170898438,-683.9995727539062,1016.8737182617188,810.4044799804688,-951.6314697265625,1018.3812866210938,818.9550170898438,-683.9995727539062,1016.8737182617188,810.4044189453125,-683.9995727539062,1018.3812866210938,818.9550170898438,-683.9995727539062,1016.8737182617188,827.5054931640625,-683.9995727539062,1016.8737182617188,827.50537109375,-416.3677062988281,1018.3812866210938,818.9550170898438,-683.9995727539062,1016.8737182617188,827.50537109375,-416.3677062988281,1018.3812866210938,818.9548950195312,-416.3677062988281,1016.8737182617188,827.5054931640625,-683.9995727539062,1012.532470703125,835.0247192382812,-683.9995727539062,1012.532470703125,835.0245971679688,-416.3677062988281,1016.8737182617188,827.5054931640625,-683.9995727539062,1012.532470703125,835.0245971679688,-416.3677062988281,1016.8737182617188,827.50537109375,-416.3677062988281,1012.532470703125,835.0247192382812,-683.9995727539062,1005.8812866210938,840.6055908203125,-683.9995727539062,1005.8812866210938,840.6055297851562,-416.3677062988281,1012.532470703125,835.0247192382812,-683.9995727539062,1005.8812866210938,840.6055297851562,-416.3677062988281,1012.532470703125,835.0245971679688,-416.3677062988281,1005.8812866210938,840.6055908203125,-683.9995727539062,997.7224731445312,843.5750732421875,-683.9995727539062,997.7224731445312,843.5750732421875,-416.3677062988281,1005.8812866210938,840.6055908203125,-683.9995727539062,997.7224731445312,843.5750732421875,-416.3677062988281,1005.8812866210938,840.6055297851562,-416.3677062988281,997.7224731445312,843.5750732421875,-683.9995727539062,989.0402221679688,843.5750732421875,-683.9995727539062,989.0402221679688,843.5750732421875,-416.3677062988281,997.7224731445312,843.5750732421875,-683.9995727539062,989.0402221679688,843.5750732421875,-416.3677062988281,997.7224731445312,843.5750732421875,-416.3677062988281,989.0402221679688,843.5750732421875,-683.9995727539062,980.8812866210938,840.6055908203125,-683.9995727539062,980.8812866210938,840.6055297851562,-416.3677062988281,989.0402221679688,843.5750732421875,-683.9995727539062,980.8812866210938,840.6055297851562,-416.3677062988281,989.0402221679688,843.5750732421875,-416.3677062988281,980.8812866210938,840.6055908203125,-683.9995727539062,974.230224609375,835.0247192382812,-683.9995727539062,974.230224609375,835.0245971679688,-416.3677062988281,980.8812866210938,840.6055908203125,-683.9995727539062,974.230224609375,835.0245971679688,-416.3677062988281,980.8812866210938,840.6055297851562,-416.3677062988281,974.230224609375,835.0247192382812,-683.9995727539062,969.8889770507812,827.5054931640625,-683.9995727539062,969.8889770507812,827.50537109375,-416.3677062988281,974.230224609375,835.0247192382812,-683.9995727539062,969.8889770507812,827.50537109375,-416.3677062988281,974.230224609375,835.0245971679688,-416.3677062988281,969.8889770507812,827.5054931640625,-683.9995727539062,968.3812866210938,818.9550170898438,-683.9995727539062,968.3812866210938,818.9548950195312,-416.3677062988281,969.8889770507812,827.5054931640625,-683.9995727539062,968.3812866210938,818.9548950195312,-416.3677062988281,969.8889770507812,827.50537109375,-416.3677062988281,968.3812866210938,818.9550170898438,-683.9995727539062,969.8889770507812,810.4044799804688,-683.9995727539062,969.8889770507812,810.4044189453125,-416.3677062988281,968.3812866210938,818.9550170898438,-683.9995727539062,969.8889770507812,810.4044189453125,-416.3677062988281,968.3812866210938,818.9548950195312,-416.3677062988281,969.8889770507812,810.4044799804688,-683.9995727539062,974.230224609375,802.8853149414062,-683.9995727539062,974.230224609375,802.8853149414062,-416.3677062988281,969.8889770507812,810.4044799804688,-683.9995727539062,974.230224609375,802.8853149414062,-416.3677062988281,969.8889770507812,810.4044189453125,-416.3677062988281,974.230224609375,802.8853149414062,-683.9995727539062,980.8812866210938,797.3043212890625,-683.9995727539062,980.8812866210938,797.3043212890625,-416.3677062988281,974.230224609375,802.8853149414062,-683.9995727539062,980.8812866210938,797.3043212890625,-416.3677062988281,974.230224609375,802.8853149414062,-416.3677062988281,980.8812866210938,797.3043212890625,-683.9995727539062,989.0402221679688,794.3347778320312,-683.9995727539062,989.0402221679688,794.334716796875,-416.3677062988281,980.8812866210938,797.3043212890625,-683.9995727539062,989.0402221679688,794.334716796875,-416.3677062988281,980.8812866210938,797.3043212890625,-416.3677062988281,989.0402221679688,794.3347778320312,-683.9995727539062,997.7224731445312,794.3347778320312,-683.9995727539062,997.7224731445312,794.334716796875,-416.3677062988281,989.0402221679688,794.3347778320312,-683.9995727539062,997.7224731445312,794.334716796875,-416.3677062988281,989.0402221679688,794.334716796875,-416.3677062988281,997.7224731445312,794.3347778320312,-683.9995727539062,1005.8812866210938,797.3043212890625,-683.9995727539062,1005.8812866210938,797.3043212890625,-416.3677062988281,997.7224731445312,794.3347778320312,-683.9995727539062,1005.8812866210938,797.3043212890625,-416.3677062988281,997.7224731445312,794.334716796875,-416.3677062988281,1005.8812866210938,797.3043212890625,-683.9995727539062,1012.532470703125,802.8853149414062,-683.9995727539062,1012.532470703125,802.8851928710938,-416.3677062988281,1005.8812866210938,797.3043212890625,-683.9995727539062,1012.532470703125,802.8851928710938,-416.3677062988281,1005.8812866210938,797.3043212890625,-416.3677062988281,1012.532470703125,802.8853149414062,-683.9995727539062,1016.8737182617188,810.4044189453125,-683.9995727539062,1016.8737182617188,810.4044189453125,-416.3677062988281,1012.532470703125,802.8853149414062,-683.9995727539062,1016.8737182617188,810.4044189453125,-416.3677062988281,1012.532470703125,802.8851928710938,-416.3677062988281,1016.8737182617188,810.4044189453125,-683.9995727539062,1018.3812866210938,818.9550170898438,-683.9995727539062,1018.3812866210938,818.9548950195312,-416.3677062988281,1016.8737182617188,810.4044189453125,-683.9995727539062,1018.3812866210938,818.9548950195312,-416.3677062988281,1016.8737182617188,810.4044189453125,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,1016.8737182617188,810.4044189453125,-416.3677062988281,1018.3812866210938,818.9548950195312,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,1018.3812866210938,818.9548950195312,-416.3677062988281,1016.8737182617188,827.50537109375,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,1016.8737182617188,827.50537109375,-416.3677062988281,1012.532470703125,835.0245971679688,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,1012.532470703125,835.0245971679688,-416.3677062988281,1005.8812866210938,840.6055297851562,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,1005.8812866210938,840.6055297851562,-416.3677062988281,997.7224731445312,843.5750732421875,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,997.7224731445312,843.5750732421875,-416.3677062988281,989.0402221679688,843.5750732421875,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,989.0402221679688,843.5750732421875,-416.3677062988281,980.8812866210938,840.6055297851562,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,980.8812866210938,840.6055297851562,-416.3677062988281,974.230224609375,835.0245971679688,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,974.230224609375,835.0245971679688,-416.3677062988281,969.8889770507812,827.50537109375,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,969.8889770507812,827.50537109375,-416.3677062988281,968.3812866210938,818.9548950195312,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,968.3812866210938,818.9548950195312,-416.3677062988281,969.8889770507812,810.4044189453125,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,969.8889770507812,810.4044189453125,-416.3677062988281,974.230224609375,802.8853149414062,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,974.230224609375,802.8853149414062,-416.3677062988281,980.8812866210938,797.3043212890625,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,980.8812866210938,797.3043212890625,-416.3677062988281,989.0402221679688,794.334716796875,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,989.0402221679688,794.334716796875,-416.3677062988281,997.7224731445312,794.334716796875,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,997.7224731445312,794.334716796875,-416.3677062988281,1005.8812866210938,797.3043212890625,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,1005.8812866210938,797.3043212890625,-416.3677062988281,1012.532470703125,802.8851928710938,-416.3677062988281,993.3812866210938,818.9548950195312,-416.3677062988281,1012.532470703125,802.8851928710938,-416.3677062988281,1016.8737182617188,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [993.3812866210938,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466595042122
| }
| }
| },
| {
| "uuid": "365B73AF-DA0D-4C25-ADF7-F9E04127B757",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [1093.38134765625,818.955078125,-1754.5272216796875,1112.532470703125,835.0247802734375,-1754.5272216796875,1116.8736572265625,827.505615234375,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1116.8736572265625,827.505615234375,-1754.5272216796875,1118.38134765625,818.955078125,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1097.7225341796875,843.5753173828125,-1754.5272216796875,1105.88134765625,840.6057739257812,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1105.88134765625,840.6057739257812,-1754.5272216796875,1112.532470703125,835.0247802734375,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1080.88134765625,840.6057739257812,-1754.5272216796875,1089.0401611328125,843.5753173828125,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1089.0401611328125,843.5753173828125,-1754.5272216796875,1097.7225341796875,843.5753173828125,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1069.8890380859375,827.505615234375,-1754.5272216796875,1074.230224609375,835.0247802734375,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1074.230224609375,835.0247802734375,-1754.5272216796875,1080.88134765625,840.6057739257812,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1069.8890380859375,810.4047241210938,-1754.5272216796875,1068.38134765625,818.955078125,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1068.38134765625,818.955078125,-1754.5272216796875,1069.8890380859375,827.505615234375,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1080.88134765625,797.3045043945312,-1754.5272216796875,1074.230224609375,802.8853759765625,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1074.230224609375,802.8853759765625,-1754.5272216796875,1069.8890380859375,810.4047241210938,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1097.7225341796875,794.3350219726562,-1754.5272216796875,1089.0401611328125,794.3350219726562,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1089.0401611328125,794.3350219726562,-1754.5272216796875,1080.88134765625,797.3045043945312,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1112.532470703125,802.8853759765625,-1754.5272216796875,1105.88134765625,797.3045043945312,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1105.88134765625,797.3045043945312,-1754.5272216796875,1097.7225341796875,794.3350219726562,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1118.38134765625,818.955078125,-1754.5272216796875,1116.8736572265625,810.4046020507812,-1754.5272216796875,1093.38134765625,818.955078125,-1754.5272216796875,1116.8736572265625,810.4046020507812,-1754.5272216796875,1112.532470703125,802.8853759765625,-1754.5272216796875,1118.38134765625,818.955078125,-1754.5272216796875,1116.8736572265625,827.505615234375,-1754.5272216796875,1116.8736572265625,827.505615234375,-1486.895263671875,1118.38134765625,818.955078125,-1754.5272216796875,1116.8736572265625,827.505615234375,-1486.895263671875,1118.38134765625,818.955078125,-1486.895263671875,1116.8736572265625,827.505615234375,-1754.5272216796875,1112.532470703125,835.0247802734375,-1754.5272216796875,1112.532470703125,835.0247802734375,-1486.895263671875,1116.8736572265625,827.505615234375,-1754.5272216796875,1112.532470703125,835.0247802734375,-1486.895263671875,1116.8736572265625,827.505615234375,-1486.895263671875,1112.532470703125,835.0247802734375,-1754.5272216796875,1105.88134765625,840.6057739257812,-1754.5272216796875,1105.88134765625,840.605712890625,-1486.895263671875,1112.532470703125,835.0247802734375,-1754.5272216796875,1105.88134765625,840.605712890625,-1486.895263671875,1112.532470703125,835.0247802734375,-1486.895263671875,1105.88134765625,840.6057739257812,-1754.5272216796875,1097.7225341796875,843.5753173828125,-1754.5272216796875,1097.7225341796875,843.5753173828125,-1486.895263671875,1105.88134765625,840.6057739257812,-1754.5272216796875,1097.7225341796875,843.5753173828125,-1486.895263671875,1105.88134765625,840.605712890625,-1486.895263671875,1097.7225341796875,843.5753173828125,-1754.5272216796875,1089.0401611328125,843.5753173828125,-1754.5272216796875,1089.0401611328125,843.5753173828125,-1486.895263671875,1097.7225341796875,843.5753173828125,-1754.5272216796875,1089.0401611328125,843.5753173828125,-1486.895263671875,1097.7225341796875,843.5753173828125,-1486.895263671875,1089.0401611328125,843.5753173828125,-1754.5272216796875,1080.88134765625,840.6057739257812,-1754.5272216796875,1080.88134765625,840.605712890625,-1486.895263671875,1089.0401611328125,843.5753173828125,-1754.5272216796875,1080.88134765625,840.605712890625,-1486.895263671875,1089.0401611328125,843.5753173828125,-1486.895263671875,1080.88134765625,840.6057739257812,-1754.5272216796875,1074.230224609375,835.0247802734375,-1754.5272216796875,1074.230224609375,835.0247802734375,-1486.895263671875,1080.88134765625,840.6057739257812,-1754.5272216796875,1074.230224609375,835.0247802734375,-1486.895263671875,1080.88134765625,840.605712890625,-1486.895263671875,1074.230224609375,835.0247802734375,-1754.5272216796875,1069.8890380859375,827.505615234375,-1754.5272216796875,1069.8890380859375,827.505615234375,-1486.895263671875,1074.230224609375,835.0247802734375,-1754.5272216796875,1069.8890380859375,827.505615234375,-1486.895263671875,1074.230224609375,835.0247802734375,-1486.895263671875,1069.8890380859375,827.505615234375,-1754.5272216796875,1068.38134765625,818.955078125,-1754.5272216796875,1068.38134765625,818.955078125,-1486.895263671875,1069.8890380859375,827.505615234375,-1754.5272216796875,1068.38134765625,818.955078125,-1486.895263671875,1069.8890380859375,827.505615234375,-1486.895263671875,1068.38134765625,818.955078125,-1754.5272216796875,1069.8890380859375,810.4047241210938,-1754.5272216796875,1069.8890380859375,810.4046020507812,-1486.895263671875,1068.38134765625,818.955078125,-1754.5272216796875,1069.8890380859375,810.4046020507812,-1486.895263671875,1068.38134765625,818.955078125,-1486.895263671875,1069.8890380859375,810.4047241210938,-1754.5272216796875,1074.230224609375,802.8853759765625,-1754.5272216796875,1074.230224609375,802.8853759765625,-1486.895263671875,1069.8890380859375,810.4047241210938,-1754.5272216796875,1074.230224609375,802.8853759765625,-1486.895263671875,1069.8890380859375,810.4046020507812,-1486.895263671875,1074.230224609375,802.8853759765625,-1754.5272216796875,1080.88134765625,797.3045043945312,-1754.5272216796875,1080.88134765625,797.3043823242188,-1486.895263671875,1074.230224609375,802.8853759765625,-1754.5272216796875,1080.88134765625,797.3043823242188,-1486.895263671875,1074.230224609375,802.8853759765625,-1486.895263671875,1080.88134765625,797.3045043945312,-1754.5272216796875,1089.0401611328125,794.3350219726562,-1754.5272216796875,1089.0401611328125,794.3348999023438,-1486.895263671875,1080.88134765625,797.3045043945312,-1754.5272216796875,1089.0401611328125,794.3348999023438,-1486.895263671875,1080.88134765625,797.3043823242188,-1486.895263671875,1089.0401611328125,794.3350219726562,-1754.5272216796875,1097.7225341796875,794.3350219726562,-1754.5272216796875,1097.7225341796875,794.3348999023438,-1486.895263671875,1089.0401611328125,794.3350219726562,-1754.5272216796875,1097.7225341796875,794.3348999023438,-1486.895263671875,1089.0401611328125,794.3348999023438,-1486.895263671875,1097.7225341796875,794.3350219726562,-1754.5272216796875,1105.88134765625,797.3045043945312,-1754.5272216796875,1105.88134765625,797.3043823242188,-1486.895263671875,1097.7225341796875,794.3350219726562,-1754.5272216796875,1105.88134765625,797.3043823242188,-1486.895263671875,1097.7225341796875,794.3348999023438,-1486.895263671875,1105.88134765625,797.3045043945312,-1754.5272216796875,1112.532470703125,802.8853759765625,-1754.5272216796875,1112.532470703125,802.8853759765625,-1486.895263671875,1105.88134765625,797.3045043945312,-1754.5272216796875,1112.532470703125,802.8853759765625,-1486.895263671875,1105.88134765625,797.3043823242188,-1486.895263671875,1112.532470703125,802.8853759765625,-1754.5272216796875,1116.8736572265625,810.4046020507812,-1754.5272216796875,1116.8736572265625,810.4046020507812,-1486.895263671875,1112.532470703125,802.8853759765625,-1754.5272216796875,1116.8736572265625,810.4046020507812,-1486.895263671875,1112.532470703125,802.8853759765625,-1486.895263671875,1116.8736572265625,810.4046020507812,-1754.5272216796875,1118.38134765625,818.955078125,-1754.5272216796875,1118.38134765625,818.955078125,-1486.895263671875,1116.8736572265625,810.4046020507812,-1754.5272216796875,1118.38134765625,818.955078125,-1486.895263671875,1116.8736572265625,810.4046020507812,-1486.895263671875,1118.38134765625,818.955078125,-1486.895263671875,1116.8736572265625,827.505615234375,-1486.895263671875,1116.8736572265625,827.505615234375,-1219.263427734375,1118.38134765625,818.955078125,-1486.895263671875,1116.8736572265625,827.505615234375,-1219.263427734375,1118.38134765625,818.955078125,-1219.263427734375,1116.8736572265625,827.505615234375,-1486.895263671875,1112.532470703125,835.0247802734375,-1486.895263671875,1112.532470703125,835.0247192382812,-1219.263427734375,1116.8736572265625,827.505615234375,-1486.895263671875,1112.532470703125,835.0247192382812,-1219.263427734375,1116.8736572265625,827.505615234375,-1219.263427734375,1112.532470703125,835.0247802734375,-1486.895263671875,1105.88134765625,840.605712890625,-1486.895263671875,1105.88134765625,840.605712890625,-1219.263427734375,1112.532470703125,835.0247802734375,-1486.895263671875,1105.88134765625,840.605712890625,-1219.263427734375,1112.532470703125,835.0247192382812,-1219.263427734375,1105.88134765625,840.605712890625,-1486.895263671875,1097.7225341796875,843.5753173828125,-1486.895263671875,1097.7225341796875,843.5753173828125,-1219.263427734375,1105.88134765625,840.605712890625,-1486.895263671875,1097.7225341796875,843.5753173828125,-1219.263427734375,1105.88134765625,840.605712890625,-1219.263427734375,1097.7225341796875,843.5753173828125,-1486.895263671875,1089.0401611328125,843.5753173828125,-1486.895263671875,1089.0401611328125,843.5753173828125,-1219.263427734375,1097.7225341796875,843.5753173828125,-1486.895263671875,1089.0401611328125,843.5753173828125,-1219.263427734375,1097.7225341796875,843.5753173828125,-1219.263427734375,1089.0401611328125,843.5753173828125,-1486.895263671875,1080.88134765625,840.605712890625,-1486.895263671875,1080.88134765625,840.605712890625,-1219.263427734375,1089.0401611328125,843.5753173828125,-1486.895263671875,1080.88134765625,840.605712890625,-1219.263427734375,1089.0401611328125,843.5753173828125,-1219.263427734375,1080.88134765625,840.605712890625,-1486.895263671875,1074.230224609375,835.0247802734375,-1486.895263671875,1074.230224609375,835.0247192382812,-1219.263427734375,1080.88134765625,840.605712890625,-1486.895263671875,1074.230224609375,835.0247192382812,-1219.263427734375,1080.88134765625,840.605712890625,-1219.263427734375,1074.230224609375,835.0247802734375,-1486.895263671875,1069.8890380859375,827.505615234375,-1486.895263671875,1069.8890380859375,827.505615234375,-1219.263427734375,1074.230224609375,835.0247802734375,-1486.895263671875,1069.8890380859375,827.505615234375,-1219.263427734375,1074.230224609375,835.0247192382812,-1219.263427734375,1069.8890380859375,827.505615234375,-1486.895263671875,1068.38134765625,818.955078125,-1486.895263671875,1068.38134765625,818.955078125,-1219.263427734375,1069.8890380859375,827.505615234375,-1486.895263671875,1068.38134765625,818.955078125,-1219.263427734375,1069.8890380859375,827.505615234375,-1219.263427734375,1068.38134765625,818.955078125,-1486.895263671875,1069.8890380859375,810.4046020507812,-1486.895263671875,1069.8890380859375,810.4044799804688,-1219.263427734375,1068.38134765625,818.955078125,-1486.895263671875,1069.8890380859375,810.4044799804688,-1219.263427734375,1068.38134765625,818.955078125,-1219.263427734375,1069.8890380859375,810.4046020507812,-1486.895263671875,1074.230224609375,802.8853759765625,-1486.895263671875,1074.230224609375,802.8853759765625,-1219.263427734375,1069.8890380859375,810.4046020507812,-1486.895263671875,1074.230224609375,802.8853759765625,-1219.263427734375,1069.8890380859375,810.4044799804688,-1219.263427734375,1074.230224609375,802.8853759765625,-1486.895263671875,1080.88134765625,797.3043823242188,-1486.895263671875,1080.88134765625,797.3043823242188,-1219.263427734375,1074.230224609375,802.8853759765625,-1486.895263671875,1080.88134765625,797.3043823242188,-1219.263427734375,1074.230224609375,802.8853759765625,-1219.263427734375,1080.88134765625,797.3043823242188,-1486.895263671875,1089.0401611328125,794.3348999023438,-1486.895263671875,1089.0401611328125,794.3347778320312,-1219.263427734375,1080.88134765625,797.3043823242188,-1486.895263671875,1089.0401611328125,794.3347778320312,-1219.263427734375,1080.88134765625,797.3043823242188,-1219.263427734375,1089.0401611328125,794.3348999023438,-1486.895263671875,1097.7225341796875,794.3348999023438,-1486.895263671875,1097.7225341796875,794.3347778320312,-1219.263427734375,1089.0401611328125,794.3348999023438,-1486.895263671875,1097.7225341796875,794.3347778320312,-1219.263427734375,1089.0401611328125,794.3347778320312,-1219.263427734375,1097.7225341796875,794.3348999023438,-1486.895263671875,1105.88134765625,797.3043823242188,-1486.895263671875,1105.88134765625,797.3043823242188,-1219.263427734375,1097.7225341796875,794.3348999023438,-1486.895263671875,1105.88134765625,797.3043823242188,-1219.263427734375,1097.7225341796875,794.3347778320312,-1219.263427734375,1105.88134765625,797.3043823242188,-1486.895263671875,1112.532470703125,802.8853759765625,-1486.895263671875,1112.532470703125,802.8853759765625,-1219.263427734375,1105.88134765625,797.3043823242188,-1486.895263671875,1112.532470703125,802.8853759765625,-1219.263427734375,1105.88134765625,797.3043823242188,-1219.263427734375,1112.532470703125,802.8853759765625,-1486.895263671875,1116.8736572265625,810.4046020507812,-1486.895263671875,1116.8736572265625,810.4044799804688,-1219.263427734375,1112.532470703125,802.8853759765625,-1486.895263671875,1116.8736572265625,810.4044799804688,-1219.263427734375,1112.532470703125,802.8853759765625,-1219.263427734375,1116.8736572265625,810.4046020507812,-1486.895263671875,1118.38134765625,818.955078125,-1486.895263671875,1118.38134765625,818.955078125,-1219.263427734375,1116.8736572265625,810.4046020507812,-1486.895263671875,1118.38134765625,818.955078125,-1219.263427734375,1116.8736572265625,810.4044799804688,-1219.263427734375,1118.38134765625,818.955078125,-1219.263427734375,1116.8736572265625,827.505615234375,-1219.263427734375,1116.8736572265625,827.5054931640625,-951.6314697265625,1118.38134765625,818.955078125,-1219.263427734375,1116.8736572265625,827.5054931640625,-951.6314697265625,1118.38134765625,818.9550170898438,-951.6314697265625,1116.8736572265625,827.505615234375,-1219.263427734375,1112.532470703125,835.0247192382812,-1219.263427734375,1112.532470703125,835.0247192382812,-951.6314697265625,1116.8736572265625,827.505615234375,-1219.263427734375,1112.532470703125,835.0247192382812,-951.6314697265625,1116.8736572265625,827.5054931640625,-951.6314697265625,1112.532470703125,835.0247192382812,-1219.263427734375,1105.88134765625,840.605712890625,-1219.263427734375,1105.88134765625,840.605712890625,-951.6314697265625,1112.532470703125,835.0247192382812,-1219.263427734375,1105.88134765625,840.605712890625,-951.6314697265625,1112.532470703125,835.0247192382812,-951.6314697265625,1105.88134765625,840.605712890625,-1219.263427734375,1097.7225341796875,843.5753173828125,-1219.263427734375,1097.7225341796875,843.5751953125,-951.6314697265625,1105.88134765625,840.605712890625,-1219.263427734375,1097.7225341796875,843.5751953125,-951.6314697265625,1105.88134765625,840.605712890625,-951.6314697265625,1097.7225341796875,843.5753173828125,-1219.263427734375,1089.0401611328125,843.5753173828125,-1219.263427734375,1089.0401611328125,843.5751953125,-951.6314697265625,1097.7225341796875,843.5753173828125,-1219.263427734375,1089.0401611328125,843.5751953125,-951.6314697265625,1097.7225341796875,843.5751953125,-951.6314697265625,1089.0401611328125,843.5753173828125,-1219.263427734375,1080.88134765625,840.605712890625,-1219.263427734375,1080.88134765625,840.605712890625,-951.6314697265625,1089.0401611328125,843.5753173828125,-1219.263427734375,1080.88134765625,840.605712890625,-951.6314697265625,1089.0401611328125,843.5751953125,-951.6314697265625,1080.88134765625,840.605712890625,-1219.263427734375,1074.230224609375,835.0247192382812,-1219.263427734375,1074.230224609375,835.0247192382812,-951.6314697265625,1080.88134765625,840.605712890625,-1219.263427734375,1074.230224609375,835.0247192382812,-951.6314697265625,1080.88134765625,840.605712890625,-951.6314697265625,1074.230224609375,835.0247192382812,-1219.263427734375,1069.8890380859375,827.505615234375,-1219.263427734375,1069.8890380859375,827.5054931640625,-951.6314697265625,1074.230224609375,835.0247192382812,-1219.263427734375,1069.8890380859375,827.5054931640625,-951.6314697265625,1074.230224609375,835.0247192382812,-951.6314697265625,1069.8890380859375,827.505615234375,-1219.263427734375,1068.38134765625,818.955078125,-1219.263427734375,1068.38134765625,818.9550170898438,-951.6314697265625,1069.8890380859375,827.505615234375,-1219.263427734375,1068.38134765625,818.9550170898438,-951.6314697265625,1069.8890380859375,827.5054931640625,-951.6314697265625,1068.38134765625,818.955078125,-1219.263427734375,1069.8890380859375,810.4044799804688,-1219.263427734375,1069.8890380859375,810.4044799804688,-951.6314697265625,1068.38134765625,818.955078125,-1219.263427734375,1069.8890380859375,810.4044799804688,-951.6314697265625,1068.38134765625,818.9550170898438,-951.6314697265625,1069.8890380859375,810.4044799804688,-1219.263427734375,1074.230224609375,802.8853759765625,-1219.263427734375,1074.230224609375,802.8853149414062,-951.6314697265625,1069.8890380859375,810.4044799804688,-1219.263427734375,1074.230224609375,802.8853149414062,-951.6314697265625,1069.8890380859375,810.4044799804688,-951.6314697265625,1074.230224609375,802.8853759765625,-1219.263427734375,1080.88134765625,797.3043823242188,-1219.263427734375,1080.88134765625,797.3043823242188,-951.6314697265625,1074.230224609375,802.8853759765625,-1219.263427734375,1080.88134765625,797.3043823242188,-951.6314697265625,1074.230224609375,802.8853149414062,-951.6314697265625,1080.88134765625,797.3043823242188,-1219.263427734375,1089.0401611328125,794.3347778320312,-1219.263427734375,1089.0401611328125,794.3347778320312,-951.6314697265625,1080.88134765625,797.3043823242188,-1219.263427734375,1089.0401611328125,794.3347778320312,-951.6314697265625,1080.88134765625,797.3043823242188,-951.6314697265625,1089.0401611328125,794.3347778320312,-1219.263427734375,1097.7225341796875,794.3347778320312,-1219.263427734375,1097.7225341796875,794.3347778320312,-951.6314697265625,1089.0401611328125,794.3347778320312,-1219.263427734375,1097.7225341796875,794.3347778320312,-951.6314697265625,1089.0401611328125,794.3347778320312,-951.6314697265625,1097.7225341796875,794.3347778320312,-1219.263427734375,1105.88134765625,797.3043823242188,-1219.263427734375,1105.88134765625,797.3043823242188,-951.6314697265625,1097.7225341796875,794.3347778320312,-1219.263427734375,1105.88134765625,797.3043823242188,-951.6314697265625,1097.7225341796875,794.3347778320312,-951.6314697265625,1105.88134765625,797.3043823242188,-1219.263427734375,1112.532470703125,802.8853759765625,-1219.263427734375,1112.532470703125,802.8853149414062,-951.6314697265625,1105.88134765625,797.3043823242188,-1219.263427734375,1112.532470703125,802.8853149414062,-951.6314697265625,1105.88134765625,797.3043823242188,-951.6314697265625,1112.532470703125,802.8853759765625,-1219.263427734375,1116.8736572265625,810.4044799804688,-1219.263427734375,1116.8736572265625,810.4044799804688,-951.6314697265625,1112.532470703125,802.8853759765625,-1219.263427734375,1116.8736572265625,810.4044799804688,-951.6314697265625,1112.532470703125,802.8853149414062,-951.6314697265625,1116.8736572265625,810.4044799804688,-1219.263427734375,1118.38134765625,818.955078125,-1219.263427734375,1118.38134765625,818.9550170898438,-951.6314697265625,1116.8736572265625,810.4044799804688,-1219.263427734375,1118.38134765625,818.9550170898438,-951.6314697265625,1116.8736572265625,810.4044799804688,-951.6314697265625,1118.38134765625,818.9550170898438,-951.6314697265625,1116.8736572265625,827.5054931640625,-951.6314697265625,1116.8736572265625,827.5054931640625,-683.9995727539062,1118.38134765625,818.9550170898438,-951.6314697265625,1116.8736572265625,827.5054931640625,-683.9995727539062,1118.38134765625,818.9550170898438,-683.9995727539062,1116.8736572265625,827.5054931640625,-951.6314697265625,1112.532470703125,835.0247192382812,-951.6314697265625,1112.532470703125,835.0247192382812,-683.9995727539062,1116.8736572265625,827.5054931640625,-951.6314697265625,1112.532470703125,835.0247192382812,-683.9995727539062,1116.8736572265625,827.5054931640625,-683.9995727539062,1112.532470703125,835.0247192382812,-951.6314697265625,1105.88134765625,840.605712890625,-951.6314697265625,1105.88134765625,840.6055908203125,-683.9995727539062,1112.532470703125,835.0247192382812,-951.6314697265625,1105.88134765625,840.6055908203125,-683.9995727539062,1112.532470703125,835.0247192382812,-683.9995727539062,1105.88134765625,840.605712890625,-951.6314697265625,1097.7225341796875,843.5751953125,-951.6314697265625,1097.7225341796875,843.5750732421875,-683.9995727539062,1105.88134765625,840.605712890625,-951.6314697265625,1097.7225341796875,843.5750732421875,-683.9995727539062,1105.88134765625,840.6055908203125,-683.9995727539062,1097.7225341796875,843.5751953125,-951.6314697265625,1089.0401611328125,843.5751953125,-951.6314697265625,1089.0401611328125,843.5750732421875,-683.9995727539062,1097.7225341796875,843.5751953125,-951.6314697265625,1089.0401611328125,843.5750732421875,-683.9995727539062,1097.7225341796875,843.5750732421875,-683.9995727539062,1089.0401611328125,843.5751953125,-951.6314697265625,1080.88134765625,840.605712890625,-951.6314697265625,1080.88134765625,840.6055908203125,-683.9995727539062,1089.0401611328125,843.5751953125,-951.6314697265625,1080.88134765625,840.6055908203125,-683.9995727539062,1089.0401611328125,843.5750732421875,-683.9995727539062,1080.88134765625,840.605712890625,-951.6314697265625,1074.230224609375,835.0247192382812,-951.6314697265625,1074.230224609375,835.0247192382812,-683.9995727539062,1080.88134765625,840.605712890625,-951.6314697265625,1074.230224609375,835.0247192382812,-683.9995727539062,1080.88134765625,840.6055908203125,-683.9995727539062,1074.230224609375,835.0247192382812,-951.6314697265625,1069.8890380859375,827.5054931640625,-951.6314697265625,1069.8890380859375,827.5054931640625,-683.9995727539062,1074.230224609375,835.0247192382812,-951.6314697265625,1069.8890380859375,827.5054931640625,-683.9995727539062,1074.230224609375,835.0247192382812,-683.9995727539062,1069.8890380859375,827.5054931640625,-951.6314697265625,1068.38134765625,818.9550170898438,-951.6314697265625,1068.38134765625,818.9550170898438,-683.9995727539062,1069.8890380859375,827.5054931640625,-951.6314697265625,1068.38134765625,818.9550170898438,-683.9995727539062,1069.8890380859375,827.5054931640625,-683.9995727539062,1068.38134765625,818.9550170898438,-951.6314697265625,1069.8890380859375,810.4044799804688,-951.6314697265625,1069.8890380859375,810.4044799804688,-683.9995727539062,1068.38134765625,818.9550170898438,-951.6314697265625,1069.8890380859375,810.4044799804688,-683.9995727539062,1068.38134765625,818.9550170898438,-683.9995727539062,1069.8890380859375,810.4044799804688,-951.6314697265625,1074.230224609375,802.8853149414062,-951.6314697265625,1074.230224609375,802.8853149414062,-683.9995727539062,1069.8890380859375,810.4044799804688,-951.6314697265625,1074.230224609375,802.8853149414062,-683.9995727539062,1069.8890380859375,810.4044799804688,-683.9995727539062,1074.230224609375,802.8853149414062,-951.6314697265625,1080.88134765625,797.3043823242188,-951.6314697265625,1080.88134765625,797.3043212890625,-683.9995727539062,1074.230224609375,802.8853149414062,-951.6314697265625,1080.88134765625,797.3043212890625,-683.9995727539062,1074.230224609375,802.8853149414062,-683.9995727539062,1080.88134765625,797.3043823242188,-951.6314697265625,1089.0401611328125,794.3347778320312,-951.6314697265625,1089.0401611328125,794.3347778320312,-683.9995727539062,1080.88134765625,797.3043823242188,-951.6314697265625,1089.0401611328125,794.3347778320312,-683.9995727539062,1080.88134765625,797.3043212890625,-683.9995727539062,1089.0401611328125,794.3347778320312,-951.6314697265625,1097.7225341796875,794.3347778320312,-951.6314697265625,1097.7225341796875,794.3347778320312,-683.9995727539062,1089.0401611328125,794.3347778320312,-951.6314697265625,1097.7225341796875,794.3347778320312,-683.9995727539062,1089.0401611328125,794.3347778320312,-683.9995727539062,1097.7225341796875,794.3347778320312,-951.6314697265625,1105.88134765625,797.3043823242188,-951.6314697265625,1105.88134765625,797.3043212890625,-683.9995727539062,1097.7225341796875,794.3347778320312,-951.6314697265625,1105.88134765625,797.3043212890625,-683.9995727539062,1097.7225341796875,794.3347778320312,-683.9995727539062,1105.88134765625,797.3043823242188,-951.6314697265625,1112.532470703125,802.8853149414062,-951.6314697265625,1112.532470703125,802.8853149414062,-683.9995727539062,1105.88134765625,797.3043823242188,-951.6314697265625,1112.532470703125,802.8853149414062,-683.9995727539062,1105.88134765625,797.3043212890625,-683.9995727539062,1112.532470703125,802.8853149414062,-951.6314697265625,1116.8736572265625,810.4044799804688,-951.6314697265625,1116.8736572265625,810.4044189453125,-683.9995727539062,1112.532470703125,802.8853149414062,-951.6314697265625,1116.8736572265625,810.4044189453125,-683.9995727539062,1112.532470703125,802.8853149414062,-683.9995727539062,1116.8736572265625,810.4044799804688,-951.6314697265625,1118.38134765625,818.9550170898438,-951.6314697265625,1118.38134765625,818.9550170898438,-683.9995727539062,1116.8736572265625,810.4044799804688,-951.6314697265625,1118.38134765625,818.9550170898438,-683.9995727539062,1116.8736572265625,810.4044189453125,-683.9995727539062,1118.38134765625,818.9550170898438,-683.9995727539062,1116.8736572265625,827.5054931640625,-683.9995727539062,1116.8736572265625,827.50537109375,-416.3677062988281,1118.38134765625,818.9550170898438,-683.9995727539062,1116.8736572265625,827.50537109375,-416.3677062988281,1118.38134765625,818.9548950195312,-416.3677062988281,1116.8736572265625,827.5054931640625,-683.9995727539062,1112.532470703125,835.0247192382812,-683.9995727539062,1112.532470703125,835.0245971679688,-416.3677062988281,1116.8736572265625,827.5054931640625,-683.9995727539062,1112.532470703125,835.0245971679688,-416.3677062988281,1116.8736572265625,827.50537109375,-416.3677062988281,1112.532470703125,835.0247192382812,-683.9995727539062,1105.88134765625,840.6055908203125,-683.9995727539062,1105.88134765625,840.6055297851562,-416.3677062988281,1112.532470703125,835.0247192382812,-683.9995727539062,1105.88134765625,840.6055297851562,-416.3677062988281,1112.532470703125,835.0245971679688,-416.3677062988281,1105.88134765625,840.6055908203125,-683.9995727539062,1097.7225341796875,843.5750732421875,-683.9995727539062,1097.7225341796875,843.5750732421875,-416.3677062988281,1105.88134765625,840.6055908203125,-683.9995727539062,1097.7225341796875,843.5750732421875,-416.3677062988281,1105.88134765625,840.6055297851562,-416.3677062988281,1097.7225341796875,843.5750732421875,-683.9995727539062,1089.0401611328125,843.5750732421875,-683.9995727539062,1089.0401611328125,843.5750732421875,-416.3677062988281,1097.7225341796875,843.5750732421875,-683.9995727539062,1089.0401611328125,843.5750732421875,-416.3677062988281,1097.7225341796875,843.5750732421875,-416.3677062988281,1089.0401611328125,843.5750732421875,-683.9995727539062,1080.88134765625,840.6055908203125,-683.9995727539062,1080.88134765625,840.6055297851562,-416.3677062988281,1089.0401611328125,843.5750732421875,-683.9995727539062,1080.88134765625,840.6055297851562,-416.3677062988281,1089.0401611328125,843.5750732421875,-416.3677062988281,1080.88134765625,840.6055908203125,-683.9995727539062,1074.230224609375,835.0247192382812,-683.9995727539062,1074.230224609375,835.0245971679688,-416.3677062988281,1080.88134765625,840.6055908203125,-683.9995727539062,1074.230224609375,835.0245971679688,-416.3677062988281,1080.88134765625,840.6055297851562,-416.3677062988281,1074.230224609375,835.0247192382812,-683.9995727539062,1069.8890380859375,827.5054931640625,-683.9995727539062,1069.8890380859375,827.50537109375,-416.3677062988281,1074.230224609375,835.0247192382812,-683.9995727539062,1069.8890380859375,827.50537109375,-416.3677062988281,1074.230224609375,835.0245971679688,-416.3677062988281,1069.8890380859375,827.5054931640625,-683.9995727539062,1068.38134765625,818.9550170898438,-683.9995727539062,1068.38134765625,818.9548950195312,-416.3677062988281,1069.8890380859375,827.5054931640625,-683.9995727539062,1068.38134765625,818.9548950195312,-416.3677062988281,1069.8890380859375,827.50537109375,-416.3677062988281,1068.38134765625,818.9550170898438,-683.9995727539062,1069.8890380859375,810.4044799804688,-683.9995727539062,1069.8890380859375,810.4044189453125,-416.3677062988281,1068.38134765625,818.9550170898438,-683.9995727539062,1069.8890380859375,810.4044189453125,-416.3677062988281,1068.38134765625,818.9548950195312,-416.3677062988281,1069.8890380859375,810.4044799804688,-683.9995727539062,1074.230224609375,802.8853149414062,-683.9995727539062,1074.230224609375,802.8853149414062,-416.3677062988281,1069.8890380859375,810.4044799804688,-683.9995727539062,1074.230224609375,802.8853149414062,-416.3677062988281,1069.8890380859375,810.4044189453125,-416.3677062988281,1074.230224609375,802.8853149414062,-683.9995727539062,1080.88134765625,797.3043212890625,-683.9995727539062,1080.88134765625,797.3043212890625,-416.3677062988281,1074.230224609375,802.8853149414062,-683.9995727539062,1080.88134765625,797.3043212890625,-416.3677062988281,1074.230224609375,802.8853149414062,-416.3677062988281,1080.88134765625,797.3043212890625,-683.9995727539062,1089.0401611328125,794.3347778320312,-683.9995727539062,1089.0401611328125,794.334716796875,-416.3677062988281,1080.88134765625,797.3043212890625,-683.9995727539062,1089.0401611328125,794.334716796875,-416.3677062988281,1080.88134765625,797.3043212890625,-416.3677062988281,1089.0401611328125,794.3347778320312,-683.9995727539062,1097.7225341796875,794.3347778320312,-683.9995727539062,1097.7225341796875,794.334716796875,-416.3677062988281,1089.0401611328125,794.3347778320312,-683.9995727539062,1097.7225341796875,794.334716796875,-416.3677062988281,1089.0401611328125,794.334716796875,-416.3677062988281,1097.7225341796875,794.3347778320312,-683.9995727539062,1105.88134765625,797.3043212890625,-683.9995727539062,1105.88134765625,797.3043212890625,-416.3677062988281,1097.7225341796875,794.3347778320312,-683.9995727539062,1105.88134765625,797.3043212890625,-416.3677062988281,1097.7225341796875,794.334716796875,-416.3677062988281,1105.88134765625,797.3043212890625,-683.9995727539062,1112.532470703125,802.8853149414062,-683.9995727539062,1112.532470703125,802.8851928710938,-416.3677062988281,1105.88134765625,797.3043212890625,-683.9995727539062,1112.532470703125,802.8851928710938,-416.3677062988281,1105.88134765625,797.3043212890625,-416.3677062988281,1112.532470703125,802.8853149414062,-683.9995727539062,1116.8736572265625,810.4044189453125,-683.9995727539062,1116.8736572265625,810.4044189453125,-416.3677062988281,1112.532470703125,802.8853149414062,-683.9995727539062,1116.8736572265625,810.4044189453125,-416.3677062988281,1112.532470703125,802.8851928710938,-416.3677062988281,1116.8736572265625,810.4044189453125,-683.9995727539062,1118.38134765625,818.9550170898438,-683.9995727539062,1118.38134765625,818.9548950195312,-416.3677062988281,1116.8736572265625,810.4044189453125,-683.9995727539062,1118.38134765625,818.9548950195312,-416.3677062988281,1116.8736572265625,810.4044189453125,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1116.8736572265625,810.4044189453125,-416.3677062988281,1118.38134765625,818.9548950195312,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1118.38134765625,818.9548950195312,-416.3677062988281,1116.8736572265625,827.50537109375,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1116.8736572265625,827.50537109375,-416.3677062988281,1112.532470703125,835.0245971679688,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1112.532470703125,835.0245971679688,-416.3677062988281,1105.88134765625,840.6055297851562,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1105.88134765625,840.6055297851562,-416.3677062988281,1097.7225341796875,843.5750732421875,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1097.7225341796875,843.5750732421875,-416.3677062988281,1089.0401611328125,843.5750732421875,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1089.0401611328125,843.5750732421875,-416.3677062988281,1080.88134765625,840.6055297851562,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1080.88134765625,840.6055297851562,-416.3677062988281,1074.230224609375,835.0245971679688,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1074.230224609375,835.0245971679688,-416.3677062988281,1069.8890380859375,827.50537109375,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1069.8890380859375,827.50537109375,-416.3677062988281,1068.38134765625,818.9548950195312,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1068.38134765625,818.9548950195312,-416.3677062988281,1069.8890380859375,810.4044189453125,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1069.8890380859375,810.4044189453125,-416.3677062988281,1074.230224609375,802.8853149414062,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1074.230224609375,802.8853149414062,-416.3677062988281,1080.88134765625,797.3043212890625,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1080.88134765625,797.3043212890625,-416.3677062988281,1089.0401611328125,794.334716796875,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1089.0401611328125,794.334716796875,-416.3677062988281,1097.7225341796875,794.334716796875,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1097.7225341796875,794.334716796875,-416.3677062988281,1105.88134765625,797.3043212890625,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1105.88134765625,797.3043212890625,-416.3677062988281,1112.532470703125,802.8851928710938,-416.3677062988281,1093.38134765625,818.9548950195312,-416.3677062988281,1112.532470703125,802.8851928710938,-416.3677062988281,1116.8736572265625,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [1093.38134765625,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466581371704
| }
| }
| },
| {
| "uuid": "B8BC97EE-3C89-4779-B839-E5ED85C437F1",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [1193.38134765625,818.955078125,-1754.5272216796875,1212.532470703125,835.0247802734375,-1754.5272216796875,1216.8736572265625,827.505615234375,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1216.8736572265625,827.505615234375,-1754.5272216796875,1218.38134765625,818.955078125,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1197.7225341796875,843.5753173828125,-1754.5272216796875,1205.88134765625,840.6057739257812,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1205.88134765625,840.6057739257812,-1754.5272216796875,1212.532470703125,835.0247802734375,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1180.88134765625,840.6057739257812,-1754.5272216796875,1189.0401611328125,843.5753173828125,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1189.0401611328125,843.5753173828125,-1754.5272216796875,1197.7225341796875,843.5753173828125,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1169.8890380859375,827.505615234375,-1754.5272216796875,1174.230224609375,835.0247802734375,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1174.230224609375,835.0247802734375,-1754.5272216796875,1180.88134765625,840.6057739257812,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1169.8890380859375,810.4047241210938,-1754.5272216796875,1168.38134765625,818.955078125,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1168.38134765625,818.955078125,-1754.5272216796875,1169.8890380859375,827.505615234375,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1180.88134765625,797.3045043945312,-1754.5272216796875,1174.230224609375,802.8853759765625,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1174.230224609375,802.8853759765625,-1754.5272216796875,1169.8890380859375,810.4047241210938,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1197.7225341796875,794.3350219726562,-1754.5272216796875,1189.0401611328125,794.3350219726562,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1189.0401611328125,794.3350219726562,-1754.5272216796875,1180.88134765625,797.3045043945312,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1212.532470703125,802.8853759765625,-1754.5272216796875,1205.88134765625,797.3045043945312,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1205.88134765625,797.3045043945312,-1754.5272216796875,1197.7225341796875,794.3350219726562,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1218.38134765625,818.955078125,-1754.5272216796875,1216.8736572265625,810.4046020507812,-1754.5272216796875,1193.38134765625,818.955078125,-1754.5272216796875,1216.8736572265625,810.4046020507812,-1754.5272216796875,1212.532470703125,802.8853759765625,-1754.5272216796875,1218.38134765625,818.955078125,-1754.5272216796875,1216.8736572265625,827.505615234375,-1754.5272216796875,1216.8736572265625,827.505615234375,-1486.895263671875,1218.38134765625,818.955078125,-1754.5272216796875,1216.8736572265625,827.505615234375,-1486.895263671875,1218.38134765625,818.955078125,-1486.895263671875,1216.8736572265625,827.505615234375,-1754.5272216796875,1212.532470703125,835.0247802734375,-1754.5272216796875,1212.532470703125,835.0247802734375,-1486.895263671875,1216.8736572265625,827.505615234375,-1754.5272216796875,1212.532470703125,835.0247802734375,-1486.895263671875,1216.8736572265625,827.505615234375,-1486.895263671875,1212.532470703125,835.0247802734375,-1754.5272216796875,1205.88134765625,840.6057739257812,-1754.5272216796875,1205.88134765625,840.605712890625,-1486.895263671875,1212.532470703125,835.0247802734375,-1754.5272216796875,1205.88134765625,840.605712890625,-1486.895263671875,1212.532470703125,835.0247802734375,-1486.895263671875,1205.88134765625,840.6057739257812,-1754.5272216796875,1197.7225341796875,843.5753173828125,-1754.5272216796875,1197.7225341796875,843.5753173828125,-1486.895263671875,1205.88134765625,840.6057739257812,-1754.5272216796875,1197.7225341796875,843.5753173828125,-1486.895263671875,1205.88134765625,840.605712890625,-1486.895263671875,1197.7225341796875,843.5753173828125,-1754.5272216796875,1189.0401611328125,843.5753173828125,-1754.5272216796875,1189.0401611328125,843.5753173828125,-1486.895263671875,1197.7225341796875,843.5753173828125,-1754.5272216796875,1189.0401611328125,843.5753173828125,-1486.895263671875,1197.7225341796875,843.5753173828125,-1486.895263671875,1189.0401611328125,843.5753173828125,-1754.5272216796875,1180.88134765625,840.6057739257812,-1754.5272216796875,1180.88134765625,840.605712890625,-1486.895263671875,1189.0401611328125,843.5753173828125,-1754.5272216796875,1180.88134765625,840.605712890625,-1486.895263671875,1189.0401611328125,843.5753173828125,-1486.895263671875,1180.88134765625,840.6057739257812,-1754.5272216796875,1174.230224609375,835.0247802734375,-1754.5272216796875,1174.230224609375,835.0247802734375,-1486.895263671875,1180.88134765625,840.6057739257812,-1754.5272216796875,1174.230224609375,835.0247802734375,-1486.895263671875,1180.88134765625,840.605712890625,-1486.895263671875,1174.230224609375,835.0247802734375,-1754.5272216796875,1169.8890380859375,827.505615234375,-1754.5272216796875,1169.8890380859375,827.505615234375,-1486.895263671875,1174.230224609375,835.0247802734375,-1754.5272216796875,1169.8890380859375,827.505615234375,-1486.895263671875,1174.230224609375,835.0247802734375,-1486.895263671875,1169.8890380859375,827.505615234375,-1754.5272216796875,1168.38134765625,818.955078125,-1754.5272216796875,1168.38134765625,818.955078125,-1486.895263671875,1169.8890380859375,827.505615234375,-1754.5272216796875,1168.38134765625,818.955078125,-1486.895263671875,1169.8890380859375,827.505615234375,-1486.895263671875,1168.38134765625,818.955078125,-1754.5272216796875,1169.8890380859375,810.4047241210938,-1754.5272216796875,1169.8890380859375,810.4046020507812,-1486.895263671875,1168.38134765625,818.955078125,-1754.5272216796875,1169.8890380859375,810.4046020507812,-1486.895263671875,1168.38134765625,818.955078125,-1486.895263671875,1169.8890380859375,810.4047241210938,-1754.5272216796875,1174.230224609375,802.8853759765625,-1754.5272216796875,1174.230224609375,802.8853759765625,-1486.895263671875,1169.8890380859375,810.4047241210938,-1754.5272216796875,1174.230224609375,802.8853759765625,-1486.895263671875,1169.8890380859375,810.4046020507812,-1486.895263671875,1174.230224609375,802.8853759765625,-1754.5272216796875,1180.88134765625,797.3045043945312,-1754.5272216796875,1180.88134765625,797.3043823242188,-1486.895263671875,1174.230224609375,802.8853759765625,-1754.5272216796875,1180.88134765625,797.3043823242188,-1486.895263671875,1174.230224609375,802.8853759765625,-1486.895263671875,1180.88134765625,797.3045043945312,-1754.5272216796875,1189.0401611328125,794.3350219726562,-1754.5272216796875,1189.0401611328125,794.3348999023438,-1486.895263671875,1180.88134765625,797.3045043945312,-1754.5272216796875,1189.0401611328125,794.3348999023438,-1486.895263671875,1180.88134765625,797.3043823242188,-1486.895263671875,1189.0401611328125,794.3350219726562,-1754.5272216796875,1197.7225341796875,794.3350219726562,-1754.5272216796875,1197.7225341796875,794.3348999023438,-1486.895263671875,1189.0401611328125,794.3350219726562,-1754.5272216796875,1197.7225341796875,794.3348999023438,-1486.895263671875,1189.0401611328125,794.3348999023438,-1486.895263671875,1197.7225341796875,794.3350219726562,-1754.5272216796875,1205.88134765625,797.3045043945312,-1754.5272216796875,1205.88134765625,797.3043823242188,-1486.895263671875,1197.7225341796875,794.3350219726562,-1754.5272216796875,1205.88134765625,797.3043823242188,-1486.895263671875,1197.7225341796875,794.3348999023438,-1486.895263671875,1205.88134765625,797.3045043945312,-1754.5272216796875,1212.532470703125,802.8853759765625,-1754.5272216796875,1212.532470703125,802.8853759765625,-1486.895263671875,1205.88134765625,797.3045043945312,-1754.5272216796875,1212.532470703125,802.8853759765625,-1486.895263671875,1205.88134765625,797.3043823242188,-1486.895263671875,1212.532470703125,802.8853759765625,-1754.5272216796875,1216.8736572265625,810.4046020507812,-1754.5272216796875,1216.8736572265625,810.4046020507812,-1486.895263671875,1212.532470703125,802.8853759765625,-1754.5272216796875,1216.8736572265625,810.4046020507812,-1486.895263671875,1212.532470703125,802.8853759765625,-1486.895263671875,1216.8736572265625,810.4046020507812,-1754.5272216796875,1218.38134765625,818.955078125,-1754.5272216796875,1218.38134765625,818.955078125,-1486.895263671875,1216.8736572265625,810.4046020507812,-1754.5272216796875,1218.38134765625,818.955078125,-1486.895263671875,1216.8736572265625,810.4046020507812,-1486.895263671875,1218.38134765625,818.955078125,-1486.895263671875,1216.8736572265625,827.505615234375,-1486.895263671875,1216.8736572265625,827.505615234375,-1219.263427734375,1218.38134765625,818.955078125,-1486.895263671875,1216.8736572265625,827.505615234375,-1219.263427734375,1218.38134765625,818.955078125,-1219.263427734375,1216.8736572265625,827.505615234375,-1486.895263671875,1212.532470703125,835.0247802734375,-1486.895263671875,1212.532470703125,835.0247192382812,-1219.263427734375,1216.8736572265625,827.505615234375,-1486.895263671875,1212.532470703125,835.0247192382812,-1219.263427734375,1216.8736572265625,827.505615234375,-1219.263427734375,1212.532470703125,835.0247802734375,-1486.895263671875,1205.88134765625,840.605712890625,-1486.895263671875,1205.88134765625,840.605712890625,-1219.263427734375,1212.532470703125,835.0247802734375,-1486.895263671875,1205.88134765625,840.605712890625,-1219.263427734375,1212.532470703125,835.0247192382812,-1219.263427734375,1205.88134765625,840.605712890625,-1486.895263671875,1197.7225341796875,843.5753173828125,-1486.895263671875,1197.7225341796875,843.5753173828125,-1219.263427734375,1205.88134765625,840.605712890625,-1486.895263671875,1197.7225341796875,843.5753173828125,-1219.263427734375,1205.88134765625,840.605712890625,-1219.263427734375,1197.7225341796875,843.5753173828125,-1486.895263671875,1189.0401611328125,843.5753173828125,-1486.895263671875,1189.0401611328125,843.5753173828125,-1219.263427734375,1197.7225341796875,843.5753173828125,-1486.895263671875,1189.0401611328125,843.5753173828125,-1219.263427734375,1197.7225341796875,843.5753173828125,-1219.263427734375,1189.0401611328125,843.5753173828125,-1486.895263671875,1180.88134765625,840.605712890625,-1486.895263671875,1180.88134765625,840.605712890625,-1219.263427734375,1189.0401611328125,843.5753173828125,-1486.895263671875,1180.88134765625,840.605712890625,-1219.263427734375,1189.0401611328125,843.5753173828125,-1219.263427734375,1180.88134765625,840.605712890625,-1486.895263671875,1174.230224609375,835.0247802734375,-1486.895263671875,1174.230224609375,835.0247192382812,-1219.263427734375,1180.88134765625,840.605712890625,-1486.895263671875,1174.230224609375,835.0247192382812,-1219.263427734375,1180.88134765625,840.605712890625,-1219.263427734375,1174.230224609375,835.0247802734375,-1486.895263671875,1169.8890380859375,827.505615234375,-1486.895263671875,1169.8890380859375,827.505615234375,-1219.263427734375,1174.230224609375,835.0247802734375,-1486.895263671875,1169.8890380859375,827.505615234375,-1219.263427734375,1174.230224609375,835.0247192382812,-1219.263427734375,1169.8890380859375,827.505615234375,-1486.895263671875,1168.38134765625,818.955078125,-1486.895263671875,1168.38134765625,818.955078125,-1219.263427734375,1169.8890380859375,827.505615234375,-1486.895263671875,1168.38134765625,818.955078125,-1219.263427734375,1169.8890380859375,827.505615234375,-1219.263427734375,1168.38134765625,818.955078125,-1486.895263671875,1169.8890380859375,810.4046020507812,-1486.895263671875,1169.8890380859375,810.4044799804688,-1219.263427734375,1168.38134765625,818.955078125,-1486.895263671875,1169.8890380859375,810.4044799804688,-1219.263427734375,1168.38134765625,818.955078125,-1219.263427734375,1169.8890380859375,810.4046020507812,-1486.895263671875,1174.230224609375,802.8853759765625,-1486.895263671875,1174.230224609375,802.8853759765625,-1219.263427734375,1169.8890380859375,810.4046020507812,-1486.895263671875,1174.230224609375,802.8853759765625,-1219.263427734375,1169.8890380859375,810.4044799804688,-1219.263427734375,1174.230224609375,802.8853759765625,-1486.895263671875,1180.88134765625,797.3043823242188,-1486.895263671875,1180.88134765625,797.3043823242188,-1219.263427734375,1174.230224609375,802.8853759765625,-1486.895263671875,1180.88134765625,797.3043823242188,-1219.263427734375,1174.230224609375,802.8853759765625,-1219.263427734375,1180.88134765625,797.3043823242188,-1486.895263671875,1189.0401611328125,794.3348999023438,-1486.895263671875,1189.0401611328125,794.3347778320312,-1219.263427734375,1180.88134765625,797.3043823242188,-1486.895263671875,1189.0401611328125,794.3347778320312,-1219.263427734375,1180.88134765625,797.3043823242188,-1219.263427734375,1189.0401611328125,794.3348999023438,-1486.895263671875,1197.7225341796875,794.3348999023438,-1486.895263671875,1197.7225341796875,794.3347778320312,-1219.263427734375,1189.0401611328125,794.3348999023438,-1486.895263671875,1197.7225341796875,794.3347778320312,-1219.263427734375,1189.0401611328125,794.3347778320312,-1219.263427734375,1197.7225341796875,794.3348999023438,-1486.895263671875,1205.88134765625,797.3043823242188,-1486.895263671875,1205.88134765625,797.3043823242188,-1219.263427734375,1197.7225341796875,794.3348999023438,-1486.895263671875,1205.88134765625,797.3043823242188,-1219.263427734375,1197.7225341796875,794.3347778320312,-1219.263427734375,1205.88134765625,797.3043823242188,-1486.895263671875,1212.532470703125,802.8853759765625,-1486.895263671875,1212.532470703125,802.8853759765625,-1219.263427734375,1205.88134765625,797.3043823242188,-1486.895263671875,1212.532470703125,802.8853759765625,-1219.263427734375,1205.88134765625,797.3043823242188,-1219.263427734375,1212.532470703125,802.8853759765625,-1486.895263671875,1216.8736572265625,810.4046020507812,-1486.895263671875,1216.8736572265625,810.4044799804688,-1219.263427734375,1212.532470703125,802.8853759765625,-1486.895263671875,1216.8736572265625,810.4044799804688,-1219.263427734375,1212.532470703125,802.8853759765625,-1219.263427734375,1216.8736572265625,810.4046020507812,-1486.895263671875,1218.38134765625,818.955078125,-1486.895263671875,1218.38134765625,818.955078125,-1219.263427734375,1216.8736572265625,810.4046020507812,-1486.895263671875,1218.38134765625,818.955078125,-1219.263427734375,1216.8736572265625,810.4044799804688,-1219.263427734375,1218.38134765625,818.955078125,-1219.263427734375,1216.8736572265625,827.505615234375,-1219.263427734375,1216.8736572265625,827.5054931640625,-951.6314697265625,1218.38134765625,818.955078125,-1219.263427734375,1216.8736572265625,827.5054931640625,-951.6314697265625,1218.38134765625,818.9550170898438,-951.6314697265625,1216.8736572265625,827.505615234375,-1219.263427734375,1212.532470703125,835.0247192382812,-1219.263427734375,1212.532470703125,835.0247192382812,-951.6314697265625,1216.8736572265625,827.505615234375,-1219.263427734375,1212.532470703125,835.0247192382812,-951.6314697265625,1216.8736572265625,827.5054931640625,-951.6314697265625,1212.532470703125,835.0247192382812,-1219.263427734375,1205.88134765625,840.605712890625,-1219.263427734375,1205.88134765625,840.605712890625,-951.6314697265625,1212.532470703125,835.0247192382812,-1219.263427734375,1205.88134765625,840.605712890625,-951.6314697265625,1212.532470703125,835.0247192382812,-951.6314697265625,1205.88134765625,840.605712890625,-1219.263427734375,1197.7225341796875,843.5753173828125,-1219.263427734375,1197.7225341796875,843.5751953125,-951.6314697265625,1205.88134765625,840.605712890625,-1219.263427734375,1197.7225341796875,843.5751953125,-951.6314697265625,1205.88134765625,840.605712890625,-951.6314697265625,1197.7225341796875,843.5753173828125,-1219.263427734375,1189.0401611328125,843.5753173828125,-1219.263427734375,1189.0401611328125,843.5751953125,-951.6314697265625,1197.7225341796875,843.5753173828125,-1219.263427734375,1189.0401611328125,843.5751953125,-951.6314697265625,1197.7225341796875,843.5751953125,-951.6314697265625,1189.0401611328125,843.5753173828125,-1219.263427734375,1180.88134765625,840.605712890625,-1219.263427734375,1180.88134765625,840.605712890625,-951.6314697265625,1189.0401611328125,843.5753173828125,-1219.263427734375,1180.88134765625,840.605712890625,-951.6314697265625,1189.0401611328125,843.5751953125,-951.6314697265625,1180.88134765625,840.605712890625,-1219.263427734375,1174.230224609375,835.0247192382812,-1219.263427734375,1174.230224609375,835.0247192382812,-951.6314697265625,1180.88134765625,840.605712890625,-1219.263427734375,1174.230224609375,835.0247192382812,-951.6314697265625,1180.88134765625,840.605712890625,-951.6314697265625,1174.230224609375,835.0247192382812,-1219.263427734375,1169.8890380859375,827.505615234375,-1219.263427734375,1169.8890380859375,827.5054931640625,-951.6314697265625,1174.230224609375,835.0247192382812,-1219.263427734375,1169.8890380859375,827.5054931640625,-951.6314697265625,1174.230224609375,835.0247192382812,-951.6314697265625,1169.8890380859375,827.505615234375,-1219.263427734375,1168.38134765625,818.955078125,-1219.263427734375,1168.38134765625,818.9550170898438,-951.6314697265625,1169.8890380859375,827.505615234375,-1219.263427734375,1168.38134765625,818.9550170898438,-951.6314697265625,1169.8890380859375,827.5054931640625,-951.6314697265625,1168.38134765625,818.955078125,-1219.263427734375,1169.8890380859375,810.4044799804688,-1219.263427734375,1169.8890380859375,810.4044799804688,-951.6314697265625,1168.38134765625,818.955078125,-1219.263427734375,1169.8890380859375,810.4044799804688,-951.6314697265625,1168.38134765625,818.9550170898438,-951.6314697265625,1169.8890380859375,810.4044799804688,-1219.263427734375,1174.230224609375,802.8853759765625,-1219.263427734375,1174.230224609375,802.8853149414062,-951.6314697265625,1169.8890380859375,810.4044799804688,-1219.263427734375,1174.230224609375,802.8853149414062,-951.6314697265625,1169.8890380859375,810.4044799804688,-951.6314697265625,1174.230224609375,802.8853759765625,-1219.263427734375,1180.88134765625,797.3043823242188,-1219.263427734375,1180.88134765625,797.3043823242188,-951.6314697265625,1174.230224609375,802.8853759765625,-1219.263427734375,1180.88134765625,797.3043823242188,-951.6314697265625,1174.230224609375,802.8853149414062,-951.6314697265625,1180.88134765625,797.3043823242188,-1219.263427734375,1189.0401611328125,794.3347778320312,-1219.263427734375,1189.0401611328125,794.3347778320312,-951.6314697265625,1180.88134765625,797.3043823242188,-1219.263427734375,1189.0401611328125,794.3347778320312,-951.6314697265625,1180.88134765625,797.3043823242188,-951.6314697265625,1189.0401611328125,794.3347778320312,-1219.263427734375,1197.7225341796875,794.3347778320312,-1219.263427734375,1197.7225341796875,794.3347778320312,-951.6314697265625,1189.0401611328125,794.3347778320312,-1219.263427734375,1197.7225341796875,794.3347778320312,-951.6314697265625,1189.0401611328125,794.3347778320312,-951.6314697265625,1197.7225341796875,794.3347778320312,-1219.263427734375,1205.88134765625,797.3043823242188,-1219.263427734375,1205.88134765625,797.3043823242188,-951.6314697265625,1197.7225341796875,794.3347778320312,-1219.263427734375,1205.88134765625,797.3043823242188,-951.6314697265625,1197.7225341796875,794.3347778320312,-951.6314697265625,1205.88134765625,797.3043823242188,-1219.263427734375,1212.532470703125,802.8853759765625,-1219.263427734375,1212.532470703125,802.8853149414062,-951.6314697265625,1205.88134765625,797.3043823242188,-1219.263427734375,1212.532470703125,802.8853149414062,-951.6314697265625,1205.88134765625,797.3043823242188,-951.6314697265625,1212.532470703125,802.8853759765625,-1219.263427734375,1216.8736572265625,810.4044799804688,-1219.263427734375,1216.8736572265625,810.4044799804688,-951.6314697265625,1212.532470703125,802.8853759765625,-1219.263427734375,1216.8736572265625,810.4044799804688,-951.6314697265625,1212.532470703125,802.8853149414062,-951.6314697265625,1216.8736572265625,810.4044799804688,-1219.263427734375,1218.38134765625,818.955078125,-1219.263427734375,1218.38134765625,818.9550170898438,-951.6314697265625,1216.8736572265625,810.4044799804688,-1219.263427734375,1218.38134765625,818.9550170898438,-951.6314697265625,1216.8736572265625,810.4044799804688,-951.6314697265625,1218.38134765625,818.9550170898438,-951.6314697265625,1216.8736572265625,827.5054931640625,-951.6314697265625,1216.8736572265625,827.5054931640625,-683.9995727539062,1218.38134765625,818.9550170898438,-951.6314697265625,1216.8736572265625,827.5054931640625,-683.9995727539062,1218.38134765625,818.9550170898438,-683.9995727539062,1216.8736572265625,827.5054931640625,-951.6314697265625,1212.532470703125,835.0247192382812,-951.6314697265625,1212.532470703125,835.0247192382812,-683.9995727539062,1216.8736572265625,827.5054931640625,-951.6314697265625,1212.532470703125,835.0247192382812,-683.9995727539062,1216.8736572265625,827.5054931640625,-683.9995727539062,1212.532470703125,835.0247192382812,-951.6314697265625,1205.88134765625,840.605712890625,-951.6314697265625,1205.88134765625,840.6055908203125,-683.9995727539062,1212.532470703125,835.0247192382812,-951.6314697265625,1205.88134765625,840.6055908203125,-683.9995727539062,1212.532470703125,835.0247192382812,-683.9995727539062,1205.88134765625,840.605712890625,-951.6314697265625,1197.7225341796875,843.5751953125,-951.6314697265625,1197.7225341796875,843.5750732421875,-683.9995727539062,1205.88134765625,840.605712890625,-951.6314697265625,1197.7225341796875,843.5750732421875,-683.9995727539062,1205.88134765625,840.6055908203125,-683.9995727539062,1197.7225341796875,843.5751953125,-951.6314697265625,1189.0401611328125,843.5751953125,-951.6314697265625,1189.0401611328125,843.5750732421875,-683.9995727539062,1197.7225341796875,843.5751953125,-951.6314697265625,1189.0401611328125,843.5750732421875,-683.9995727539062,1197.7225341796875,843.5750732421875,-683.9995727539062,1189.0401611328125,843.5751953125,-951.6314697265625,1180.88134765625,840.605712890625,-951.6314697265625,1180.88134765625,840.6055908203125,-683.9995727539062,1189.0401611328125,843.5751953125,-951.6314697265625,1180.88134765625,840.6055908203125,-683.9995727539062,1189.0401611328125,843.5750732421875,-683.9995727539062,1180.88134765625,840.605712890625,-951.6314697265625,1174.230224609375,835.0247192382812,-951.6314697265625,1174.230224609375,835.0247192382812,-683.9995727539062,1180.88134765625,840.605712890625,-951.6314697265625,1174.230224609375,835.0247192382812,-683.9995727539062,1180.88134765625,840.6055908203125,-683.9995727539062,1174.230224609375,835.0247192382812,-951.6314697265625,1169.8890380859375,827.5054931640625,-951.6314697265625,1169.8890380859375,827.5054931640625,-683.9995727539062,1174.230224609375,835.0247192382812,-951.6314697265625,1169.8890380859375,827.5054931640625,-683.9995727539062,1174.230224609375,835.0247192382812,-683.9995727539062,1169.8890380859375,827.5054931640625,-951.6314697265625,1168.38134765625,818.9550170898438,-951.6314697265625,1168.38134765625,818.9550170898438,-683.9995727539062,1169.8890380859375,827.5054931640625,-951.6314697265625,1168.38134765625,818.9550170898438,-683.9995727539062,1169.8890380859375,827.5054931640625,-683.9995727539062,1168.38134765625,818.9550170898438,-951.6314697265625,1169.8890380859375,810.4044799804688,-951.6314697265625,1169.8890380859375,810.4044799804688,-683.9995727539062,1168.38134765625,818.9550170898438,-951.6314697265625,1169.8890380859375,810.4044799804688,-683.9995727539062,1168.38134765625,818.9550170898438,-683.9995727539062,1169.8890380859375,810.4044799804688,-951.6314697265625,1174.230224609375,802.8853149414062,-951.6314697265625,1174.230224609375,802.8853149414062,-683.9995727539062,1169.8890380859375,810.4044799804688,-951.6314697265625,1174.230224609375,802.8853149414062,-683.9995727539062,1169.8890380859375,810.4044799804688,-683.9995727539062,1174.230224609375,802.8853149414062,-951.6314697265625,1180.88134765625,797.3043823242188,-951.6314697265625,1180.88134765625,797.3043212890625,-683.9995727539062,1174.230224609375,802.8853149414062,-951.6314697265625,1180.88134765625,797.3043212890625,-683.9995727539062,1174.230224609375,802.8853149414062,-683.9995727539062,1180.88134765625,797.3043823242188,-951.6314697265625,1189.0401611328125,794.3347778320312,-951.6314697265625,1189.0401611328125,794.3347778320312,-683.9995727539062,1180.88134765625,797.3043823242188,-951.6314697265625,1189.0401611328125,794.3347778320312,-683.9995727539062,1180.88134765625,797.3043212890625,-683.9995727539062,1189.0401611328125,794.3347778320312,-951.6314697265625,1197.7225341796875,794.3347778320312,-951.6314697265625,1197.7225341796875,794.3347778320312,-683.9995727539062,1189.0401611328125,794.3347778320312,-951.6314697265625,1197.7225341796875,794.3347778320312,-683.9995727539062,1189.0401611328125,794.3347778320312,-683.9995727539062,1197.7225341796875,794.3347778320312,-951.6314697265625,1205.88134765625,797.3043823242188,-951.6314697265625,1205.88134765625,797.3043212890625,-683.9995727539062,1197.7225341796875,794.3347778320312,-951.6314697265625,1205.88134765625,797.3043212890625,-683.9995727539062,1197.7225341796875,794.3347778320312,-683.9995727539062,1205.88134765625,797.3043823242188,-951.6314697265625,1212.532470703125,802.8853149414062,-951.6314697265625,1212.532470703125,802.8853149414062,-683.9995727539062,1205.88134765625,797.3043823242188,-951.6314697265625,1212.532470703125,802.8853149414062,-683.9995727539062,1205.88134765625,797.3043212890625,-683.9995727539062,1212.532470703125,802.8853149414062,-951.6314697265625,1216.8736572265625,810.4044799804688,-951.6314697265625,1216.8736572265625,810.4044189453125,-683.9995727539062,1212.532470703125,802.8853149414062,-951.6314697265625,1216.8736572265625,810.4044189453125,-683.9995727539062,1212.532470703125,802.8853149414062,-683.9995727539062,1216.8736572265625,810.4044799804688,-951.6314697265625,1218.38134765625,818.9550170898438,-951.6314697265625,1218.38134765625,818.9550170898438,-683.9995727539062,1216.8736572265625,810.4044799804688,-951.6314697265625,1218.38134765625,818.9550170898438,-683.9995727539062,1216.8736572265625,810.4044189453125,-683.9995727539062,1218.38134765625,818.9550170898438,-683.9995727539062,1216.8736572265625,827.5054931640625,-683.9995727539062,1216.8736572265625,827.50537109375,-416.3677062988281,1218.38134765625,818.9550170898438,-683.9995727539062,1216.8736572265625,827.50537109375,-416.3677062988281,1218.38134765625,818.9548950195312,-416.3677062988281,1216.8736572265625,827.5054931640625,-683.9995727539062,1212.532470703125,835.0247192382812,-683.9995727539062,1212.532470703125,835.0245971679688,-416.3677062988281,1216.8736572265625,827.5054931640625,-683.9995727539062,1212.532470703125,835.0245971679688,-416.3677062988281,1216.8736572265625,827.50537109375,-416.3677062988281,1212.532470703125,835.0247192382812,-683.9995727539062,1205.88134765625,840.6055908203125,-683.9995727539062,1205.88134765625,840.6055297851562,-416.3677062988281,1212.532470703125,835.0247192382812,-683.9995727539062,1205.88134765625,840.6055297851562,-416.3677062988281,1212.532470703125,835.0245971679688,-416.3677062988281,1205.88134765625,840.6055908203125,-683.9995727539062,1197.7225341796875,843.5750732421875,-683.9995727539062,1197.7225341796875,843.5750732421875,-416.3677062988281,1205.88134765625,840.6055908203125,-683.9995727539062,1197.7225341796875,843.5750732421875,-416.3677062988281,1205.88134765625,840.6055297851562,-416.3677062988281,1197.7225341796875,843.5750732421875,-683.9995727539062,1189.0401611328125,843.5750732421875,-683.9995727539062,1189.0401611328125,843.5750732421875,-416.3677062988281,1197.7225341796875,843.5750732421875,-683.9995727539062,1189.0401611328125,843.5750732421875,-416.3677062988281,1197.7225341796875,843.5750732421875,-416.3677062988281,1189.0401611328125,843.5750732421875,-683.9995727539062,1180.88134765625,840.6055908203125,-683.9995727539062,1180.88134765625,840.6055297851562,-416.3677062988281,1189.0401611328125,843.5750732421875,-683.9995727539062,1180.88134765625,840.6055297851562,-416.3677062988281,1189.0401611328125,843.5750732421875,-416.3677062988281,1180.88134765625,840.6055908203125,-683.9995727539062,1174.230224609375,835.0247192382812,-683.9995727539062,1174.230224609375,835.0245971679688,-416.3677062988281,1180.88134765625,840.6055908203125,-683.9995727539062,1174.230224609375,835.0245971679688,-416.3677062988281,1180.88134765625,840.6055297851562,-416.3677062988281,1174.230224609375,835.0247192382812,-683.9995727539062,1169.8890380859375,827.5054931640625,-683.9995727539062,1169.8890380859375,827.50537109375,-416.3677062988281,1174.230224609375,835.0247192382812,-683.9995727539062,1169.8890380859375,827.50537109375,-416.3677062988281,1174.230224609375,835.0245971679688,-416.3677062988281,1169.8890380859375,827.5054931640625,-683.9995727539062,1168.38134765625,818.9550170898438,-683.9995727539062,1168.38134765625,818.9548950195312,-416.3677062988281,1169.8890380859375,827.5054931640625,-683.9995727539062,1168.38134765625,818.9548950195312,-416.3677062988281,1169.8890380859375,827.50537109375,-416.3677062988281,1168.38134765625,818.9550170898438,-683.9995727539062,1169.8890380859375,810.4044799804688,-683.9995727539062,1169.8890380859375,810.4044189453125,-416.3677062988281,1168.38134765625,818.9550170898438,-683.9995727539062,1169.8890380859375,810.4044189453125,-416.3677062988281,1168.38134765625,818.9548950195312,-416.3677062988281,1169.8890380859375,810.4044799804688,-683.9995727539062,1174.230224609375,802.8853149414062,-683.9995727539062,1174.230224609375,802.8853149414062,-416.3677062988281,1169.8890380859375,810.4044799804688,-683.9995727539062,1174.230224609375,802.8853149414062,-416.3677062988281,1169.8890380859375,810.4044189453125,-416.3677062988281,1174.230224609375,802.8853149414062,-683.9995727539062,1180.88134765625,797.3043212890625,-683.9995727539062,1180.88134765625,797.3043212890625,-416.3677062988281,1174.230224609375,802.8853149414062,-683.9995727539062,1180.88134765625,797.3043212890625,-416.3677062988281,1174.230224609375,802.8853149414062,-416.3677062988281,1180.88134765625,797.3043212890625,-683.9995727539062,1189.0401611328125,794.3347778320312,-683.9995727539062,1189.0401611328125,794.334716796875,-416.3677062988281,1180.88134765625,797.3043212890625,-683.9995727539062,1189.0401611328125,794.334716796875,-416.3677062988281,1180.88134765625,797.3043212890625,-416.3677062988281,1189.0401611328125,794.3347778320312,-683.9995727539062,1197.7225341796875,794.3347778320312,-683.9995727539062,1197.7225341796875,794.334716796875,-416.3677062988281,1189.0401611328125,794.3347778320312,-683.9995727539062,1197.7225341796875,794.334716796875,-416.3677062988281,1189.0401611328125,794.334716796875,-416.3677062988281,1197.7225341796875,794.3347778320312,-683.9995727539062,1205.88134765625,797.3043212890625,-683.9995727539062,1205.88134765625,797.3043212890625,-416.3677062988281,1197.7225341796875,794.3347778320312,-683.9995727539062,1205.88134765625,797.3043212890625,-416.3677062988281,1197.7225341796875,794.334716796875,-416.3677062988281,1205.88134765625,797.3043212890625,-683.9995727539062,1212.532470703125,802.8853149414062,-683.9995727539062,1212.532470703125,802.8851928710938,-416.3677062988281,1205.88134765625,797.3043212890625,-683.9995727539062,1212.532470703125,802.8851928710938,-416.3677062988281,1205.88134765625,797.3043212890625,-416.3677062988281,1212.532470703125,802.8853149414062,-683.9995727539062,1216.8736572265625,810.4044189453125,-683.9995727539062,1216.8736572265625,810.4044189453125,-416.3677062988281,1212.532470703125,802.8853149414062,-683.9995727539062,1216.8736572265625,810.4044189453125,-416.3677062988281,1212.532470703125,802.8851928710938,-416.3677062988281,1216.8736572265625,810.4044189453125,-683.9995727539062,1218.38134765625,818.9550170898438,-683.9995727539062,1218.38134765625,818.9548950195312,-416.3677062988281,1216.8736572265625,810.4044189453125,-683.9995727539062,1218.38134765625,818.9548950195312,-416.3677062988281,1216.8736572265625,810.4044189453125,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1216.8736572265625,810.4044189453125,-416.3677062988281,1218.38134765625,818.9548950195312,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1218.38134765625,818.9548950195312,-416.3677062988281,1216.8736572265625,827.50537109375,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1216.8736572265625,827.50537109375,-416.3677062988281,1212.532470703125,835.0245971679688,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1212.532470703125,835.0245971679688,-416.3677062988281,1205.88134765625,840.6055297851562,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1205.88134765625,840.6055297851562,-416.3677062988281,1197.7225341796875,843.5750732421875,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1197.7225341796875,843.5750732421875,-416.3677062988281,1189.0401611328125,843.5750732421875,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1189.0401611328125,843.5750732421875,-416.3677062988281,1180.88134765625,840.6055297851562,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1180.88134765625,840.6055297851562,-416.3677062988281,1174.230224609375,835.0245971679688,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1174.230224609375,835.0245971679688,-416.3677062988281,1169.8890380859375,827.50537109375,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1169.8890380859375,827.50537109375,-416.3677062988281,1168.38134765625,818.9548950195312,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1168.38134765625,818.9548950195312,-416.3677062988281,1169.8890380859375,810.4044189453125,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1169.8890380859375,810.4044189453125,-416.3677062988281,1174.230224609375,802.8853149414062,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1174.230224609375,802.8853149414062,-416.3677062988281,1180.88134765625,797.3043212890625,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1180.88134765625,797.3043212890625,-416.3677062988281,1189.0401611328125,794.334716796875,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1189.0401611328125,794.334716796875,-416.3677062988281,1197.7225341796875,794.334716796875,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1197.7225341796875,794.334716796875,-416.3677062988281,1205.88134765625,797.3043212890625,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1205.88134765625,797.3043212890625,-416.3677062988281,1212.532470703125,802.8851928710938,-416.3677062988281,1193.38134765625,818.9548950195312,-416.3677062988281,1212.532470703125,802.8851928710938,-416.3677062988281,1216.8736572265625,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [1193.38134765625,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466581371704
| }
| }
| },
| {
| "uuid": "6B6B5B27-6A40-4CDC-A98B-46BA3F11FDF7",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [1293.38134765625,818.955078125,-1754.5272216796875,1312.532470703125,835.0247802734375,-1754.5272216796875,1316.8736572265625,827.505615234375,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1316.8736572265625,827.505615234375,-1754.5272216796875,1318.38134765625,818.955078125,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1297.7225341796875,843.5753173828125,-1754.5272216796875,1305.88134765625,840.6057739257812,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1305.88134765625,840.6057739257812,-1754.5272216796875,1312.532470703125,835.0247802734375,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1280.88134765625,840.6057739257812,-1754.5272216796875,1289.0401611328125,843.5753173828125,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1289.0401611328125,843.5753173828125,-1754.5272216796875,1297.7225341796875,843.5753173828125,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1269.8890380859375,827.505615234375,-1754.5272216796875,1274.230224609375,835.0247802734375,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1274.230224609375,835.0247802734375,-1754.5272216796875,1280.88134765625,840.6057739257812,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1269.8890380859375,810.4047241210938,-1754.5272216796875,1268.38134765625,818.955078125,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1268.38134765625,818.955078125,-1754.5272216796875,1269.8890380859375,827.505615234375,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1280.88134765625,797.3045043945312,-1754.5272216796875,1274.230224609375,802.8853759765625,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1274.230224609375,802.8853759765625,-1754.5272216796875,1269.8890380859375,810.4047241210938,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1297.7225341796875,794.3350219726562,-1754.5272216796875,1289.0401611328125,794.3350219726562,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1289.0401611328125,794.3350219726562,-1754.5272216796875,1280.88134765625,797.3045043945312,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1312.532470703125,802.8853759765625,-1754.5272216796875,1305.88134765625,797.3045043945312,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1305.88134765625,797.3045043945312,-1754.5272216796875,1297.7225341796875,794.3350219726562,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1318.38134765625,818.955078125,-1754.5272216796875,1316.8736572265625,810.4046020507812,-1754.5272216796875,1293.38134765625,818.955078125,-1754.5272216796875,1316.8736572265625,810.4046020507812,-1754.5272216796875,1312.532470703125,802.8853759765625,-1754.5272216796875,1318.38134765625,818.955078125,-1754.5272216796875,1316.8736572265625,827.505615234375,-1754.5272216796875,1316.8736572265625,827.505615234375,-1486.895263671875,1318.38134765625,818.955078125,-1754.5272216796875,1316.8736572265625,827.505615234375,-1486.895263671875,1318.38134765625,818.955078125,-1486.895263671875,1316.8736572265625,827.505615234375,-1754.5272216796875,1312.532470703125,835.0247802734375,-1754.5272216796875,1312.532470703125,835.0247802734375,-1486.895263671875,1316.8736572265625,827.505615234375,-1754.5272216796875,1312.532470703125,835.0247802734375,-1486.895263671875,1316.8736572265625,827.505615234375,-1486.895263671875,1312.532470703125,835.0247802734375,-1754.5272216796875,1305.88134765625,840.6057739257812,-1754.5272216796875,1305.88134765625,840.605712890625,-1486.895263671875,1312.532470703125,835.0247802734375,-1754.5272216796875,1305.88134765625,840.605712890625,-1486.895263671875,1312.532470703125,835.0247802734375,-1486.895263671875,1305.88134765625,840.6057739257812,-1754.5272216796875,1297.7225341796875,843.5753173828125,-1754.5272216796875,1297.7225341796875,843.5753173828125,-1486.895263671875,1305.88134765625,840.6057739257812,-1754.5272216796875,1297.7225341796875,843.5753173828125,-1486.895263671875,1305.88134765625,840.605712890625,-1486.895263671875,1297.7225341796875,843.5753173828125,-1754.5272216796875,1289.0401611328125,843.5753173828125,-1754.5272216796875,1289.0401611328125,843.5753173828125,-1486.895263671875,1297.7225341796875,843.5753173828125,-1754.5272216796875,1289.0401611328125,843.5753173828125,-1486.895263671875,1297.7225341796875,843.5753173828125,-1486.895263671875,1289.0401611328125,843.5753173828125,-1754.5272216796875,1280.88134765625,840.6057739257812,-1754.5272216796875,1280.88134765625,840.605712890625,-1486.895263671875,1289.0401611328125,843.5753173828125,-1754.5272216796875,1280.88134765625,840.605712890625,-1486.895263671875,1289.0401611328125,843.5753173828125,-1486.895263671875,1280.88134765625,840.6057739257812,-1754.5272216796875,1274.230224609375,835.0247802734375,-1754.5272216796875,1274.230224609375,835.0247802734375,-1486.895263671875,1280.88134765625,840.6057739257812,-1754.5272216796875,1274.230224609375,835.0247802734375,-1486.895263671875,1280.88134765625,840.605712890625,-1486.895263671875,1274.230224609375,835.0247802734375,-1754.5272216796875,1269.8890380859375,827.505615234375,-1754.5272216796875,1269.8890380859375,827.505615234375,-1486.895263671875,1274.230224609375,835.0247802734375,-1754.5272216796875,1269.8890380859375,827.505615234375,-1486.895263671875,1274.230224609375,835.0247802734375,-1486.895263671875,1269.8890380859375,827.505615234375,-1754.5272216796875,1268.38134765625,818.955078125,-1754.5272216796875,1268.38134765625,818.955078125,-1486.895263671875,1269.8890380859375,827.505615234375,-1754.5272216796875,1268.38134765625,818.955078125,-1486.895263671875,1269.8890380859375,827.505615234375,-1486.895263671875,1268.38134765625,818.955078125,-1754.5272216796875,1269.8890380859375,810.4047241210938,-1754.5272216796875,1269.8890380859375,810.4046020507812,-1486.895263671875,1268.38134765625,818.955078125,-1754.5272216796875,1269.8890380859375,810.4046020507812,-1486.895263671875,1268.38134765625,818.955078125,-1486.895263671875,1269.8890380859375,810.4047241210938,-1754.5272216796875,1274.230224609375,802.8853759765625,-1754.5272216796875,1274.230224609375,802.8853759765625,-1486.895263671875,1269.8890380859375,810.4047241210938,-1754.5272216796875,1274.230224609375,802.8853759765625,-1486.895263671875,1269.8890380859375,810.4046020507812,-1486.895263671875,1274.230224609375,802.8853759765625,-1754.5272216796875,1280.88134765625,797.3045043945312,-1754.5272216796875,1280.88134765625,797.3043823242188,-1486.895263671875,1274.230224609375,802.8853759765625,-1754.5272216796875,1280.88134765625,797.3043823242188,-1486.895263671875,1274.230224609375,802.8853759765625,-1486.895263671875,1280.88134765625,797.3045043945312,-1754.5272216796875,1289.0401611328125,794.3350219726562,-1754.5272216796875,1289.0401611328125,794.3348999023438,-1486.895263671875,1280.88134765625,797.3045043945312,-1754.5272216796875,1289.0401611328125,794.3348999023438,-1486.895263671875,1280.88134765625,797.3043823242188,-1486.895263671875,1289.0401611328125,794.3350219726562,-1754.5272216796875,1297.7225341796875,794.3350219726562,-1754.5272216796875,1297.7225341796875,794.3348999023438,-1486.895263671875,1289.0401611328125,794.3350219726562,-1754.5272216796875,1297.7225341796875,794.3348999023438,-1486.895263671875,1289.0401611328125,794.3348999023438,-1486.895263671875,1297.7225341796875,794.3350219726562,-1754.5272216796875,1305.88134765625,797.3045043945312,-1754.5272216796875,1305.88134765625,797.3043823242188,-1486.895263671875,1297.7225341796875,794.3350219726562,-1754.5272216796875,1305.88134765625,797.3043823242188,-1486.895263671875,1297.7225341796875,794.3348999023438,-1486.895263671875,1305.88134765625,797.3045043945312,-1754.5272216796875,1312.532470703125,802.8853759765625,-1754.5272216796875,1312.532470703125,802.8853759765625,-1486.895263671875,1305.88134765625,797.3045043945312,-1754.5272216796875,1312.532470703125,802.8853759765625,-1486.895263671875,1305.88134765625,797.3043823242188,-1486.895263671875,1312.532470703125,802.8853759765625,-1754.5272216796875,1316.8736572265625,810.4046020507812,-1754.5272216796875,1316.8736572265625,810.4046020507812,-1486.895263671875,1312.532470703125,802.8853759765625,-1754.5272216796875,1316.8736572265625,810.4046020507812,-1486.895263671875,1312.532470703125,802.8853759765625,-1486.895263671875,1316.8736572265625,810.4046020507812,-1754.5272216796875,1318.38134765625,818.955078125,-1754.5272216796875,1318.38134765625,818.955078125,-1486.895263671875,1316.8736572265625,810.4046020507812,-1754.5272216796875,1318.38134765625,818.955078125,-1486.895263671875,1316.8736572265625,810.4046020507812,-1486.895263671875,1318.38134765625,818.955078125,-1486.895263671875,1316.8736572265625,827.505615234375,-1486.895263671875,1316.8736572265625,827.505615234375,-1219.263427734375,1318.38134765625,818.955078125,-1486.895263671875,1316.8736572265625,827.505615234375,-1219.263427734375,1318.38134765625,818.955078125,-1219.263427734375,1316.8736572265625,827.505615234375,-1486.895263671875,1312.532470703125,835.0247802734375,-1486.895263671875,1312.532470703125,835.0247192382812,-1219.263427734375,1316.8736572265625,827.505615234375,-1486.895263671875,1312.532470703125,835.0247192382812,-1219.263427734375,1316.8736572265625,827.505615234375,-1219.263427734375,1312.532470703125,835.0247802734375,-1486.895263671875,1305.88134765625,840.605712890625,-1486.895263671875,1305.88134765625,840.605712890625,-1219.263427734375,1312.532470703125,835.0247802734375,-1486.895263671875,1305.88134765625,840.605712890625,-1219.263427734375,1312.532470703125,835.0247192382812,-1219.263427734375,1305.88134765625,840.605712890625,-1486.895263671875,1297.7225341796875,843.5753173828125,-1486.895263671875,1297.7225341796875,843.5753173828125,-1219.263427734375,1305.88134765625,840.605712890625,-1486.895263671875,1297.7225341796875,843.5753173828125,-1219.263427734375,1305.88134765625,840.605712890625,-1219.263427734375,1297.7225341796875,843.5753173828125,-1486.895263671875,1289.0401611328125,843.5753173828125,-1486.895263671875,1289.0401611328125,843.5753173828125,-1219.263427734375,1297.7225341796875,843.5753173828125,-1486.895263671875,1289.0401611328125,843.5753173828125,-1219.263427734375,1297.7225341796875,843.5753173828125,-1219.263427734375,1289.0401611328125,843.5753173828125,-1486.895263671875,1280.88134765625,840.605712890625,-1486.895263671875,1280.88134765625,840.605712890625,-1219.263427734375,1289.0401611328125,843.5753173828125,-1486.895263671875,1280.88134765625,840.605712890625,-1219.263427734375,1289.0401611328125,843.5753173828125,-1219.263427734375,1280.88134765625,840.605712890625,-1486.895263671875,1274.230224609375,835.0247802734375,-1486.895263671875,1274.230224609375,835.0247192382812,-1219.263427734375,1280.88134765625,840.605712890625,-1486.895263671875,1274.230224609375,835.0247192382812,-1219.263427734375,1280.88134765625,840.605712890625,-1219.263427734375,1274.230224609375,835.0247802734375,-1486.895263671875,1269.8890380859375,827.505615234375,-1486.895263671875,1269.8890380859375,827.505615234375,-1219.263427734375,1274.230224609375,835.0247802734375,-1486.895263671875,1269.8890380859375,827.505615234375,-1219.263427734375,1274.230224609375,835.0247192382812,-1219.263427734375,1269.8890380859375,827.505615234375,-1486.895263671875,1268.38134765625,818.955078125,-1486.895263671875,1268.38134765625,818.955078125,-1219.263427734375,1269.8890380859375,827.505615234375,-1486.895263671875,1268.38134765625,818.955078125,-1219.263427734375,1269.8890380859375,827.505615234375,-1219.263427734375,1268.38134765625,818.955078125,-1486.895263671875,1269.8890380859375,810.4046020507812,-1486.895263671875,1269.8890380859375,810.4044799804688,-1219.263427734375,1268.38134765625,818.955078125,-1486.895263671875,1269.8890380859375,810.4044799804688,-1219.263427734375,1268.38134765625,818.955078125,-1219.263427734375,1269.8890380859375,810.4046020507812,-1486.895263671875,1274.230224609375,802.8853759765625,-1486.895263671875,1274.230224609375,802.8853759765625,-1219.263427734375,1269.8890380859375,810.4046020507812,-1486.895263671875,1274.230224609375,802.8853759765625,-1219.263427734375,1269.8890380859375,810.4044799804688,-1219.263427734375,1274.230224609375,802.8853759765625,-1486.895263671875,1280.88134765625,797.3043823242188,-1486.895263671875,1280.88134765625,797.3043823242188,-1219.263427734375,1274.230224609375,802.8853759765625,-1486.895263671875,1280.88134765625,797.3043823242188,-1219.263427734375,1274.230224609375,802.8853759765625,-1219.263427734375,1280.88134765625,797.3043823242188,-1486.895263671875,1289.0401611328125,794.3348999023438,-1486.895263671875,1289.0401611328125,794.3347778320312,-1219.263427734375,1280.88134765625,797.3043823242188,-1486.895263671875,1289.0401611328125,794.3347778320312,-1219.263427734375,1280.88134765625,797.3043823242188,-1219.263427734375,1289.0401611328125,794.3348999023438,-1486.895263671875,1297.7225341796875,794.3348999023438,-1486.895263671875,1297.7225341796875,794.3347778320312,-1219.263427734375,1289.0401611328125,794.3348999023438,-1486.895263671875,1297.7225341796875,794.3347778320312,-1219.263427734375,1289.0401611328125,794.3347778320312,-1219.263427734375,1297.7225341796875,794.3348999023438,-1486.895263671875,1305.88134765625,797.3043823242188,-1486.895263671875,1305.88134765625,797.3043823242188,-1219.263427734375,1297.7225341796875,794.3348999023438,-1486.895263671875,1305.88134765625,797.3043823242188,-1219.263427734375,1297.7225341796875,794.3347778320312,-1219.263427734375,1305.88134765625,797.3043823242188,-1486.895263671875,1312.532470703125,802.8853759765625,-1486.895263671875,1312.532470703125,802.8853759765625,-1219.263427734375,1305.88134765625,797.3043823242188,-1486.895263671875,1312.532470703125,802.8853759765625,-1219.263427734375,1305.88134765625,797.3043823242188,-1219.263427734375,1312.532470703125,802.8853759765625,-1486.895263671875,1316.8736572265625,810.4046020507812,-1486.895263671875,1316.8736572265625,810.4044799804688,-1219.263427734375,1312.532470703125,802.8853759765625,-1486.895263671875,1316.8736572265625,810.4044799804688,-1219.263427734375,1312.532470703125,802.8853759765625,-1219.263427734375,1316.8736572265625,810.4046020507812,-1486.895263671875,1318.38134765625,818.955078125,-1486.895263671875,1318.38134765625,818.955078125,-1219.263427734375,1316.8736572265625,810.4046020507812,-1486.895263671875,1318.38134765625,818.955078125,-1219.263427734375,1316.8736572265625,810.4044799804688,-1219.263427734375,1318.38134765625,818.955078125,-1219.263427734375,1316.8736572265625,827.505615234375,-1219.263427734375,1316.8736572265625,827.5054931640625,-951.6314697265625,1318.38134765625,818.955078125,-1219.263427734375,1316.8736572265625,827.5054931640625,-951.6314697265625,1318.38134765625,818.9550170898438,-951.6314697265625,1316.8736572265625,827.505615234375,-1219.263427734375,1312.532470703125,835.0247192382812,-1219.263427734375,1312.532470703125,835.0247192382812,-951.6314697265625,1316.8736572265625,827.505615234375,-1219.263427734375,1312.532470703125,835.0247192382812,-951.6314697265625,1316.8736572265625,827.5054931640625,-951.6314697265625,1312.532470703125,835.0247192382812,-1219.263427734375,1305.88134765625,840.605712890625,-1219.263427734375,1305.88134765625,840.605712890625,-951.6314697265625,1312.532470703125,835.0247192382812,-1219.263427734375,1305.88134765625,840.605712890625,-951.6314697265625,1312.532470703125,835.0247192382812,-951.6314697265625,1305.88134765625,840.605712890625,-1219.263427734375,1297.7225341796875,843.5753173828125,-1219.263427734375,1297.7225341796875,843.5751953125,-951.6314697265625,1305.88134765625,840.605712890625,-1219.263427734375,1297.7225341796875,843.5751953125,-951.6314697265625,1305.88134765625,840.605712890625,-951.6314697265625,1297.7225341796875,843.5753173828125,-1219.263427734375,1289.0401611328125,843.5753173828125,-1219.263427734375,1289.0401611328125,843.5751953125,-951.6314697265625,1297.7225341796875,843.5753173828125,-1219.263427734375,1289.0401611328125,843.5751953125,-951.6314697265625,1297.7225341796875,843.5751953125,-951.6314697265625,1289.0401611328125,843.5753173828125,-1219.263427734375,1280.88134765625,840.605712890625,-1219.263427734375,1280.88134765625,840.605712890625,-951.6314697265625,1289.0401611328125,843.5753173828125,-1219.263427734375,1280.88134765625,840.605712890625,-951.6314697265625,1289.0401611328125,843.5751953125,-951.6314697265625,1280.88134765625,840.605712890625,-1219.263427734375,1274.230224609375,835.0247192382812,-1219.263427734375,1274.230224609375,835.0247192382812,-951.6314697265625,1280.88134765625,840.605712890625,-1219.263427734375,1274.230224609375,835.0247192382812,-951.6314697265625,1280.88134765625,840.605712890625,-951.6314697265625,1274.230224609375,835.0247192382812,-1219.263427734375,1269.8890380859375,827.505615234375,-1219.263427734375,1269.8890380859375,827.5054931640625,-951.6314697265625,1274.230224609375,835.0247192382812,-1219.263427734375,1269.8890380859375,827.5054931640625,-951.6314697265625,1274.230224609375,835.0247192382812,-951.6314697265625,1269.8890380859375,827.505615234375,-1219.263427734375,1268.38134765625,818.955078125,-1219.263427734375,1268.38134765625,818.9550170898438,-951.6314697265625,1269.8890380859375,827.505615234375,-1219.263427734375,1268.38134765625,818.9550170898438,-951.6314697265625,1269.8890380859375,827.5054931640625,-951.6314697265625,1268.38134765625,818.955078125,-1219.263427734375,1269.8890380859375,810.4044799804688,-1219.263427734375,1269.8890380859375,810.4044799804688,-951.6314697265625,1268.38134765625,818.955078125,-1219.263427734375,1269.8890380859375,810.4044799804688,-951.6314697265625,1268.38134765625,818.9550170898438,-951.6314697265625,1269.8890380859375,810.4044799804688,-1219.263427734375,1274.230224609375,802.8853759765625,-1219.263427734375,1274.230224609375,802.8853149414062,-951.6314697265625,1269.8890380859375,810.4044799804688,-1219.263427734375,1274.230224609375,802.8853149414062,-951.6314697265625,1269.8890380859375,810.4044799804688,-951.6314697265625,1274.230224609375,802.8853759765625,-1219.263427734375,1280.88134765625,797.3043823242188,-1219.263427734375,1280.88134765625,797.3043823242188,-951.6314697265625,1274.230224609375,802.8853759765625,-1219.263427734375,1280.88134765625,797.3043823242188,-951.6314697265625,1274.230224609375,802.8853149414062,-951.6314697265625,1280.88134765625,797.3043823242188,-1219.263427734375,1289.0401611328125,794.3347778320312,-1219.263427734375,1289.0401611328125,794.3347778320312,-951.6314697265625,1280.88134765625,797.3043823242188,-1219.263427734375,1289.0401611328125,794.3347778320312,-951.6314697265625,1280.88134765625,797.3043823242188,-951.6314697265625,1289.0401611328125,794.3347778320312,-1219.263427734375,1297.7225341796875,794.3347778320312,-1219.263427734375,1297.7225341796875,794.3347778320312,-951.6314697265625,1289.0401611328125,794.3347778320312,-1219.263427734375,1297.7225341796875,794.3347778320312,-951.6314697265625,1289.0401611328125,794.3347778320312,-951.6314697265625,1297.7225341796875,794.3347778320312,-1219.263427734375,1305.88134765625,797.3043823242188,-1219.263427734375,1305.88134765625,797.3043823242188,-951.6314697265625,1297.7225341796875,794.3347778320312,-1219.263427734375,1305.88134765625,797.3043823242188,-951.6314697265625,1297.7225341796875,794.3347778320312,-951.6314697265625,1305.88134765625,797.3043823242188,-1219.263427734375,1312.532470703125,802.8853759765625,-1219.263427734375,1312.532470703125,802.8853149414062,-951.6314697265625,1305.88134765625,797.3043823242188,-1219.263427734375,1312.532470703125,802.8853149414062,-951.6314697265625,1305.88134765625,797.3043823242188,-951.6314697265625,1312.532470703125,802.8853759765625,-1219.263427734375,1316.8736572265625,810.4044799804688,-1219.263427734375,1316.8736572265625,810.4044799804688,-951.6314697265625,1312.532470703125,802.8853759765625,-1219.263427734375,1316.8736572265625,810.4044799804688,-951.6314697265625,1312.532470703125,802.8853149414062,-951.6314697265625,1316.8736572265625,810.4044799804688,-1219.263427734375,1318.38134765625,818.955078125,-1219.263427734375,1318.38134765625,818.9550170898438,-951.6314697265625,1316.8736572265625,810.4044799804688,-1219.263427734375,1318.38134765625,818.9550170898438,-951.6314697265625,1316.8736572265625,810.4044799804688,-951.6314697265625,1318.38134765625,818.9550170898438,-951.6314697265625,1316.8736572265625,827.5054931640625,-951.6314697265625,1316.8736572265625,827.5054931640625,-683.9995727539062,1318.38134765625,818.9550170898438,-951.6314697265625,1316.8736572265625,827.5054931640625,-683.9995727539062,1318.38134765625,818.9550170898438,-683.9995727539062,1316.8736572265625,827.5054931640625,-951.6314697265625,1312.532470703125,835.0247192382812,-951.6314697265625,1312.532470703125,835.0247192382812,-683.9995727539062,1316.8736572265625,827.5054931640625,-951.6314697265625,1312.532470703125,835.0247192382812,-683.9995727539062,1316.8736572265625,827.5054931640625,-683.9995727539062,1312.532470703125,835.0247192382812,-951.6314697265625,1305.88134765625,840.605712890625,-951.6314697265625,1305.88134765625,840.6055908203125,-683.9995727539062,1312.532470703125,835.0247192382812,-951.6314697265625,1305.88134765625,840.6055908203125,-683.9995727539062,1312.532470703125,835.0247192382812,-683.9995727539062,1305.88134765625,840.605712890625,-951.6314697265625,1297.7225341796875,843.5751953125,-951.6314697265625,1297.7225341796875,843.5750732421875,-683.9995727539062,1305.88134765625,840.605712890625,-951.6314697265625,1297.7225341796875,843.5750732421875,-683.9995727539062,1305.88134765625,840.6055908203125,-683.9995727539062,1297.7225341796875,843.5751953125,-951.6314697265625,1289.0401611328125,843.5751953125,-951.6314697265625,1289.0401611328125,843.5750732421875,-683.9995727539062,1297.7225341796875,843.5751953125,-951.6314697265625,1289.0401611328125,843.5750732421875,-683.9995727539062,1297.7225341796875,843.5750732421875,-683.9995727539062,1289.0401611328125,843.5751953125,-951.6314697265625,1280.88134765625,840.605712890625,-951.6314697265625,1280.88134765625,840.6055908203125,-683.9995727539062,1289.0401611328125,843.5751953125,-951.6314697265625,1280.88134765625,840.6055908203125,-683.9995727539062,1289.0401611328125,843.5750732421875,-683.9995727539062,1280.88134765625,840.605712890625,-951.6314697265625,1274.230224609375,835.0247192382812,-951.6314697265625,1274.230224609375,835.0247192382812,-683.9995727539062,1280.88134765625,840.605712890625,-951.6314697265625,1274.230224609375,835.0247192382812,-683.9995727539062,1280.88134765625,840.6055908203125,-683.9995727539062,1274.230224609375,835.0247192382812,-951.6314697265625,1269.8890380859375,827.5054931640625,-951.6314697265625,1269.8890380859375,827.5054931640625,-683.9995727539062,1274.230224609375,835.0247192382812,-951.6314697265625,1269.8890380859375,827.5054931640625,-683.9995727539062,1274.230224609375,835.0247192382812,-683.9995727539062,1269.8890380859375,827.5054931640625,-951.6314697265625,1268.38134765625,818.9550170898438,-951.6314697265625,1268.38134765625,818.9550170898438,-683.9995727539062,1269.8890380859375,827.5054931640625,-951.6314697265625,1268.38134765625,818.9550170898438,-683.9995727539062,1269.8890380859375,827.5054931640625,-683.9995727539062,1268.38134765625,818.9550170898438,-951.6314697265625,1269.8890380859375,810.4044799804688,-951.6314697265625,1269.8890380859375,810.4044799804688,-683.9995727539062,1268.38134765625,818.9550170898438,-951.6314697265625,1269.8890380859375,810.4044799804688,-683.9995727539062,1268.38134765625,818.9550170898438,-683.9995727539062,1269.8890380859375,810.4044799804688,-951.6314697265625,1274.230224609375,802.8853149414062,-951.6314697265625,1274.230224609375,802.8853149414062,-683.9995727539062,1269.8890380859375,810.4044799804688,-951.6314697265625,1274.230224609375,802.8853149414062,-683.9995727539062,1269.8890380859375,810.4044799804688,-683.9995727539062,1274.230224609375,802.8853149414062,-951.6314697265625,1280.88134765625,797.3043823242188,-951.6314697265625,1280.88134765625,797.3043212890625,-683.9995727539062,1274.230224609375,802.8853149414062,-951.6314697265625,1280.88134765625,797.3043212890625,-683.9995727539062,1274.230224609375,802.8853149414062,-683.9995727539062,1280.88134765625,797.3043823242188,-951.6314697265625,1289.0401611328125,794.3347778320312,-951.6314697265625,1289.0401611328125,794.3347778320312,-683.9995727539062,1280.88134765625,797.3043823242188,-951.6314697265625,1289.0401611328125,794.3347778320312,-683.9995727539062,1280.88134765625,797.3043212890625,-683.9995727539062,1289.0401611328125,794.3347778320312,-951.6314697265625,1297.7225341796875,794.3347778320312,-951.6314697265625,1297.7225341796875,794.3347778320312,-683.9995727539062,1289.0401611328125,794.3347778320312,-951.6314697265625,1297.7225341796875,794.3347778320312,-683.9995727539062,1289.0401611328125,794.3347778320312,-683.9995727539062,1297.7225341796875,794.3347778320312,-951.6314697265625,1305.88134765625,797.3043823242188,-951.6314697265625,1305.88134765625,797.3043212890625,-683.9995727539062,1297.7225341796875,794.3347778320312,-951.6314697265625,1305.88134765625,797.3043212890625,-683.9995727539062,1297.7225341796875,794.3347778320312,-683.9995727539062,1305.88134765625,797.3043823242188,-951.6314697265625,1312.532470703125,802.8853149414062,-951.6314697265625,1312.532470703125,802.8853149414062,-683.9995727539062,1305.88134765625,797.3043823242188,-951.6314697265625,1312.532470703125,802.8853149414062,-683.9995727539062,1305.88134765625,797.3043212890625,-683.9995727539062,1312.532470703125,802.8853149414062,-951.6314697265625,1316.8736572265625,810.4044799804688,-951.6314697265625,1316.8736572265625,810.4044189453125,-683.9995727539062,1312.532470703125,802.8853149414062,-951.6314697265625,1316.8736572265625,810.4044189453125,-683.9995727539062,1312.532470703125,802.8853149414062,-683.9995727539062,1316.8736572265625,810.4044799804688,-951.6314697265625,1318.38134765625,818.9550170898438,-951.6314697265625,1318.38134765625,818.9550170898438,-683.9995727539062,1316.8736572265625,810.4044799804688,-951.6314697265625,1318.38134765625,818.9550170898438,-683.9995727539062,1316.8736572265625,810.4044189453125,-683.9995727539062,1318.38134765625,818.9550170898438,-683.9995727539062,1316.8736572265625,827.5054931640625,-683.9995727539062,1316.8736572265625,827.50537109375,-416.3677062988281,1318.38134765625,818.9550170898438,-683.9995727539062,1316.8736572265625,827.50537109375,-416.3677062988281,1318.38134765625,818.9548950195312,-416.3677062988281,1316.8736572265625,827.5054931640625,-683.9995727539062,1312.532470703125,835.0247192382812,-683.9995727539062,1312.532470703125,835.0245971679688,-416.3677062988281,1316.8736572265625,827.5054931640625,-683.9995727539062,1312.532470703125,835.0245971679688,-416.3677062988281,1316.8736572265625,827.50537109375,-416.3677062988281,1312.532470703125,835.0247192382812,-683.9995727539062,1305.88134765625,840.6055908203125,-683.9995727539062,1305.88134765625,840.6055297851562,-416.3677062988281,1312.532470703125,835.0247192382812,-683.9995727539062,1305.88134765625,840.6055297851562,-416.3677062988281,1312.532470703125,835.0245971679688,-416.3677062988281,1305.88134765625,840.6055908203125,-683.9995727539062,1297.7225341796875,843.5750732421875,-683.9995727539062,1297.7225341796875,843.5750732421875,-416.3677062988281,1305.88134765625,840.6055908203125,-683.9995727539062,1297.7225341796875,843.5750732421875,-416.3677062988281,1305.88134765625,840.6055297851562,-416.3677062988281,1297.7225341796875,843.5750732421875,-683.9995727539062,1289.0401611328125,843.5750732421875,-683.9995727539062,1289.0401611328125,843.5750732421875,-416.3677062988281,1297.7225341796875,843.5750732421875,-683.9995727539062,1289.0401611328125,843.5750732421875,-416.3677062988281,1297.7225341796875,843.5750732421875,-416.3677062988281,1289.0401611328125,843.5750732421875,-683.9995727539062,1280.88134765625,840.6055908203125,-683.9995727539062,1280.88134765625,840.6055297851562,-416.3677062988281,1289.0401611328125,843.5750732421875,-683.9995727539062,1280.88134765625,840.6055297851562,-416.3677062988281,1289.0401611328125,843.5750732421875,-416.3677062988281,1280.88134765625,840.6055908203125,-683.9995727539062,1274.230224609375,835.0247192382812,-683.9995727539062,1274.230224609375,835.0245971679688,-416.3677062988281,1280.88134765625,840.6055908203125,-683.9995727539062,1274.230224609375,835.0245971679688,-416.3677062988281,1280.88134765625,840.6055297851562,-416.3677062988281,1274.230224609375,835.0247192382812,-683.9995727539062,1269.8890380859375,827.5054931640625,-683.9995727539062,1269.8890380859375,827.50537109375,-416.3677062988281,1274.230224609375,835.0247192382812,-683.9995727539062,1269.8890380859375,827.50537109375,-416.3677062988281,1274.230224609375,835.0245971679688,-416.3677062988281,1269.8890380859375,827.5054931640625,-683.9995727539062,1268.38134765625,818.9550170898438,-683.9995727539062,1268.38134765625,818.9548950195312,-416.3677062988281,1269.8890380859375,827.5054931640625,-683.9995727539062,1268.38134765625,818.9548950195312,-416.3677062988281,1269.8890380859375,827.50537109375,-416.3677062988281,1268.38134765625,818.9550170898438,-683.9995727539062,1269.8890380859375,810.4044799804688,-683.9995727539062,1269.8890380859375,810.4044189453125,-416.3677062988281,1268.38134765625,818.9550170898438,-683.9995727539062,1269.8890380859375,810.4044189453125,-416.3677062988281,1268.38134765625,818.9548950195312,-416.3677062988281,1269.8890380859375,810.4044799804688,-683.9995727539062,1274.230224609375,802.8853149414062,-683.9995727539062,1274.230224609375,802.8853149414062,-416.3677062988281,1269.8890380859375,810.4044799804688,-683.9995727539062,1274.230224609375,802.8853149414062,-416.3677062988281,1269.8890380859375,810.4044189453125,-416.3677062988281,1274.230224609375,802.8853149414062,-683.9995727539062,1280.88134765625,797.3043212890625,-683.9995727539062,1280.88134765625,797.3043212890625,-416.3677062988281,1274.230224609375,802.8853149414062,-683.9995727539062,1280.88134765625,797.3043212890625,-416.3677062988281,1274.230224609375,802.8853149414062,-416.3677062988281,1280.88134765625,797.3043212890625,-683.9995727539062,1289.0401611328125,794.3347778320312,-683.9995727539062,1289.0401611328125,794.334716796875,-416.3677062988281,1280.88134765625,797.3043212890625,-683.9995727539062,1289.0401611328125,794.334716796875,-416.3677062988281,1280.88134765625,797.3043212890625,-416.3677062988281,1289.0401611328125,794.3347778320312,-683.9995727539062,1297.7225341796875,794.3347778320312,-683.9995727539062,1297.7225341796875,794.334716796875,-416.3677062988281,1289.0401611328125,794.3347778320312,-683.9995727539062,1297.7225341796875,794.334716796875,-416.3677062988281,1289.0401611328125,794.334716796875,-416.3677062988281,1297.7225341796875,794.3347778320312,-683.9995727539062,1305.88134765625,797.3043212890625,-683.9995727539062,1305.88134765625,797.3043212890625,-416.3677062988281,1297.7225341796875,794.3347778320312,-683.9995727539062,1305.88134765625,797.3043212890625,-416.3677062988281,1297.7225341796875,794.334716796875,-416.3677062988281,1305.88134765625,797.3043212890625,-683.9995727539062,1312.532470703125,802.8853149414062,-683.9995727539062,1312.532470703125,802.8851928710938,-416.3677062988281,1305.88134765625,797.3043212890625,-683.9995727539062,1312.532470703125,802.8851928710938,-416.3677062988281,1305.88134765625,797.3043212890625,-416.3677062988281,1312.532470703125,802.8853149414062,-683.9995727539062,1316.8736572265625,810.4044189453125,-683.9995727539062,1316.8736572265625,810.4044189453125,-416.3677062988281,1312.532470703125,802.8853149414062,-683.9995727539062,1316.8736572265625,810.4044189453125,-416.3677062988281,1312.532470703125,802.8851928710938,-416.3677062988281,1316.8736572265625,810.4044189453125,-683.9995727539062,1318.38134765625,818.9550170898438,-683.9995727539062,1318.38134765625,818.9548950195312,-416.3677062988281,1316.8736572265625,810.4044189453125,-683.9995727539062,1318.38134765625,818.9548950195312,-416.3677062988281,1316.8736572265625,810.4044189453125,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1316.8736572265625,810.4044189453125,-416.3677062988281,1318.38134765625,818.9548950195312,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1318.38134765625,818.9548950195312,-416.3677062988281,1316.8736572265625,827.50537109375,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1316.8736572265625,827.50537109375,-416.3677062988281,1312.532470703125,835.0245971679688,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1312.532470703125,835.0245971679688,-416.3677062988281,1305.88134765625,840.6055297851562,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1305.88134765625,840.6055297851562,-416.3677062988281,1297.7225341796875,843.5750732421875,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1297.7225341796875,843.5750732421875,-416.3677062988281,1289.0401611328125,843.5750732421875,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1289.0401611328125,843.5750732421875,-416.3677062988281,1280.88134765625,840.6055297851562,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1280.88134765625,840.6055297851562,-416.3677062988281,1274.230224609375,835.0245971679688,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1274.230224609375,835.0245971679688,-416.3677062988281,1269.8890380859375,827.50537109375,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1269.8890380859375,827.50537109375,-416.3677062988281,1268.38134765625,818.9548950195312,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1268.38134765625,818.9548950195312,-416.3677062988281,1269.8890380859375,810.4044189453125,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1269.8890380859375,810.4044189453125,-416.3677062988281,1274.230224609375,802.8853149414062,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1274.230224609375,802.8853149414062,-416.3677062988281,1280.88134765625,797.3043212890625,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1280.88134765625,797.3043212890625,-416.3677062988281,1289.0401611328125,794.334716796875,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1289.0401611328125,794.334716796875,-416.3677062988281,1297.7225341796875,794.334716796875,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1297.7225341796875,794.334716796875,-416.3677062988281,1305.88134765625,797.3043212890625,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1305.88134765625,797.3043212890625,-416.3677062988281,1312.532470703125,802.8851928710938,-416.3677062988281,1293.38134765625,818.9548950195312,-416.3677062988281,1312.532470703125,802.8851928710938,-416.3677062988281,1316.8736572265625,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [1293.38134765625,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466581371704
| }
| }
| },
| {
| "uuid": "08EB7DAE-D91C-4F98-90E3-12A099DFC3F8",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [1393.38134765625,818.955078125,-1754.5272216796875,1412.532470703125,835.0247802734375,-1754.5272216796875,1416.8736572265625,827.505615234375,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1416.8736572265625,827.505615234375,-1754.5272216796875,1418.38134765625,818.955078125,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1397.7225341796875,843.5753173828125,-1754.5272216796875,1405.88134765625,840.6057739257812,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1405.88134765625,840.6057739257812,-1754.5272216796875,1412.532470703125,835.0247802734375,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1380.88134765625,840.6057739257812,-1754.5272216796875,1389.0401611328125,843.5753173828125,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1389.0401611328125,843.5753173828125,-1754.5272216796875,1397.7225341796875,843.5753173828125,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1369.8890380859375,827.505615234375,-1754.5272216796875,1374.230224609375,835.0247802734375,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1374.230224609375,835.0247802734375,-1754.5272216796875,1380.88134765625,840.6057739257812,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1369.8890380859375,810.4047241210938,-1754.5272216796875,1368.38134765625,818.955078125,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1368.38134765625,818.955078125,-1754.5272216796875,1369.8890380859375,827.505615234375,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1380.88134765625,797.3045043945312,-1754.5272216796875,1374.230224609375,802.8853759765625,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1374.230224609375,802.8853759765625,-1754.5272216796875,1369.8890380859375,810.4047241210938,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1397.7225341796875,794.3350219726562,-1754.5272216796875,1389.0401611328125,794.3350219726562,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1389.0401611328125,794.3350219726562,-1754.5272216796875,1380.88134765625,797.3045043945312,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1412.532470703125,802.8853759765625,-1754.5272216796875,1405.88134765625,797.3045043945312,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1405.88134765625,797.3045043945312,-1754.5272216796875,1397.7225341796875,794.3350219726562,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1418.38134765625,818.955078125,-1754.5272216796875,1416.8736572265625,810.4046020507812,-1754.5272216796875,1393.38134765625,818.955078125,-1754.5272216796875,1416.8736572265625,810.4046020507812,-1754.5272216796875,1412.532470703125,802.8853759765625,-1754.5272216796875,1418.38134765625,818.955078125,-1754.5272216796875,1416.8736572265625,827.505615234375,-1754.5272216796875,1416.8736572265625,827.505615234375,-1486.895263671875,1418.38134765625,818.955078125,-1754.5272216796875,1416.8736572265625,827.505615234375,-1486.895263671875,1418.38134765625,818.955078125,-1486.895263671875,1416.8736572265625,827.505615234375,-1754.5272216796875,1412.532470703125,835.0247802734375,-1754.5272216796875,1412.532470703125,835.0247802734375,-1486.895263671875,1416.8736572265625,827.505615234375,-1754.5272216796875,1412.532470703125,835.0247802734375,-1486.895263671875,1416.8736572265625,827.505615234375,-1486.895263671875,1412.532470703125,835.0247802734375,-1754.5272216796875,1405.88134765625,840.6057739257812,-1754.5272216796875,1405.88134765625,840.605712890625,-1486.895263671875,1412.532470703125,835.0247802734375,-1754.5272216796875,1405.88134765625,840.605712890625,-1486.895263671875,1412.532470703125,835.0247802734375,-1486.895263671875,1405.88134765625,840.6057739257812,-1754.5272216796875,1397.7225341796875,843.5753173828125,-1754.5272216796875,1397.7225341796875,843.5753173828125,-1486.895263671875,1405.88134765625,840.6057739257812,-1754.5272216796875,1397.7225341796875,843.5753173828125,-1486.895263671875,1405.88134765625,840.605712890625,-1486.895263671875,1397.7225341796875,843.5753173828125,-1754.5272216796875,1389.0401611328125,843.5753173828125,-1754.5272216796875,1389.0401611328125,843.5753173828125,-1486.895263671875,1397.7225341796875,843.5753173828125,-1754.5272216796875,1389.0401611328125,843.5753173828125,-1486.895263671875,1397.7225341796875,843.5753173828125,-1486.895263671875,1389.0401611328125,843.5753173828125,-1754.5272216796875,1380.88134765625,840.6057739257812,-1754.5272216796875,1380.88134765625,840.605712890625,-1486.895263671875,1389.0401611328125,843.5753173828125,-1754.5272216796875,1380.88134765625,840.605712890625,-1486.895263671875,1389.0401611328125,843.5753173828125,-1486.895263671875,1380.88134765625,840.6057739257812,-1754.5272216796875,1374.230224609375,835.0247802734375,-1754.5272216796875,1374.230224609375,835.0247802734375,-1486.895263671875,1380.88134765625,840.6057739257812,-1754.5272216796875,1374.230224609375,835.0247802734375,-1486.895263671875,1380.88134765625,840.605712890625,-1486.895263671875,1374.230224609375,835.0247802734375,-1754.5272216796875,1369.8890380859375,827.505615234375,-1754.5272216796875,1369.8890380859375,827.505615234375,-1486.895263671875,1374.230224609375,835.0247802734375,-1754.5272216796875,1369.8890380859375,827.505615234375,-1486.895263671875,1374.230224609375,835.0247802734375,-1486.895263671875,1369.8890380859375,827.505615234375,-1754.5272216796875,1368.38134765625,818.955078125,-1754.5272216796875,1368.38134765625,818.955078125,-1486.895263671875,1369.8890380859375,827.505615234375,-1754.5272216796875,1368.38134765625,818.955078125,-1486.895263671875,1369.8890380859375,827.505615234375,-1486.895263671875,1368.38134765625,818.955078125,-1754.5272216796875,1369.8890380859375,810.4047241210938,-1754.5272216796875,1369.8890380859375,810.4046020507812,-1486.895263671875,1368.38134765625,818.955078125,-1754.5272216796875,1369.8890380859375,810.4046020507812,-1486.895263671875,1368.38134765625,818.955078125,-1486.895263671875,1369.8890380859375,810.4047241210938,-1754.5272216796875,1374.230224609375,802.8853759765625,-1754.5272216796875,1374.230224609375,802.8853759765625,-1486.895263671875,1369.8890380859375,810.4047241210938,-1754.5272216796875,1374.230224609375,802.8853759765625,-1486.895263671875,1369.8890380859375,810.4046020507812,-1486.895263671875,1374.230224609375,802.8853759765625,-1754.5272216796875,1380.88134765625,797.3045043945312,-1754.5272216796875,1380.88134765625,797.3043823242188,-1486.895263671875,1374.230224609375,802.8853759765625,-1754.5272216796875,1380.88134765625,797.3043823242188,-1486.895263671875,1374.230224609375,802.8853759765625,-1486.895263671875,1380.88134765625,797.3045043945312,-1754.5272216796875,1389.0401611328125,794.3350219726562,-1754.5272216796875,1389.0401611328125,794.3348999023438,-1486.895263671875,1380.88134765625,797.3045043945312,-1754.5272216796875,1389.0401611328125,794.3348999023438,-1486.895263671875,1380.88134765625,797.3043823242188,-1486.895263671875,1389.0401611328125,794.3350219726562,-1754.5272216796875,1397.7225341796875,794.3350219726562,-1754.5272216796875,1397.7225341796875,794.3348999023438,-1486.895263671875,1389.0401611328125,794.3350219726562,-1754.5272216796875,1397.7225341796875,794.3348999023438,-1486.895263671875,1389.0401611328125,794.3348999023438,-1486.895263671875,1397.7225341796875,794.3350219726562,-1754.5272216796875,1405.88134765625,797.3045043945312,-1754.5272216796875,1405.88134765625,797.3043823242188,-1486.895263671875,1397.7225341796875,794.3350219726562,-1754.5272216796875,1405.88134765625,797.3043823242188,-1486.895263671875,1397.7225341796875,794.3348999023438,-1486.895263671875,1405.88134765625,797.3045043945312,-1754.5272216796875,1412.532470703125,802.8853759765625,-1754.5272216796875,1412.532470703125,802.8853759765625,-1486.895263671875,1405.88134765625,797.3045043945312,-1754.5272216796875,1412.532470703125,802.8853759765625,-1486.895263671875,1405.88134765625,797.3043823242188,-1486.895263671875,1412.532470703125,802.8853759765625,-1754.5272216796875,1416.8736572265625,810.4046020507812,-1754.5272216796875,1416.8736572265625,810.4046020507812,-1486.895263671875,1412.532470703125,802.8853759765625,-1754.5272216796875,1416.8736572265625,810.4046020507812,-1486.895263671875,1412.532470703125,802.8853759765625,-1486.895263671875,1416.8736572265625,810.4046020507812,-1754.5272216796875,1418.38134765625,818.955078125,-1754.5272216796875,1418.38134765625,818.955078125,-1486.895263671875,1416.8736572265625,810.4046020507812,-1754.5272216796875,1418.38134765625,818.955078125,-1486.895263671875,1416.8736572265625,810.4046020507812,-1486.895263671875,1418.38134765625,818.955078125,-1486.895263671875,1416.8736572265625,827.505615234375,-1486.895263671875,1416.8736572265625,827.505615234375,-1219.263427734375,1418.38134765625,818.955078125,-1486.895263671875,1416.8736572265625,827.505615234375,-1219.263427734375,1418.38134765625,818.955078125,-1219.263427734375,1416.8736572265625,827.505615234375,-1486.895263671875,1412.532470703125,835.0247802734375,-1486.895263671875,1412.532470703125,835.0247192382812,-1219.263427734375,1416.8736572265625,827.505615234375,-1486.895263671875,1412.532470703125,835.0247192382812,-1219.263427734375,1416.8736572265625,827.505615234375,-1219.263427734375,1412.532470703125,835.0247802734375,-1486.895263671875,1405.88134765625,840.605712890625,-1486.895263671875,1405.88134765625,840.605712890625,-1219.263427734375,1412.532470703125,835.0247802734375,-1486.895263671875,1405.88134765625,840.605712890625,-1219.263427734375,1412.532470703125,835.0247192382812,-1219.263427734375,1405.88134765625,840.605712890625,-1486.895263671875,1397.7225341796875,843.5753173828125,-1486.895263671875,1397.7225341796875,843.5753173828125,-1219.263427734375,1405.88134765625,840.605712890625,-1486.895263671875,1397.7225341796875,843.5753173828125,-1219.263427734375,1405.88134765625,840.605712890625,-1219.263427734375,1397.7225341796875,843.5753173828125,-1486.895263671875,1389.0401611328125,843.5753173828125,-1486.895263671875,1389.0401611328125,843.5753173828125,-1219.263427734375,1397.7225341796875,843.5753173828125,-1486.895263671875,1389.0401611328125,843.5753173828125,-1219.263427734375,1397.7225341796875,843.5753173828125,-1219.263427734375,1389.0401611328125,843.5753173828125,-1486.895263671875,1380.88134765625,840.605712890625,-1486.895263671875,1380.88134765625,840.605712890625,-1219.263427734375,1389.0401611328125,843.5753173828125,-1486.895263671875,1380.88134765625,840.605712890625,-1219.263427734375,1389.0401611328125,843.5753173828125,-1219.263427734375,1380.88134765625,840.605712890625,-1486.895263671875,1374.230224609375,835.0247802734375,-1486.895263671875,1374.230224609375,835.0247192382812,-1219.263427734375,1380.88134765625,840.605712890625,-1486.895263671875,1374.230224609375,835.0247192382812,-1219.263427734375,1380.88134765625,840.605712890625,-1219.263427734375,1374.230224609375,835.0247802734375,-1486.895263671875,1369.8890380859375,827.505615234375,-1486.895263671875,1369.8890380859375,827.505615234375,-1219.263427734375,1374.230224609375,835.0247802734375,-1486.895263671875,1369.8890380859375,827.505615234375,-1219.263427734375,1374.230224609375,835.0247192382812,-1219.263427734375,1369.8890380859375,827.505615234375,-1486.895263671875,1368.38134765625,818.955078125,-1486.895263671875,1368.38134765625,818.955078125,-1219.263427734375,1369.8890380859375,827.505615234375,-1486.895263671875,1368.38134765625,818.955078125,-1219.263427734375,1369.8890380859375,827.505615234375,-1219.263427734375,1368.38134765625,818.955078125,-1486.895263671875,1369.8890380859375,810.4046020507812,-1486.895263671875,1369.8890380859375,810.4044799804688,-1219.263427734375,1368.38134765625,818.955078125,-1486.895263671875,1369.8890380859375,810.4044799804688,-1219.263427734375,1368.38134765625,818.955078125,-1219.263427734375,1369.8890380859375,810.4046020507812,-1486.895263671875,1374.230224609375,802.8853759765625,-1486.895263671875,1374.230224609375,802.8853759765625,-1219.263427734375,1369.8890380859375,810.4046020507812,-1486.895263671875,1374.230224609375,802.8853759765625,-1219.263427734375,1369.8890380859375,810.4044799804688,-1219.263427734375,1374.230224609375,802.8853759765625,-1486.895263671875,1380.88134765625,797.3043823242188,-1486.895263671875,1380.88134765625,797.3043823242188,-1219.263427734375,1374.230224609375,802.8853759765625,-1486.895263671875,1380.88134765625,797.3043823242188,-1219.263427734375,1374.230224609375,802.8853759765625,-1219.263427734375,1380.88134765625,797.3043823242188,-1486.895263671875,1389.0401611328125,794.3348999023438,-1486.895263671875,1389.0401611328125,794.3347778320312,-1219.263427734375,1380.88134765625,797.3043823242188,-1486.895263671875,1389.0401611328125,794.3347778320312,-1219.263427734375,1380.88134765625,797.3043823242188,-1219.263427734375,1389.0401611328125,794.3348999023438,-1486.895263671875,1397.7225341796875,794.3348999023438,-1486.895263671875,1397.7225341796875,794.3347778320312,-1219.263427734375,1389.0401611328125,794.3348999023438,-1486.895263671875,1397.7225341796875,794.3347778320312,-1219.263427734375,1389.0401611328125,794.3347778320312,-1219.263427734375,1397.7225341796875,794.3348999023438,-1486.895263671875,1405.88134765625,797.3043823242188,-1486.895263671875,1405.88134765625,797.3043823242188,-1219.263427734375,1397.7225341796875,794.3348999023438,-1486.895263671875,1405.88134765625,797.3043823242188,-1219.263427734375,1397.7225341796875,794.3347778320312,-1219.263427734375,1405.88134765625,797.3043823242188,-1486.895263671875,1412.532470703125,802.8853759765625,-1486.895263671875,1412.532470703125,802.8853759765625,-1219.263427734375,1405.88134765625,797.3043823242188,-1486.895263671875,1412.532470703125,802.8853759765625,-1219.263427734375,1405.88134765625,797.3043823242188,-1219.263427734375,1412.532470703125,802.8853759765625,-1486.895263671875,1416.8736572265625,810.4046020507812,-1486.895263671875,1416.8736572265625,810.4044799804688,-1219.263427734375,1412.532470703125,802.8853759765625,-1486.895263671875,1416.8736572265625,810.4044799804688,-1219.263427734375,1412.532470703125,802.8853759765625,-1219.263427734375,1416.8736572265625,810.4046020507812,-1486.895263671875,1418.38134765625,818.955078125,-1486.895263671875,1418.38134765625,818.955078125,-1219.263427734375,1416.8736572265625,810.4046020507812,-1486.895263671875,1418.38134765625,818.955078125,-1219.263427734375,1416.8736572265625,810.4044799804688,-1219.263427734375,1418.38134765625,818.955078125,-1219.263427734375,1416.8736572265625,827.505615234375,-1219.263427734375,1416.8736572265625,827.5054931640625,-951.6314697265625,1418.38134765625,818.955078125,-1219.263427734375,1416.8736572265625,827.5054931640625,-951.6314697265625,1418.38134765625,818.9550170898438,-951.6314697265625,1416.8736572265625,827.505615234375,-1219.263427734375,1412.532470703125,835.0247192382812,-1219.263427734375,1412.532470703125,835.0247192382812,-951.6314697265625,1416.8736572265625,827.505615234375,-1219.263427734375,1412.532470703125,835.0247192382812,-951.6314697265625,1416.8736572265625,827.5054931640625,-951.6314697265625,1412.532470703125,835.0247192382812,-1219.263427734375,1405.88134765625,840.605712890625,-1219.263427734375,1405.88134765625,840.605712890625,-951.6314697265625,1412.532470703125,835.0247192382812,-1219.263427734375,1405.88134765625,840.605712890625,-951.6314697265625,1412.532470703125,835.0247192382812,-951.6314697265625,1405.88134765625,840.605712890625,-1219.263427734375,1397.7225341796875,843.5753173828125,-1219.263427734375,1397.7225341796875,843.5751953125,-951.6314697265625,1405.88134765625,840.605712890625,-1219.263427734375,1397.7225341796875,843.5751953125,-951.6314697265625,1405.88134765625,840.605712890625,-951.6314697265625,1397.7225341796875,843.5753173828125,-1219.263427734375,1389.0401611328125,843.5753173828125,-1219.263427734375,1389.0401611328125,843.5751953125,-951.6314697265625,1397.7225341796875,843.5753173828125,-1219.263427734375,1389.0401611328125,843.5751953125,-951.6314697265625,1397.7225341796875,843.5751953125,-951.6314697265625,1389.0401611328125,843.5753173828125,-1219.263427734375,1380.88134765625,840.605712890625,-1219.263427734375,1380.88134765625,840.605712890625,-951.6314697265625,1389.0401611328125,843.5753173828125,-1219.263427734375,1380.88134765625,840.605712890625,-951.6314697265625,1389.0401611328125,843.5751953125,-951.6314697265625,1380.88134765625,840.605712890625,-1219.263427734375,1374.230224609375,835.0247192382812,-1219.263427734375,1374.230224609375,835.0247192382812,-951.6314697265625,1380.88134765625,840.605712890625,-1219.263427734375,1374.230224609375,835.0247192382812,-951.6314697265625,1380.88134765625,840.605712890625,-951.6314697265625,1374.230224609375,835.0247192382812,-1219.263427734375,1369.8890380859375,827.505615234375,-1219.263427734375,1369.8890380859375,827.5054931640625,-951.6314697265625,1374.230224609375,835.0247192382812,-1219.263427734375,1369.8890380859375,827.5054931640625,-951.6314697265625,1374.230224609375,835.0247192382812,-951.6314697265625,1369.8890380859375,827.505615234375,-1219.263427734375,1368.38134765625,818.955078125,-1219.263427734375,1368.38134765625,818.9550170898438,-951.6314697265625,1369.8890380859375,827.505615234375,-1219.263427734375,1368.38134765625,818.9550170898438,-951.6314697265625,1369.8890380859375,827.5054931640625,-951.6314697265625,1368.38134765625,818.955078125,-1219.263427734375,1369.8890380859375,810.4044799804688,-1219.263427734375,1369.8890380859375,810.4044799804688,-951.6314697265625,1368.38134765625,818.955078125,-1219.263427734375,1369.8890380859375,810.4044799804688,-951.6314697265625,1368.38134765625,818.9550170898438,-951.6314697265625,1369.8890380859375,810.4044799804688,-1219.263427734375,1374.230224609375,802.8853759765625,-1219.263427734375,1374.230224609375,802.8853149414062,-951.6314697265625,1369.8890380859375,810.4044799804688,-1219.263427734375,1374.230224609375,802.8853149414062,-951.6314697265625,1369.8890380859375,810.4044799804688,-951.6314697265625,1374.230224609375,802.8853759765625,-1219.263427734375,1380.88134765625,797.3043823242188,-1219.263427734375,1380.88134765625,797.3043823242188,-951.6314697265625,1374.230224609375,802.8853759765625,-1219.263427734375,1380.88134765625,797.3043823242188,-951.6314697265625,1374.230224609375,802.8853149414062,-951.6314697265625,1380.88134765625,797.3043823242188,-1219.263427734375,1389.0401611328125,794.3347778320312,-1219.263427734375,1389.0401611328125,794.3347778320312,-951.6314697265625,1380.88134765625,797.3043823242188,-1219.263427734375,1389.0401611328125,794.3347778320312,-951.6314697265625,1380.88134765625,797.3043823242188,-951.6314697265625,1389.0401611328125,794.3347778320312,-1219.263427734375,1397.7225341796875,794.3347778320312,-1219.263427734375,1397.7225341796875,794.3347778320312,-951.6314697265625,1389.0401611328125,794.3347778320312,-1219.263427734375,1397.7225341796875,794.3347778320312,-951.6314697265625,1389.0401611328125,794.3347778320312,-951.6314697265625,1397.7225341796875,794.3347778320312,-1219.263427734375,1405.88134765625,797.3043823242188,-1219.263427734375,1405.88134765625,797.3043823242188,-951.6314697265625,1397.7225341796875,794.3347778320312,-1219.263427734375,1405.88134765625,797.3043823242188,-951.6314697265625,1397.7225341796875,794.3347778320312,-951.6314697265625,1405.88134765625,797.3043823242188,-1219.263427734375,1412.532470703125,802.8853759765625,-1219.263427734375,1412.532470703125,802.8853149414062,-951.6314697265625,1405.88134765625,797.3043823242188,-1219.263427734375,1412.532470703125,802.8853149414062,-951.6314697265625,1405.88134765625,797.3043823242188,-951.6314697265625,1412.532470703125,802.8853759765625,-1219.263427734375,1416.8736572265625,810.4044799804688,-1219.263427734375,1416.8736572265625,810.4044799804688,-951.6314697265625,1412.532470703125,802.8853759765625,-1219.263427734375,1416.8736572265625,810.4044799804688,-951.6314697265625,1412.532470703125,802.8853149414062,-951.6314697265625,1416.8736572265625,810.4044799804688,-1219.263427734375,1418.38134765625,818.955078125,-1219.263427734375,1418.38134765625,818.9550170898438,-951.6314697265625,1416.8736572265625,810.4044799804688,-1219.263427734375,1418.38134765625,818.9550170898438,-951.6314697265625,1416.8736572265625,810.4044799804688,-951.6314697265625,1418.38134765625,818.9550170898438,-951.6314697265625,1416.8736572265625,827.5054931640625,-951.6314697265625,1416.8736572265625,827.5054931640625,-683.9995727539062,1418.38134765625,818.9550170898438,-951.6314697265625,1416.8736572265625,827.5054931640625,-683.9995727539062,1418.38134765625,818.9550170898438,-683.9995727539062,1416.8736572265625,827.5054931640625,-951.6314697265625,1412.532470703125,835.0247192382812,-951.6314697265625,1412.532470703125,835.0247192382812,-683.9995727539062,1416.8736572265625,827.5054931640625,-951.6314697265625,1412.532470703125,835.0247192382812,-683.9995727539062,1416.8736572265625,827.5054931640625,-683.9995727539062,1412.532470703125,835.0247192382812,-951.6314697265625,1405.88134765625,840.605712890625,-951.6314697265625,1405.88134765625,840.6055908203125,-683.9995727539062,1412.532470703125,835.0247192382812,-951.6314697265625,1405.88134765625,840.6055908203125,-683.9995727539062,1412.532470703125,835.0247192382812,-683.9995727539062,1405.88134765625,840.605712890625,-951.6314697265625,1397.7225341796875,843.5751953125,-951.6314697265625,1397.7225341796875,843.5750732421875,-683.9995727539062,1405.88134765625,840.605712890625,-951.6314697265625,1397.7225341796875,843.5750732421875,-683.9995727539062,1405.88134765625,840.6055908203125,-683.9995727539062,1397.7225341796875,843.5751953125,-951.6314697265625,1389.0401611328125,843.5751953125,-951.6314697265625,1389.0401611328125,843.5750732421875,-683.9995727539062,1397.7225341796875,843.5751953125,-951.6314697265625,1389.0401611328125,843.5750732421875,-683.9995727539062,1397.7225341796875,843.5750732421875,-683.9995727539062,1389.0401611328125,843.5751953125,-951.6314697265625,1380.88134765625,840.605712890625,-951.6314697265625,1380.88134765625,840.6055908203125,-683.9995727539062,1389.0401611328125,843.5751953125,-951.6314697265625,1380.88134765625,840.6055908203125,-683.9995727539062,1389.0401611328125,843.5750732421875,-683.9995727539062,1380.88134765625,840.605712890625,-951.6314697265625,1374.230224609375,835.0247192382812,-951.6314697265625,1374.230224609375,835.0247192382812,-683.9995727539062,1380.88134765625,840.605712890625,-951.6314697265625,1374.230224609375,835.0247192382812,-683.9995727539062,1380.88134765625,840.6055908203125,-683.9995727539062,1374.230224609375,835.0247192382812,-951.6314697265625,1369.8890380859375,827.5054931640625,-951.6314697265625,1369.8890380859375,827.5054931640625,-683.9995727539062,1374.230224609375,835.0247192382812,-951.6314697265625,1369.8890380859375,827.5054931640625,-683.9995727539062,1374.230224609375,835.0247192382812,-683.9995727539062,1369.8890380859375,827.5054931640625,-951.6314697265625,1368.38134765625,818.9550170898438,-951.6314697265625,1368.38134765625,818.9550170898438,-683.9995727539062,1369.8890380859375,827.5054931640625,-951.6314697265625,1368.38134765625,818.9550170898438,-683.9995727539062,1369.8890380859375,827.5054931640625,-683.9995727539062,1368.38134765625,818.9550170898438,-951.6314697265625,1369.8890380859375,810.4044799804688,-951.6314697265625,1369.8890380859375,810.4044799804688,-683.9995727539062,1368.38134765625,818.9550170898438,-951.6314697265625,1369.8890380859375,810.4044799804688,-683.9995727539062,1368.38134765625,818.9550170898438,-683.9995727539062,1369.8890380859375,810.4044799804688,-951.6314697265625,1374.230224609375,802.8853149414062,-951.6314697265625,1374.230224609375,802.8853149414062,-683.9995727539062,1369.8890380859375,810.4044799804688,-951.6314697265625,1374.230224609375,802.8853149414062,-683.9995727539062,1369.8890380859375,810.4044799804688,-683.9995727539062,1374.230224609375,802.8853149414062,-951.6314697265625,1380.88134765625,797.3043823242188,-951.6314697265625,1380.88134765625,797.3043212890625,-683.9995727539062,1374.230224609375,802.8853149414062,-951.6314697265625,1380.88134765625,797.3043212890625,-683.9995727539062,1374.230224609375,802.8853149414062,-683.9995727539062,1380.88134765625,797.3043823242188,-951.6314697265625,1389.0401611328125,794.3347778320312,-951.6314697265625,1389.0401611328125,794.3347778320312,-683.9995727539062,1380.88134765625,797.3043823242188,-951.6314697265625,1389.0401611328125,794.3347778320312,-683.9995727539062,1380.88134765625,797.3043212890625,-683.9995727539062,1389.0401611328125,794.3347778320312,-951.6314697265625,1397.7225341796875,794.3347778320312,-951.6314697265625,1397.7225341796875,794.3347778320312,-683.9995727539062,1389.0401611328125,794.3347778320312,-951.6314697265625,1397.7225341796875,794.3347778320312,-683.9995727539062,1389.0401611328125,794.3347778320312,-683.9995727539062,1397.7225341796875,794.3347778320312,-951.6314697265625,1405.88134765625,797.3043823242188,-951.6314697265625,1405.88134765625,797.3043212890625,-683.9995727539062,1397.7225341796875,794.3347778320312,-951.6314697265625,1405.88134765625,797.3043212890625,-683.9995727539062,1397.7225341796875,794.3347778320312,-683.9995727539062,1405.88134765625,797.3043823242188,-951.6314697265625,1412.532470703125,802.8853149414062,-951.6314697265625,1412.532470703125,802.8853149414062,-683.9995727539062,1405.88134765625,797.3043823242188,-951.6314697265625,1412.532470703125,802.8853149414062,-683.9995727539062,1405.88134765625,797.3043212890625,-683.9995727539062,1412.532470703125,802.8853149414062,-951.6314697265625,1416.8736572265625,810.4044799804688,-951.6314697265625,1416.8736572265625,810.4044189453125,-683.9995727539062,1412.532470703125,802.8853149414062,-951.6314697265625,1416.8736572265625,810.4044189453125,-683.9995727539062,1412.532470703125,802.8853149414062,-683.9995727539062,1416.8736572265625,810.4044799804688,-951.6314697265625,1418.38134765625,818.9550170898438,-951.6314697265625,1418.38134765625,818.9550170898438,-683.9995727539062,1416.8736572265625,810.4044799804688,-951.6314697265625,1418.38134765625,818.9550170898438,-683.9995727539062,1416.8736572265625,810.4044189453125,-683.9995727539062,1418.38134765625,818.9550170898438,-683.9995727539062,1416.8736572265625,827.5054931640625,-683.9995727539062,1416.8736572265625,827.50537109375,-416.3677062988281,1418.38134765625,818.9550170898438,-683.9995727539062,1416.8736572265625,827.50537109375,-416.3677062988281,1418.38134765625,818.9548950195312,-416.3677062988281,1416.8736572265625,827.5054931640625,-683.9995727539062,1412.532470703125,835.0247192382812,-683.9995727539062,1412.532470703125,835.0245971679688,-416.3677062988281,1416.8736572265625,827.5054931640625,-683.9995727539062,1412.532470703125,835.0245971679688,-416.3677062988281,1416.8736572265625,827.50537109375,-416.3677062988281,1412.532470703125,835.0247192382812,-683.9995727539062,1405.88134765625,840.6055908203125,-683.9995727539062,1405.88134765625,840.6055297851562,-416.3677062988281,1412.532470703125,835.0247192382812,-683.9995727539062,1405.88134765625,840.6055297851562,-416.3677062988281,1412.532470703125,835.0245971679688,-416.3677062988281,1405.88134765625,840.6055908203125,-683.9995727539062,1397.7225341796875,843.5750732421875,-683.9995727539062,1397.7225341796875,843.5750732421875,-416.3677062988281,1405.88134765625,840.6055908203125,-683.9995727539062,1397.7225341796875,843.5750732421875,-416.3677062988281,1405.88134765625,840.6055297851562,-416.3677062988281,1397.7225341796875,843.5750732421875,-683.9995727539062,1389.0401611328125,843.5750732421875,-683.9995727539062,1389.0401611328125,843.5750732421875,-416.3677062988281,1397.7225341796875,843.5750732421875,-683.9995727539062,1389.0401611328125,843.5750732421875,-416.3677062988281,1397.7225341796875,843.5750732421875,-416.3677062988281,1389.0401611328125,843.5750732421875,-683.9995727539062,1380.88134765625,840.6055908203125,-683.9995727539062,1380.88134765625,840.6055297851562,-416.3677062988281,1389.0401611328125,843.5750732421875,-683.9995727539062,1380.88134765625,840.6055297851562,-416.3677062988281,1389.0401611328125,843.5750732421875,-416.3677062988281,1380.88134765625,840.6055908203125,-683.9995727539062,1374.230224609375,835.0247192382812,-683.9995727539062,1374.230224609375,835.0245971679688,-416.3677062988281,1380.88134765625,840.6055908203125,-683.9995727539062,1374.230224609375,835.0245971679688,-416.3677062988281,1380.88134765625,840.6055297851562,-416.3677062988281,1374.230224609375,835.0247192382812,-683.9995727539062,1369.8890380859375,827.5054931640625,-683.9995727539062,1369.8890380859375,827.50537109375,-416.3677062988281,1374.230224609375,835.0247192382812,-683.9995727539062,1369.8890380859375,827.50537109375,-416.3677062988281,1374.230224609375,835.0245971679688,-416.3677062988281,1369.8890380859375,827.5054931640625,-683.9995727539062,1368.38134765625,818.9550170898438,-683.9995727539062,1368.38134765625,818.9548950195312,-416.3677062988281,1369.8890380859375,827.5054931640625,-683.9995727539062,1368.38134765625,818.9548950195312,-416.3677062988281,1369.8890380859375,827.50537109375,-416.3677062988281,1368.38134765625,818.9550170898438,-683.9995727539062,1369.8890380859375,810.4044799804688,-683.9995727539062,1369.8890380859375,810.4044189453125,-416.3677062988281,1368.38134765625,818.9550170898438,-683.9995727539062,1369.8890380859375,810.4044189453125,-416.3677062988281,1368.38134765625,818.9548950195312,-416.3677062988281,1369.8890380859375,810.4044799804688,-683.9995727539062,1374.230224609375,802.8853149414062,-683.9995727539062,1374.230224609375,802.8853149414062,-416.3677062988281,1369.8890380859375,810.4044799804688,-683.9995727539062,1374.230224609375,802.8853149414062,-416.3677062988281,1369.8890380859375,810.4044189453125,-416.3677062988281,1374.230224609375,802.8853149414062,-683.9995727539062,1380.88134765625,797.3043212890625,-683.9995727539062,1380.88134765625,797.3043212890625,-416.3677062988281,1374.230224609375,802.8853149414062,-683.9995727539062,1380.88134765625,797.3043212890625,-416.3677062988281,1374.230224609375,802.8853149414062,-416.3677062988281,1380.88134765625,797.3043212890625,-683.9995727539062,1389.0401611328125,794.3347778320312,-683.9995727539062,1389.0401611328125,794.334716796875,-416.3677062988281,1380.88134765625,797.3043212890625,-683.9995727539062,1389.0401611328125,794.334716796875,-416.3677062988281,1380.88134765625,797.3043212890625,-416.3677062988281,1389.0401611328125,794.3347778320312,-683.9995727539062,1397.7225341796875,794.3347778320312,-683.9995727539062,1397.7225341796875,794.334716796875,-416.3677062988281,1389.0401611328125,794.3347778320312,-683.9995727539062,1397.7225341796875,794.334716796875,-416.3677062988281,1389.0401611328125,794.334716796875,-416.3677062988281,1397.7225341796875,794.3347778320312,-683.9995727539062,1405.88134765625,797.3043212890625,-683.9995727539062,1405.88134765625,797.3043212890625,-416.3677062988281,1397.7225341796875,794.3347778320312,-683.9995727539062,1405.88134765625,797.3043212890625,-416.3677062988281,1397.7225341796875,794.334716796875,-416.3677062988281,1405.88134765625,797.3043212890625,-683.9995727539062,1412.532470703125,802.8853149414062,-683.9995727539062,1412.532470703125,802.8851928710938,-416.3677062988281,1405.88134765625,797.3043212890625,-683.9995727539062,1412.532470703125,802.8851928710938,-416.3677062988281,1405.88134765625,797.3043212890625,-416.3677062988281,1412.532470703125,802.8853149414062,-683.9995727539062,1416.8736572265625,810.4044189453125,-683.9995727539062,1416.8736572265625,810.4044189453125,-416.3677062988281,1412.532470703125,802.8853149414062,-683.9995727539062,1416.8736572265625,810.4044189453125,-416.3677062988281,1412.532470703125,802.8851928710938,-416.3677062988281,1416.8736572265625,810.4044189453125,-683.9995727539062,1418.38134765625,818.9550170898438,-683.9995727539062,1418.38134765625,818.9548950195312,-416.3677062988281,1416.8736572265625,810.4044189453125,-683.9995727539062,1418.38134765625,818.9548950195312,-416.3677062988281,1416.8736572265625,810.4044189453125,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1416.8736572265625,810.4044189453125,-416.3677062988281,1418.38134765625,818.9548950195312,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1418.38134765625,818.9548950195312,-416.3677062988281,1416.8736572265625,827.50537109375,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1416.8736572265625,827.50537109375,-416.3677062988281,1412.532470703125,835.0245971679688,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1412.532470703125,835.0245971679688,-416.3677062988281,1405.88134765625,840.6055297851562,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1405.88134765625,840.6055297851562,-416.3677062988281,1397.7225341796875,843.5750732421875,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1397.7225341796875,843.5750732421875,-416.3677062988281,1389.0401611328125,843.5750732421875,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1389.0401611328125,843.5750732421875,-416.3677062988281,1380.88134765625,840.6055297851562,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1380.88134765625,840.6055297851562,-416.3677062988281,1374.230224609375,835.0245971679688,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1374.230224609375,835.0245971679688,-416.3677062988281,1369.8890380859375,827.50537109375,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1369.8890380859375,827.50537109375,-416.3677062988281,1368.38134765625,818.9548950195312,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1368.38134765625,818.9548950195312,-416.3677062988281,1369.8890380859375,810.4044189453125,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1369.8890380859375,810.4044189453125,-416.3677062988281,1374.230224609375,802.8853149414062,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1374.230224609375,802.8853149414062,-416.3677062988281,1380.88134765625,797.3043212890625,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1380.88134765625,797.3043212890625,-416.3677062988281,1389.0401611328125,794.334716796875,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1389.0401611328125,794.334716796875,-416.3677062988281,1397.7225341796875,794.334716796875,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1397.7225341796875,794.334716796875,-416.3677062988281,1405.88134765625,797.3043212890625,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1405.88134765625,797.3043212890625,-416.3677062988281,1412.532470703125,802.8851928710938,-416.3677062988281,1393.38134765625,818.9548950195312,-416.3677062988281,1412.532470703125,802.8851928710938,-416.3677062988281,1416.8736572265625,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [1393.38134765625,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466581371704
| }
| }
| },
| {
| "uuid": "DBCCC470-553C-44DF-9408-0ACC1E9DDCC9",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [1493.38134765625,818.955078125,-1754.5272216796875,1512.532470703125,835.0247802734375,-1754.5272216796875,1516.8736572265625,827.505615234375,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1516.8736572265625,827.505615234375,-1754.5272216796875,1518.38134765625,818.955078125,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1497.7225341796875,843.5753173828125,-1754.5272216796875,1505.88134765625,840.6057739257812,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1505.88134765625,840.6057739257812,-1754.5272216796875,1512.532470703125,835.0247802734375,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1480.88134765625,840.6057739257812,-1754.5272216796875,1489.0401611328125,843.5753173828125,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1489.0401611328125,843.5753173828125,-1754.5272216796875,1497.7225341796875,843.5753173828125,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1469.8890380859375,827.505615234375,-1754.5272216796875,1474.230224609375,835.0247802734375,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1474.230224609375,835.0247802734375,-1754.5272216796875,1480.88134765625,840.6057739257812,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1469.8890380859375,810.4047241210938,-1754.5272216796875,1468.38134765625,818.955078125,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1468.38134765625,818.955078125,-1754.5272216796875,1469.8890380859375,827.505615234375,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1480.88134765625,797.3045043945312,-1754.5272216796875,1474.230224609375,802.8853759765625,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1474.230224609375,802.8853759765625,-1754.5272216796875,1469.8890380859375,810.4047241210938,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1497.7225341796875,794.3350219726562,-1754.5272216796875,1489.0401611328125,794.3350219726562,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1489.0401611328125,794.3350219726562,-1754.5272216796875,1480.88134765625,797.3045043945312,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1512.532470703125,802.8853759765625,-1754.5272216796875,1505.88134765625,797.3045043945312,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1505.88134765625,797.3045043945312,-1754.5272216796875,1497.7225341796875,794.3350219726562,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1518.38134765625,818.955078125,-1754.5272216796875,1516.8736572265625,810.4046020507812,-1754.5272216796875,1493.38134765625,818.955078125,-1754.5272216796875,1516.8736572265625,810.4046020507812,-1754.5272216796875,1512.532470703125,802.8853759765625,-1754.5272216796875,1518.38134765625,818.955078125,-1754.5272216796875,1516.8736572265625,827.505615234375,-1754.5272216796875,1516.8736572265625,827.505615234375,-1486.895263671875,1518.38134765625,818.955078125,-1754.5272216796875,1516.8736572265625,827.505615234375,-1486.895263671875,1518.38134765625,818.955078125,-1486.895263671875,1516.8736572265625,827.505615234375,-1754.5272216796875,1512.532470703125,835.0247802734375,-1754.5272216796875,1512.532470703125,835.0247802734375,-1486.895263671875,1516.8736572265625,827.505615234375,-1754.5272216796875,1512.532470703125,835.0247802734375,-1486.895263671875,1516.8736572265625,827.505615234375,-1486.895263671875,1512.532470703125,835.0247802734375,-1754.5272216796875,1505.88134765625,840.6057739257812,-1754.5272216796875,1505.88134765625,840.605712890625,-1486.895263671875,1512.532470703125,835.0247802734375,-1754.5272216796875,1505.88134765625,840.605712890625,-1486.895263671875,1512.532470703125,835.0247802734375,-1486.895263671875,1505.88134765625,840.6057739257812,-1754.5272216796875,1497.7225341796875,843.5753173828125,-1754.5272216796875,1497.7225341796875,843.5753173828125,-1486.895263671875,1505.88134765625,840.6057739257812,-1754.5272216796875,1497.7225341796875,843.5753173828125,-1486.895263671875,1505.88134765625,840.605712890625,-1486.895263671875,1497.7225341796875,843.5753173828125,-1754.5272216796875,1489.0401611328125,843.5753173828125,-1754.5272216796875,1489.0401611328125,843.5753173828125,-1486.895263671875,1497.7225341796875,843.5753173828125,-1754.5272216796875,1489.0401611328125,843.5753173828125,-1486.895263671875,1497.7225341796875,843.5753173828125,-1486.895263671875,1489.0401611328125,843.5753173828125,-1754.5272216796875,1480.88134765625,840.6057739257812,-1754.5272216796875,1480.88134765625,840.605712890625,-1486.895263671875,1489.0401611328125,843.5753173828125,-1754.5272216796875,1480.88134765625,840.605712890625,-1486.895263671875,1489.0401611328125,843.5753173828125,-1486.895263671875,1480.88134765625,840.6057739257812,-1754.5272216796875,1474.230224609375,835.0247802734375,-1754.5272216796875,1474.230224609375,835.0247802734375,-1486.895263671875,1480.88134765625,840.6057739257812,-1754.5272216796875,1474.230224609375,835.0247802734375,-1486.895263671875,1480.88134765625,840.605712890625,-1486.895263671875,1474.230224609375,835.0247802734375,-1754.5272216796875,1469.8890380859375,827.505615234375,-1754.5272216796875,1469.8890380859375,827.505615234375,-1486.895263671875,1474.230224609375,835.0247802734375,-1754.5272216796875,1469.8890380859375,827.505615234375,-1486.895263671875,1474.230224609375,835.0247802734375,-1486.895263671875,1469.8890380859375,827.505615234375,-1754.5272216796875,1468.38134765625,818.955078125,-1754.5272216796875,1468.38134765625,818.955078125,-1486.895263671875,1469.8890380859375,827.505615234375,-1754.5272216796875,1468.38134765625,818.955078125,-1486.895263671875,1469.8890380859375,827.505615234375,-1486.895263671875,1468.38134765625,818.955078125,-1754.5272216796875,1469.8890380859375,810.4047241210938,-1754.5272216796875,1469.8890380859375,810.4046020507812,-1486.895263671875,1468.38134765625,818.955078125,-1754.5272216796875,1469.8890380859375,810.4046020507812,-1486.895263671875,1468.38134765625,818.955078125,-1486.895263671875,1469.8890380859375,810.4047241210938,-1754.5272216796875,1474.230224609375,802.8853759765625,-1754.5272216796875,1474.230224609375,802.8853759765625,-1486.895263671875,1469.8890380859375,810.4047241210938,-1754.5272216796875,1474.230224609375,802.8853759765625,-1486.895263671875,1469.8890380859375,810.4046020507812,-1486.895263671875,1474.230224609375,802.8853759765625,-1754.5272216796875,1480.88134765625,797.3045043945312,-1754.5272216796875,1480.88134765625,797.3043823242188,-1486.895263671875,1474.230224609375,802.8853759765625,-1754.5272216796875,1480.88134765625,797.3043823242188,-1486.895263671875,1474.230224609375,802.8853759765625,-1486.895263671875,1480.88134765625,797.3045043945312,-1754.5272216796875,1489.0401611328125,794.3350219726562,-1754.5272216796875,1489.0401611328125,794.3348999023438,-1486.895263671875,1480.88134765625,797.3045043945312,-1754.5272216796875,1489.0401611328125,794.3348999023438,-1486.895263671875,1480.88134765625,797.3043823242188,-1486.895263671875,1489.0401611328125,794.3350219726562,-1754.5272216796875,1497.7225341796875,794.3350219726562,-1754.5272216796875,1497.7225341796875,794.3348999023438,-1486.895263671875,1489.0401611328125,794.3350219726562,-1754.5272216796875,1497.7225341796875,794.3348999023438,-1486.895263671875,1489.0401611328125,794.3348999023438,-1486.895263671875,1497.7225341796875,794.3350219726562,-1754.5272216796875,1505.88134765625,797.3045043945312,-1754.5272216796875,1505.88134765625,797.3043823242188,-1486.895263671875,1497.7225341796875,794.3350219726562,-1754.5272216796875,1505.88134765625,797.3043823242188,-1486.895263671875,1497.7225341796875,794.3348999023438,-1486.895263671875,1505.88134765625,797.3045043945312,-1754.5272216796875,1512.532470703125,802.8853759765625,-1754.5272216796875,1512.532470703125,802.8853759765625,-1486.895263671875,1505.88134765625,797.3045043945312,-1754.5272216796875,1512.532470703125,802.8853759765625,-1486.895263671875,1505.88134765625,797.3043823242188,-1486.895263671875,1512.532470703125,802.8853759765625,-1754.5272216796875,1516.8736572265625,810.4046020507812,-1754.5272216796875,1516.8736572265625,810.4046020507812,-1486.895263671875,1512.532470703125,802.8853759765625,-1754.5272216796875,1516.8736572265625,810.4046020507812,-1486.895263671875,1512.532470703125,802.8853759765625,-1486.895263671875,1516.8736572265625,810.4046020507812,-1754.5272216796875,1518.38134765625,818.955078125,-1754.5272216796875,1518.38134765625,818.955078125,-1486.895263671875,1516.8736572265625,810.4046020507812,-1754.5272216796875,1518.38134765625,818.955078125,-1486.895263671875,1516.8736572265625,810.4046020507812,-1486.895263671875,1518.38134765625,818.955078125,-1486.895263671875,1516.8736572265625,827.505615234375,-1486.895263671875,1516.8736572265625,827.505615234375,-1219.263427734375,1518.38134765625,818.955078125,-1486.895263671875,1516.8736572265625,827.505615234375,-1219.263427734375,1518.38134765625,818.955078125,-1219.263427734375,1516.8736572265625,827.505615234375,-1486.895263671875,1512.532470703125,835.0247802734375,-1486.895263671875,1512.532470703125,835.0247192382812,-1219.263427734375,1516.8736572265625,827.505615234375,-1486.895263671875,1512.532470703125,835.0247192382812,-1219.263427734375,1516.8736572265625,827.505615234375,-1219.263427734375,1512.532470703125,835.0247802734375,-1486.895263671875,1505.88134765625,840.605712890625,-1486.895263671875,1505.88134765625,840.605712890625,-1219.263427734375,1512.532470703125,835.0247802734375,-1486.895263671875,1505.88134765625,840.605712890625,-1219.263427734375,1512.532470703125,835.0247192382812,-1219.263427734375,1505.88134765625,840.605712890625,-1486.895263671875,1497.7225341796875,843.5753173828125,-1486.895263671875,1497.7225341796875,843.5753173828125,-1219.263427734375,1505.88134765625,840.605712890625,-1486.895263671875,1497.7225341796875,843.5753173828125,-1219.263427734375,1505.88134765625,840.605712890625,-1219.263427734375,1497.7225341796875,843.5753173828125,-1486.895263671875,1489.0401611328125,843.5753173828125,-1486.895263671875,1489.0401611328125,843.5753173828125,-1219.263427734375,1497.7225341796875,843.5753173828125,-1486.895263671875,1489.0401611328125,843.5753173828125,-1219.263427734375,1497.7225341796875,843.5753173828125,-1219.263427734375,1489.0401611328125,843.5753173828125,-1486.895263671875,1480.88134765625,840.605712890625,-1486.895263671875,1480.88134765625,840.605712890625,-1219.263427734375,1489.0401611328125,843.5753173828125,-1486.895263671875,1480.88134765625,840.605712890625,-1219.263427734375,1489.0401611328125,843.5753173828125,-1219.263427734375,1480.88134765625,840.605712890625,-1486.895263671875,1474.230224609375,835.0247802734375,-1486.895263671875,1474.230224609375,835.0247192382812,-1219.263427734375,1480.88134765625,840.605712890625,-1486.895263671875,1474.230224609375,835.0247192382812,-1219.263427734375,1480.88134765625,840.605712890625,-1219.263427734375,1474.230224609375,835.0247802734375,-1486.895263671875,1469.8890380859375,827.505615234375,-1486.895263671875,1469.8890380859375,827.505615234375,-1219.263427734375,1474.230224609375,835.0247802734375,-1486.895263671875,1469.8890380859375,827.505615234375,-1219.263427734375,1474.230224609375,835.0247192382812,-1219.263427734375,1469.8890380859375,827.505615234375,-1486.895263671875,1468.38134765625,818.955078125,-1486.895263671875,1468.38134765625,818.955078125,-1219.263427734375,1469.8890380859375,827.505615234375,-1486.895263671875,1468.38134765625,818.955078125,-1219.263427734375,1469.8890380859375,827.505615234375,-1219.263427734375,1468.38134765625,818.955078125,-1486.895263671875,1469.8890380859375,810.4046020507812,-1486.895263671875,1469.8890380859375,810.4044799804688,-1219.263427734375,1468.38134765625,818.955078125,-1486.895263671875,1469.8890380859375,810.4044799804688,-1219.263427734375,1468.38134765625,818.955078125,-1219.263427734375,1469.8890380859375,810.4046020507812,-1486.895263671875,1474.230224609375,802.8853759765625,-1486.895263671875,1474.230224609375,802.8853759765625,-1219.263427734375,1469.8890380859375,810.4046020507812,-1486.895263671875,1474.230224609375,802.8853759765625,-1219.263427734375,1469.8890380859375,810.4044799804688,-1219.263427734375,1474.230224609375,802.8853759765625,-1486.895263671875,1480.88134765625,797.3043823242188,-1486.895263671875,1480.88134765625,797.3043823242188,-1219.263427734375,1474.230224609375,802.8853759765625,-1486.895263671875,1480.88134765625,797.3043823242188,-1219.263427734375,1474.230224609375,802.8853759765625,-1219.263427734375,1480.88134765625,797.3043823242188,-1486.895263671875,1489.0401611328125,794.3348999023438,-1486.895263671875,1489.0401611328125,794.3347778320312,-1219.263427734375,1480.88134765625,797.3043823242188,-1486.895263671875,1489.0401611328125,794.3347778320312,-1219.263427734375,1480.88134765625,797.3043823242188,-1219.263427734375,1489.0401611328125,794.3348999023438,-1486.895263671875,1497.7225341796875,794.3348999023438,-1486.895263671875,1497.7225341796875,794.3347778320312,-1219.263427734375,1489.0401611328125,794.3348999023438,-1486.895263671875,1497.7225341796875,794.3347778320312,-1219.263427734375,1489.0401611328125,794.3347778320312,-1219.263427734375,1497.7225341796875,794.3348999023438,-1486.895263671875,1505.88134765625,797.3043823242188,-1486.895263671875,1505.88134765625,797.3043823242188,-1219.263427734375,1497.7225341796875,794.3348999023438,-1486.895263671875,1505.88134765625,797.3043823242188,-1219.263427734375,1497.7225341796875,794.3347778320312,-1219.263427734375,1505.88134765625,797.3043823242188,-1486.895263671875,1512.532470703125,802.8853759765625,-1486.895263671875,1512.532470703125,802.8853759765625,-1219.263427734375,1505.88134765625,797.3043823242188,-1486.895263671875,1512.532470703125,802.8853759765625,-1219.263427734375,1505.88134765625,797.3043823242188,-1219.263427734375,1512.532470703125,802.8853759765625,-1486.895263671875,1516.8736572265625,810.4046020507812,-1486.895263671875,1516.8736572265625,810.4044799804688,-1219.263427734375,1512.532470703125,802.8853759765625,-1486.895263671875,1516.8736572265625,810.4044799804688,-1219.263427734375,1512.532470703125,802.8853759765625,-1219.263427734375,1516.8736572265625,810.4046020507812,-1486.895263671875,1518.38134765625,818.955078125,-1486.895263671875,1518.38134765625,818.955078125,-1219.263427734375,1516.8736572265625,810.4046020507812,-1486.895263671875,1518.38134765625,818.955078125,-1219.263427734375,1516.8736572265625,810.4044799804688,-1219.263427734375,1518.38134765625,818.955078125,-1219.263427734375,1516.8736572265625,827.505615234375,-1219.263427734375,1516.8736572265625,827.5054931640625,-951.6314697265625,1518.38134765625,818.955078125,-1219.263427734375,1516.8736572265625,827.5054931640625,-951.6314697265625,1518.38134765625,818.9550170898438,-951.6314697265625,1516.8736572265625,827.505615234375,-1219.263427734375,1512.532470703125,835.0247192382812,-1219.263427734375,1512.532470703125,835.0247192382812,-951.6314697265625,1516.8736572265625,827.505615234375,-1219.263427734375,1512.532470703125,835.0247192382812,-951.6314697265625,1516.8736572265625,827.5054931640625,-951.6314697265625,1512.532470703125,835.0247192382812,-1219.263427734375,1505.88134765625,840.605712890625,-1219.263427734375,1505.88134765625,840.605712890625,-951.6314697265625,1512.532470703125,835.0247192382812,-1219.263427734375,1505.88134765625,840.605712890625,-951.6314697265625,1512.532470703125,835.0247192382812,-951.6314697265625,1505.88134765625,840.605712890625,-1219.263427734375,1497.7225341796875,843.5753173828125,-1219.263427734375,1497.7225341796875,843.5751953125,-951.6314697265625,1505.88134765625,840.605712890625,-1219.263427734375,1497.7225341796875,843.5751953125,-951.6314697265625,1505.88134765625,840.605712890625,-951.6314697265625,1497.7225341796875,843.5753173828125,-1219.263427734375,1489.0401611328125,843.5753173828125,-1219.263427734375,1489.0401611328125,843.5751953125,-951.6314697265625,1497.7225341796875,843.5753173828125,-1219.263427734375,1489.0401611328125,843.5751953125,-951.6314697265625,1497.7225341796875,843.5751953125,-951.6314697265625,1489.0401611328125,843.5753173828125,-1219.263427734375,1480.88134765625,840.605712890625,-1219.263427734375,1480.88134765625,840.605712890625,-951.6314697265625,1489.0401611328125,843.5753173828125,-1219.263427734375,1480.88134765625,840.605712890625,-951.6314697265625,1489.0401611328125,843.5751953125,-951.6314697265625,1480.88134765625,840.605712890625,-1219.263427734375,1474.230224609375,835.0247192382812,-1219.263427734375,1474.230224609375,835.0247192382812,-951.6314697265625,1480.88134765625,840.605712890625,-1219.263427734375,1474.230224609375,835.0247192382812,-951.6314697265625,1480.88134765625,840.605712890625,-951.6314697265625,1474.230224609375,835.0247192382812,-1219.263427734375,1469.8890380859375,827.505615234375,-1219.263427734375,1469.8890380859375,827.5054931640625,-951.6314697265625,1474.230224609375,835.0247192382812,-1219.263427734375,1469.8890380859375,827.5054931640625,-951.6314697265625,1474.230224609375,835.0247192382812,-951.6314697265625,1469.8890380859375,827.505615234375,-1219.263427734375,1468.38134765625,818.955078125,-1219.263427734375,1468.38134765625,818.9550170898438,-951.6314697265625,1469.8890380859375,827.505615234375,-1219.263427734375,1468.38134765625,818.9550170898438,-951.6314697265625,1469.8890380859375,827.5054931640625,-951.6314697265625,1468.38134765625,818.955078125,-1219.263427734375,1469.8890380859375,810.4044799804688,-1219.263427734375,1469.8890380859375,810.4044799804688,-951.6314697265625,1468.38134765625,818.955078125,-1219.263427734375,1469.8890380859375,810.4044799804688,-951.6314697265625,1468.38134765625,818.9550170898438,-951.6314697265625,1469.8890380859375,810.4044799804688,-1219.263427734375,1474.230224609375,802.8853759765625,-1219.263427734375,1474.230224609375,802.8853149414062,-951.6314697265625,1469.8890380859375,810.4044799804688,-1219.263427734375,1474.230224609375,802.8853149414062,-951.6314697265625,1469.8890380859375,810.4044799804688,-951.6314697265625,1474.230224609375,802.8853759765625,-1219.263427734375,1480.88134765625,797.3043823242188,-1219.263427734375,1480.88134765625,797.3043823242188,-951.6314697265625,1474.230224609375,802.8853759765625,-1219.263427734375,1480.88134765625,797.3043823242188,-951.6314697265625,1474.230224609375,802.8853149414062,-951.6314697265625,1480.88134765625,797.3043823242188,-1219.263427734375,1489.0401611328125,794.3347778320312,-1219.263427734375,1489.0401611328125,794.3347778320312,-951.6314697265625,1480.88134765625,797.3043823242188,-1219.263427734375,1489.0401611328125,794.3347778320312,-951.6314697265625,1480.88134765625,797.3043823242188,-951.6314697265625,1489.0401611328125,794.3347778320312,-1219.263427734375,1497.7225341796875,794.3347778320312,-1219.263427734375,1497.7225341796875,794.3347778320312,-951.6314697265625,1489.0401611328125,794.3347778320312,-1219.263427734375,1497.7225341796875,794.3347778320312,-951.6314697265625,1489.0401611328125,794.3347778320312,-951.6314697265625,1497.7225341796875,794.3347778320312,-1219.263427734375,1505.88134765625,797.3043823242188,-1219.263427734375,1505.88134765625,797.3043823242188,-951.6314697265625,1497.7225341796875,794.3347778320312,-1219.263427734375,1505.88134765625,797.3043823242188,-951.6314697265625,1497.7225341796875,794.3347778320312,-951.6314697265625,1505.88134765625,797.3043823242188,-1219.263427734375,1512.532470703125,802.8853759765625,-1219.263427734375,1512.532470703125,802.8853149414062,-951.6314697265625,1505.88134765625,797.3043823242188,-1219.263427734375,1512.532470703125,802.8853149414062,-951.6314697265625,1505.88134765625,797.3043823242188,-951.6314697265625,1512.532470703125,802.8853759765625,-1219.263427734375,1516.8736572265625,810.4044799804688,-1219.263427734375,1516.8736572265625,810.4044799804688,-951.6314697265625,1512.532470703125,802.8853759765625,-1219.263427734375,1516.8736572265625,810.4044799804688,-951.6314697265625,1512.532470703125,802.8853149414062,-951.6314697265625,1516.8736572265625,810.4044799804688,-1219.263427734375,1518.38134765625,818.955078125,-1219.263427734375,1518.38134765625,818.9550170898438,-951.6314697265625,1516.8736572265625,810.4044799804688,-1219.263427734375,1518.38134765625,818.9550170898438,-951.6314697265625,1516.8736572265625,810.4044799804688,-951.6314697265625,1518.38134765625,818.9550170898438,-951.6314697265625,1516.8736572265625,827.5054931640625,-951.6314697265625,1516.8736572265625,827.5054931640625,-683.9995727539062,1518.38134765625,818.9550170898438,-951.6314697265625,1516.8736572265625,827.5054931640625,-683.9995727539062,1518.38134765625,818.9550170898438,-683.9995727539062,1516.8736572265625,827.5054931640625,-951.6314697265625,1512.532470703125,835.0247192382812,-951.6314697265625,1512.532470703125,835.0247192382812,-683.9995727539062,1516.8736572265625,827.5054931640625,-951.6314697265625,1512.532470703125,835.0247192382812,-683.9995727539062,1516.8736572265625,827.5054931640625,-683.9995727539062,1512.532470703125,835.0247192382812,-951.6314697265625,1505.88134765625,840.605712890625,-951.6314697265625,1505.88134765625,840.6055908203125,-683.9995727539062,1512.532470703125,835.0247192382812,-951.6314697265625,1505.88134765625,840.6055908203125,-683.9995727539062,1512.532470703125,835.0247192382812,-683.9995727539062,1505.88134765625,840.605712890625,-951.6314697265625,1497.7225341796875,843.5751953125,-951.6314697265625,1497.7225341796875,843.5750732421875,-683.9995727539062,1505.88134765625,840.605712890625,-951.6314697265625,1497.7225341796875,843.5750732421875,-683.9995727539062,1505.88134765625,840.6055908203125,-683.9995727539062,1497.7225341796875,843.5751953125,-951.6314697265625,1489.0401611328125,843.5751953125,-951.6314697265625,1489.0401611328125,843.5750732421875,-683.9995727539062,1497.7225341796875,843.5751953125,-951.6314697265625,1489.0401611328125,843.5750732421875,-683.9995727539062,1497.7225341796875,843.5750732421875,-683.9995727539062,1489.0401611328125,843.5751953125,-951.6314697265625,1480.88134765625,840.605712890625,-951.6314697265625,1480.88134765625,840.6055908203125,-683.9995727539062,1489.0401611328125,843.5751953125,-951.6314697265625,1480.88134765625,840.6055908203125,-683.9995727539062,1489.0401611328125,843.5750732421875,-683.9995727539062,1480.88134765625,840.605712890625,-951.6314697265625,1474.230224609375,835.0247192382812,-951.6314697265625,1474.230224609375,835.0247192382812,-683.9995727539062,1480.88134765625,840.605712890625,-951.6314697265625,1474.230224609375,835.0247192382812,-683.9995727539062,1480.88134765625,840.6055908203125,-683.9995727539062,1474.230224609375,835.0247192382812,-951.6314697265625,1469.8890380859375,827.5054931640625,-951.6314697265625,1469.8890380859375,827.5054931640625,-683.9995727539062,1474.230224609375,835.0247192382812,-951.6314697265625,1469.8890380859375,827.5054931640625,-683.9995727539062,1474.230224609375,835.0247192382812,-683.9995727539062,1469.8890380859375,827.5054931640625,-951.6314697265625,1468.38134765625,818.9550170898438,-951.6314697265625,1468.38134765625,818.9550170898438,-683.9995727539062,1469.8890380859375,827.5054931640625,-951.6314697265625,1468.38134765625,818.9550170898438,-683.9995727539062,1469.8890380859375,827.5054931640625,-683.9995727539062,1468.38134765625,818.9550170898438,-951.6314697265625,1469.8890380859375,810.4044799804688,-951.6314697265625,1469.8890380859375,810.4044799804688,-683.9995727539062,1468.38134765625,818.9550170898438,-951.6314697265625,1469.8890380859375,810.4044799804688,-683.9995727539062,1468.38134765625,818.9550170898438,-683.9995727539062,1469.8890380859375,810.4044799804688,-951.6314697265625,1474.230224609375,802.8853149414062,-951.6314697265625,1474.230224609375,802.8853149414062,-683.9995727539062,1469.8890380859375,810.4044799804688,-951.6314697265625,1474.230224609375,802.8853149414062,-683.9995727539062,1469.8890380859375,810.4044799804688,-683.9995727539062,1474.230224609375,802.8853149414062,-951.6314697265625,1480.88134765625,797.3043823242188,-951.6314697265625,1480.88134765625,797.3043212890625,-683.9995727539062,1474.230224609375,802.8853149414062,-951.6314697265625,1480.88134765625,797.3043212890625,-683.9995727539062,1474.230224609375,802.8853149414062,-683.9995727539062,1480.88134765625,797.3043823242188,-951.6314697265625,1489.0401611328125,794.3347778320312,-951.6314697265625,1489.0401611328125,794.3347778320312,-683.9995727539062,1480.88134765625,797.3043823242188,-951.6314697265625,1489.0401611328125,794.3347778320312,-683.9995727539062,1480.88134765625,797.3043212890625,-683.9995727539062,1489.0401611328125,794.3347778320312,-951.6314697265625,1497.7225341796875,794.3347778320312,-951.6314697265625,1497.7225341796875,794.3347778320312,-683.9995727539062,1489.0401611328125,794.3347778320312,-951.6314697265625,1497.7225341796875,794.3347778320312,-683.9995727539062,1489.0401611328125,794.3347778320312,-683.9995727539062,1497.7225341796875,794.3347778320312,-951.6314697265625,1505.88134765625,797.3043823242188,-951.6314697265625,1505.88134765625,797.3043212890625,-683.9995727539062,1497.7225341796875,794.3347778320312,-951.6314697265625,1505.88134765625,797.3043212890625,-683.9995727539062,1497.7225341796875,794.3347778320312,-683.9995727539062,1505.88134765625,797.3043823242188,-951.6314697265625,1512.532470703125,802.8853149414062,-951.6314697265625,1512.532470703125,802.8853149414062,-683.9995727539062,1505.88134765625,797.3043823242188,-951.6314697265625,1512.532470703125,802.8853149414062,-683.9995727539062,1505.88134765625,797.3043212890625,-683.9995727539062,1512.532470703125,802.8853149414062,-951.6314697265625,1516.8736572265625,810.4044799804688,-951.6314697265625,1516.8736572265625,810.4044189453125,-683.9995727539062,1512.532470703125,802.8853149414062,-951.6314697265625,1516.8736572265625,810.4044189453125,-683.9995727539062,1512.532470703125,802.8853149414062,-683.9995727539062,1516.8736572265625,810.4044799804688,-951.6314697265625,1518.38134765625,818.9550170898438,-951.6314697265625,1518.38134765625,818.9550170898438,-683.9995727539062,1516.8736572265625,810.4044799804688,-951.6314697265625,1518.38134765625,818.9550170898438,-683.9995727539062,1516.8736572265625,810.4044189453125,-683.9995727539062,1518.38134765625,818.9550170898438,-683.9995727539062,1516.8736572265625,827.5054931640625,-683.9995727539062,1516.8736572265625,827.50537109375,-416.3677062988281,1518.38134765625,818.9550170898438,-683.9995727539062,1516.8736572265625,827.50537109375,-416.3677062988281,1518.38134765625,818.9548950195312,-416.3677062988281,1516.8736572265625,827.5054931640625,-683.9995727539062,1512.532470703125,835.0247192382812,-683.9995727539062,1512.532470703125,835.0245971679688,-416.3677062988281,1516.8736572265625,827.5054931640625,-683.9995727539062,1512.532470703125,835.0245971679688,-416.3677062988281,1516.8736572265625,827.50537109375,-416.3677062988281,1512.532470703125,835.0247192382812,-683.9995727539062,1505.88134765625,840.6055908203125,-683.9995727539062,1505.88134765625,840.6055297851562,-416.3677062988281,1512.532470703125,835.0247192382812,-683.9995727539062,1505.88134765625,840.6055297851562,-416.3677062988281,1512.532470703125,835.0245971679688,-416.3677062988281,1505.88134765625,840.6055908203125,-683.9995727539062,1497.7225341796875,843.5750732421875,-683.9995727539062,1497.7225341796875,843.5750732421875,-416.3677062988281,1505.88134765625,840.6055908203125,-683.9995727539062,1497.7225341796875,843.5750732421875,-416.3677062988281,1505.88134765625,840.6055297851562,-416.3677062988281,1497.7225341796875,843.5750732421875,-683.9995727539062,1489.0401611328125,843.5750732421875,-683.9995727539062,1489.0401611328125,843.5750732421875,-416.3677062988281,1497.7225341796875,843.5750732421875,-683.9995727539062,1489.0401611328125,843.5750732421875,-416.3677062988281,1497.7225341796875,843.5750732421875,-416.3677062988281,1489.0401611328125,843.5750732421875,-683.9995727539062,1480.88134765625,840.6055908203125,-683.9995727539062,1480.88134765625,840.6055297851562,-416.3677062988281,1489.0401611328125,843.5750732421875,-683.9995727539062,1480.88134765625,840.6055297851562,-416.3677062988281,1489.0401611328125,843.5750732421875,-416.3677062988281,1480.88134765625,840.6055908203125,-683.9995727539062,1474.230224609375,835.0247192382812,-683.9995727539062,1474.230224609375,835.0245971679688,-416.3677062988281,1480.88134765625,840.6055908203125,-683.9995727539062,1474.230224609375,835.0245971679688,-416.3677062988281,1480.88134765625,840.6055297851562,-416.3677062988281,1474.230224609375,835.0247192382812,-683.9995727539062,1469.8890380859375,827.5054931640625,-683.9995727539062,1469.8890380859375,827.50537109375,-416.3677062988281,1474.230224609375,835.0247192382812,-683.9995727539062,1469.8890380859375,827.50537109375,-416.3677062988281,1474.230224609375,835.0245971679688,-416.3677062988281,1469.8890380859375,827.5054931640625,-683.9995727539062,1468.38134765625,818.9550170898438,-683.9995727539062,1468.38134765625,818.9548950195312,-416.3677062988281,1469.8890380859375,827.5054931640625,-683.9995727539062,1468.38134765625,818.9548950195312,-416.3677062988281,1469.8890380859375,827.50537109375,-416.3677062988281,1468.38134765625,818.9550170898438,-683.9995727539062,1469.8890380859375,810.4044799804688,-683.9995727539062,1469.8890380859375,810.4044189453125,-416.3677062988281,1468.38134765625,818.9550170898438,-683.9995727539062,1469.8890380859375,810.4044189453125,-416.3677062988281,1468.38134765625,818.9548950195312,-416.3677062988281,1469.8890380859375,810.4044799804688,-683.9995727539062,1474.230224609375,802.8853149414062,-683.9995727539062,1474.230224609375,802.8853149414062,-416.3677062988281,1469.8890380859375,810.4044799804688,-683.9995727539062,1474.230224609375,802.8853149414062,-416.3677062988281,1469.8890380859375,810.4044189453125,-416.3677062988281,1474.230224609375,802.8853149414062,-683.9995727539062,1480.88134765625,797.3043212890625,-683.9995727539062,1480.88134765625,797.3043212890625,-416.3677062988281,1474.230224609375,802.8853149414062,-683.9995727539062,1480.88134765625,797.3043212890625,-416.3677062988281,1474.230224609375,802.8853149414062,-416.3677062988281,1480.88134765625,797.3043212890625,-683.9995727539062,1489.0401611328125,794.3347778320312,-683.9995727539062,1489.0401611328125,794.334716796875,-416.3677062988281,1480.88134765625,797.3043212890625,-683.9995727539062,1489.0401611328125,794.334716796875,-416.3677062988281,1480.88134765625,797.3043212890625,-416.3677062988281,1489.0401611328125,794.3347778320312,-683.9995727539062,1497.7225341796875,794.3347778320312,-683.9995727539062,1497.7225341796875,794.334716796875,-416.3677062988281,1489.0401611328125,794.3347778320312,-683.9995727539062,1497.7225341796875,794.334716796875,-416.3677062988281,1489.0401611328125,794.334716796875,-416.3677062988281,1497.7225341796875,794.3347778320312,-683.9995727539062,1505.88134765625,797.3043212890625,-683.9995727539062,1505.88134765625,797.3043212890625,-416.3677062988281,1497.7225341796875,794.3347778320312,-683.9995727539062,1505.88134765625,797.3043212890625,-416.3677062988281,1497.7225341796875,794.334716796875,-416.3677062988281,1505.88134765625,797.3043212890625,-683.9995727539062,1512.532470703125,802.8853149414062,-683.9995727539062,1512.532470703125,802.8851928710938,-416.3677062988281,1505.88134765625,797.3043212890625,-683.9995727539062,1512.532470703125,802.8851928710938,-416.3677062988281,1505.88134765625,797.3043212890625,-416.3677062988281,1512.532470703125,802.8853149414062,-683.9995727539062,1516.8736572265625,810.4044189453125,-683.9995727539062,1516.8736572265625,810.4044189453125,-416.3677062988281,1512.532470703125,802.8853149414062,-683.9995727539062,1516.8736572265625,810.4044189453125,-416.3677062988281,1512.532470703125,802.8851928710938,-416.3677062988281,1516.8736572265625,810.4044189453125,-683.9995727539062,1518.38134765625,818.9550170898438,-683.9995727539062,1518.38134765625,818.9548950195312,-416.3677062988281,1516.8736572265625,810.4044189453125,-683.9995727539062,1518.38134765625,818.9548950195312,-416.3677062988281,1516.8736572265625,810.4044189453125,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1516.8736572265625,810.4044189453125,-416.3677062988281,1518.38134765625,818.9548950195312,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1518.38134765625,818.9548950195312,-416.3677062988281,1516.8736572265625,827.50537109375,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1516.8736572265625,827.50537109375,-416.3677062988281,1512.532470703125,835.0245971679688,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1512.532470703125,835.0245971679688,-416.3677062988281,1505.88134765625,840.6055297851562,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1505.88134765625,840.6055297851562,-416.3677062988281,1497.7225341796875,843.5750732421875,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1497.7225341796875,843.5750732421875,-416.3677062988281,1489.0401611328125,843.5750732421875,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1489.0401611328125,843.5750732421875,-416.3677062988281,1480.88134765625,840.6055297851562,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1480.88134765625,840.6055297851562,-416.3677062988281,1474.230224609375,835.0245971679688,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1474.230224609375,835.0245971679688,-416.3677062988281,1469.8890380859375,827.50537109375,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1469.8890380859375,827.50537109375,-416.3677062988281,1468.38134765625,818.9548950195312,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1468.38134765625,818.9548950195312,-416.3677062988281,1469.8890380859375,810.4044189453125,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1469.8890380859375,810.4044189453125,-416.3677062988281,1474.230224609375,802.8853149414062,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1474.230224609375,802.8853149414062,-416.3677062988281,1480.88134765625,797.3043212890625,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1480.88134765625,797.3043212890625,-416.3677062988281,1489.0401611328125,794.334716796875,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1489.0401611328125,794.334716796875,-416.3677062988281,1497.7225341796875,794.334716796875,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1497.7225341796875,794.334716796875,-416.3677062988281,1505.88134765625,797.3043212890625,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1505.88134765625,797.3043212890625,-416.3677062988281,1512.532470703125,802.8851928710938,-416.3677062988281,1493.38134765625,818.9548950195312,-416.3677062988281,1512.532470703125,802.8851928710938,-416.3677062988281,1516.8736572265625,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [1493.38134765625,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466581371704
| }
| }
| },
| {
| "uuid": "BDD39BEB-7700-440D-9EB9-6382CEEB370F",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [1593.38134765625,818.955078125,-1754.5272216796875,1612.532470703125,835.0247802734375,-1754.5272216796875,1616.8736572265625,827.505615234375,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1616.8736572265625,827.505615234375,-1754.5272216796875,1618.38134765625,818.955078125,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1597.7225341796875,843.5753173828125,-1754.5272216796875,1605.88134765625,840.6057739257812,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1605.88134765625,840.6057739257812,-1754.5272216796875,1612.532470703125,835.0247802734375,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1580.88134765625,840.6057739257812,-1754.5272216796875,1589.0401611328125,843.5753173828125,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1589.0401611328125,843.5753173828125,-1754.5272216796875,1597.7225341796875,843.5753173828125,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1569.8890380859375,827.505615234375,-1754.5272216796875,1574.230224609375,835.0247802734375,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1574.230224609375,835.0247802734375,-1754.5272216796875,1580.88134765625,840.6057739257812,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1569.8890380859375,810.4047241210938,-1754.5272216796875,1568.38134765625,818.955078125,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1568.38134765625,818.955078125,-1754.5272216796875,1569.8890380859375,827.505615234375,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1580.88134765625,797.3045043945312,-1754.5272216796875,1574.230224609375,802.8853759765625,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1574.230224609375,802.8853759765625,-1754.5272216796875,1569.8890380859375,810.4047241210938,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1597.7225341796875,794.3350219726562,-1754.5272216796875,1589.0401611328125,794.3350219726562,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1589.0401611328125,794.3350219726562,-1754.5272216796875,1580.88134765625,797.3045043945312,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1612.532470703125,802.8853759765625,-1754.5272216796875,1605.88134765625,797.3045043945312,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1605.88134765625,797.3045043945312,-1754.5272216796875,1597.7225341796875,794.3350219726562,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1618.38134765625,818.955078125,-1754.5272216796875,1616.8736572265625,810.4046020507812,-1754.5272216796875,1593.38134765625,818.955078125,-1754.5272216796875,1616.8736572265625,810.4046020507812,-1754.5272216796875,1612.532470703125,802.8853759765625,-1754.5272216796875,1618.38134765625,818.955078125,-1754.5272216796875,1616.8736572265625,827.505615234375,-1754.5272216796875,1616.8736572265625,827.505615234375,-1486.895263671875,1618.38134765625,818.955078125,-1754.5272216796875,1616.8736572265625,827.505615234375,-1486.895263671875,1618.38134765625,818.955078125,-1486.895263671875,1616.8736572265625,827.505615234375,-1754.5272216796875,1612.532470703125,835.0247802734375,-1754.5272216796875,1612.532470703125,835.0247802734375,-1486.895263671875,1616.8736572265625,827.505615234375,-1754.5272216796875,1612.532470703125,835.0247802734375,-1486.895263671875,1616.8736572265625,827.505615234375,-1486.895263671875,1612.532470703125,835.0247802734375,-1754.5272216796875,1605.88134765625,840.6057739257812,-1754.5272216796875,1605.88134765625,840.605712890625,-1486.895263671875,1612.532470703125,835.0247802734375,-1754.5272216796875,1605.88134765625,840.605712890625,-1486.895263671875,1612.532470703125,835.0247802734375,-1486.895263671875,1605.88134765625,840.6057739257812,-1754.5272216796875,1597.7225341796875,843.5753173828125,-1754.5272216796875,1597.7225341796875,843.5753173828125,-1486.895263671875,1605.88134765625,840.6057739257812,-1754.5272216796875,1597.7225341796875,843.5753173828125,-1486.895263671875,1605.88134765625,840.605712890625,-1486.895263671875,1597.7225341796875,843.5753173828125,-1754.5272216796875,1589.0401611328125,843.5753173828125,-1754.5272216796875,1589.0401611328125,843.5753173828125,-1486.895263671875,1597.7225341796875,843.5753173828125,-1754.5272216796875,1589.0401611328125,843.5753173828125,-1486.895263671875,1597.7225341796875,843.5753173828125,-1486.895263671875,1589.0401611328125,843.5753173828125,-1754.5272216796875,1580.88134765625,840.6057739257812,-1754.5272216796875,1580.88134765625,840.605712890625,-1486.895263671875,1589.0401611328125,843.5753173828125,-1754.5272216796875,1580.88134765625,840.605712890625,-1486.895263671875,1589.0401611328125,843.5753173828125,-1486.895263671875,1580.88134765625,840.6057739257812,-1754.5272216796875,1574.230224609375,835.0247802734375,-1754.5272216796875,1574.230224609375,835.0247802734375,-1486.895263671875,1580.88134765625,840.6057739257812,-1754.5272216796875,1574.230224609375,835.0247802734375,-1486.895263671875,1580.88134765625,840.605712890625,-1486.895263671875,1574.230224609375,835.0247802734375,-1754.5272216796875,1569.8890380859375,827.505615234375,-1754.5272216796875,1569.8890380859375,827.505615234375,-1486.895263671875,1574.230224609375,835.0247802734375,-1754.5272216796875,1569.8890380859375,827.505615234375,-1486.895263671875,1574.230224609375,835.0247802734375,-1486.895263671875,1569.8890380859375,827.505615234375,-1754.5272216796875,1568.38134765625,818.955078125,-1754.5272216796875,1568.38134765625,818.955078125,-1486.895263671875,1569.8890380859375,827.505615234375,-1754.5272216796875,1568.38134765625,818.955078125,-1486.895263671875,1569.8890380859375,827.505615234375,-1486.895263671875,1568.38134765625,818.955078125,-1754.5272216796875,1569.8890380859375,810.4047241210938,-1754.5272216796875,1569.8890380859375,810.4046020507812,-1486.895263671875,1568.38134765625,818.955078125,-1754.5272216796875,1569.8890380859375,810.4046020507812,-1486.895263671875,1568.38134765625,818.955078125,-1486.895263671875,1569.8890380859375,810.4047241210938,-1754.5272216796875,1574.230224609375,802.8853759765625,-1754.5272216796875,1574.230224609375,802.8853759765625,-1486.895263671875,1569.8890380859375,810.4047241210938,-1754.5272216796875,1574.230224609375,802.8853759765625,-1486.895263671875,1569.8890380859375,810.4046020507812,-1486.895263671875,1574.230224609375,802.8853759765625,-1754.5272216796875,1580.88134765625,797.3045043945312,-1754.5272216796875,1580.88134765625,797.3043823242188,-1486.895263671875,1574.230224609375,802.8853759765625,-1754.5272216796875,1580.88134765625,797.3043823242188,-1486.895263671875,1574.230224609375,802.8853759765625,-1486.895263671875,1580.88134765625,797.3045043945312,-1754.5272216796875,1589.0401611328125,794.3350219726562,-1754.5272216796875,1589.0401611328125,794.3348999023438,-1486.895263671875,1580.88134765625,797.3045043945312,-1754.5272216796875,1589.0401611328125,794.3348999023438,-1486.895263671875,1580.88134765625,797.3043823242188,-1486.895263671875,1589.0401611328125,794.3350219726562,-1754.5272216796875,1597.7225341796875,794.3350219726562,-1754.5272216796875,1597.7225341796875,794.3348999023438,-1486.895263671875,1589.0401611328125,794.3350219726562,-1754.5272216796875,1597.7225341796875,794.3348999023438,-1486.895263671875,1589.0401611328125,794.3348999023438,-1486.895263671875,1597.7225341796875,794.3350219726562,-1754.5272216796875,1605.88134765625,797.3045043945312,-1754.5272216796875,1605.88134765625,797.3043823242188,-1486.895263671875,1597.7225341796875,794.3350219726562,-1754.5272216796875,1605.88134765625,797.3043823242188,-1486.895263671875,1597.7225341796875,794.3348999023438,-1486.895263671875,1605.88134765625,797.3045043945312,-1754.5272216796875,1612.532470703125,802.8853759765625,-1754.5272216796875,1612.532470703125,802.8853759765625,-1486.895263671875,1605.88134765625,797.3045043945312,-1754.5272216796875,1612.532470703125,802.8853759765625,-1486.895263671875,1605.88134765625,797.3043823242188,-1486.895263671875,1612.532470703125,802.8853759765625,-1754.5272216796875,1616.8736572265625,810.4046020507812,-1754.5272216796875,1616.8736572265625,810.4046020507812,-1486.895263671875,1612.532470703125,802.8853759765625,-1754.5272216796875,1616.8736572265625,810.4046020507812,-1486.895263671875,1612.532470703125,802.8853759765625,-1486.895263671875,1616.8736572265625,810.4046020507812,-1754.5272216796875,1618.38134765625,818.955078125,-1754.5272216796875,1618.38134765625,818.955078125,-1486.895263671875,1616.8736572265625,810.4046020507812,-1754.5272216796875,1618.38134765625,818.955078125,-1486.895263671875,1616.8736572265625,810.4046020507812,-1486.895263671875,1618.38134765625,818.955078125,-1486.895263671875,1616.8736572265625,827.505615234375,-1486.895263671875,1616.8736572265625,827.505615234375,-1219.263427734375,1618.38134765625,818.955078125,-1486.895263671875,1616.8736572265625,827.505615234375,-1219.263427734375,1618.38134765625,818.955078125,-1219.263427734375,1616.8736572265625,827.505615234375,-1486.895263671875,1612.532470703125,835.0247802734375,-1486.895263671875,1612.532470703125,835.0247192382812,-1219.263427734375,1616.8736572265625,827.505615234375,-1486.895263671875,1612.532470703125,835.0247192382812,-1219.263427734375,1616.8736572265625,827.505615234375,-1219.263427734375,1612.532470703125,835.0247802734375,-1486.895263671875,1605.88134765625,840.605712890625,-1486.895263671875,1605.88134765625,840.605712890625,-1219.263427734375,1612.532470703125,835.0247802734375,-1486.895263671875,1605.88134765625,840.605712890625,-1219.263427734375,1612.532470703125,835.0247192382812,-1219.263427734375,1605.88134765625,840.605712890625,-1486.895263671875,1597.7225341796875,843.5753173828125,-1486.895263671875,1597.7225341796875,843.5753173828125,-1219.263427734375,1605.88134765625,840.605712890625,-1486.895263671875,1597.7225341796875,843.5753173828125,-1219.263427734375,1605.88134765625,840.605712890625,-1219.263427734375,1597.7225341796875,843.5753173828125,-1486.895263671875,1589.0401611328125,843.5753173828125,-1486.895263671875,1589.0401611328125,843.5753173828125,-1219.263427734375,1597.7225341796875,843.5753173828125,-1486.895263671875,1589.0401611328125,843.5753173828125,-1219.263427734375,1597.7225341796875,843.5753173828125,-1219.263427734375,1589.0401611328125,843.5753173828125,-1486.895263671875,1580.88134765625,840.605712890625,-1486.895263671875,1580.88134765625,840.605712890625,-1219.263427734375,1589.0401611328125,843.5753173828125,-1486.895263671875,1580.88134765625,840.605712890625,-1219.263427734375,1589.0401611328125,843.5753173828125,-1219.263427734375,1580.88134765625,840.605712890625,-1486.895263671875,1574.230224609375,835.0247802734375,-1486.895263671875,1574.230224609375,835.0247192382812,-1219.263427734375,1580.88134765625,840.605712890625,-1486.895263671875,1574.230224609375,835.0247192382812,-1219.263427734375,1580.88134765625,840.605712890625,-1219.263427734375,1574.230224609375,835.0247802734375,-1486.895263671875,1569.8890380859375,827.505615234375,-1486.895263671875,1569.8890380859375,827.505615234375,-1219.263427734375,1574.230224609375,835.0247802734375,-1486.895263671875,1569.8890380859375,827.505615234375,-1219.263427734375,1574.230224609375,835.0247192382812,-1219.263427734375,1569.8890380859375,827.505615234375,-1486.895263671875,1568.38134765625,818.955078125,-1486.895263671875,1568.38134765625,818.955078125,-1219.263427734375,1569.8890380859375,827.505615234375,-1486.895263671875,1568.38134765625,818.955078125,-1219.263427734375,1569.8890380859375,827.505615234375,-1219.263427734375,1568.38134765625,818.955078125,-1486.895263671875,1569.8890380859375,810.4046020507812,-1486.895263671875,1569.8890380859375,810.4044799804688,-1219.263427734375,1568.38134765625,818.955078125,-1486.895263671875,1569.8890380859375,810.4044799804688,-1219.263427734375,1568.38134765625,818.955078125,-1219.263427734375,1569.8890380859375,810.4046020507812,-1486.895263671875,1574.230224609375,802.8853759765625,-1486.895263671875,1574.230224609375,802.8853759765625,-1219.263427734375,1569.8890380859375,810.4046020507812,-1486.895263671875,1574.230224609375,802.8853759765625,-1219.263427734375,1569.8890380859375,810.4044799804688,-1219.263427734375,1574.230224609375,802.8853759765625,-1486.895263671875,1580.88134765625,797.3043823242188,-1486.895263671875,1580.88134765625,797.3043823242188,-1219.263427734375,1574.230224609375,802.8853759765625,-1486.895263671875,1580.88134765625,797.3043823242188,-1219.263427734375,1574.230224609375,802.8853759765625,-1219.263427734375,1580.88134765625,797.3043823242188,-1486.895263671875,1589.0401611328125,794.3348999023438,-1486.895263671875,1589.0401611328125,794.3347778320312,-1219.263427734375,1580.88134765625,797.3043823242188,-1486.895263671875,1589.0401611328125,794.3347778320312,-1219.263427734375,1580.88134765625,797.3043823242188,-1219.263427734375,1589.0401611328125,794.3348999023438,-1486.895263671875,1597.7225341796875,794.3348999023438,-1486.895263671875,1597.7225341796875,794.3347778320312,-1219.263427734375,1589.0401611328125,794.3348999023438,-1486.895263671875,1597.7225341796875,794.3347778320312,-1219.263427734375,1589.0401611328125,794.3347778320312,-1219.263427734375,1597.7225341796875,794.3348999023438,-1486.895263671875,1605.88134765625,797.3043823242188,-1486.895263671875,1605.88134765625,797.3043823242188,-1219.263427734375,1597.7225341796875,794.3348999023438,-1486.895263671875,1605.88134765625,797.3043823242188,-1219.263427734375,1597.7225341796875,794.3347778320312,-1219.263427734375,1605.88134765625,797.3043823242188,-1486.895263671875,1612.532470703125,802.8853759765625,-1486.895263671875,1612.532470703125,802.8853759765625,-1219.263427734375,1605.88134765625,797.3043823242188,-1486.895263671875,1612.532470703125,802.8853759765625,-1219.263427734375,1605.88134765625,797.3043823242188,-1219.263427734375,1612.532470703125,802.8853759765625,-1486.895263671875,1616.8736572265625,810.4046020507812,-1486.895263671875,1616.8736572265625,810.4044799804688,-1219.263427734375,1612.532470703125,802.8853759765625,-1486.895263671875,1616.8736572265625,810.4044799804688,-1219.263427734375,1612.532470703125,802.8853759765625,-1219.263427734375,1616.8736572265625,810.4046020507812,-1486.895263671875,1618.38134765625,818.955078125,-1486.895263671875,1618.38134765625,818.955078125,-1219.263427734375,1616.8736572265625,810.4046020507812,-1486.895263671875,1618.38134765625,818.955078125,-1219.263427734375,1616.8736572265625,810.4044799804688,-1219.263427734375,1618.38134765625,818.955078125,-1219.263427734375,1616.8736572265625,827.505615234375,-1219.263427734375,1616.8736572265625,827.5054931640625,-951.6314697265625,1618.38134765625,818.955078125,-1219.263427734375,1616.8736572265625,827.5054931640625,-951.6314697265625,1618.38134765625,818.9550170898438,-951.6314697265625,1616.8736572265625,827.505615234375,-1219.263427734375,1612.532470703125,835.0247192382812,-1219.263427734375,1612.532470703125,835.0247192382812,-951.6314697265625,1616.8736572265625,827.505615234375,-1219.263427734375,1612.532470703125,835.0247192382812,-951.6314697265625,1616.8736572265625,827.5054931640625,-951.6314697265625,1612.532470703125,835.0247192382812,-1219.263427734375,1605.88134765625,840.605712890625,-1219.263427734375,1605.88134765625,840.605712890625,-951.6314697265625,1612.532470703125,835.0247192382812,-1219.263427734375,1605.88134765625,840.605712890625,-951.6314697265625,1612.532470703125,835.0247192382812,-951.6314697265625,1605.88134765625,840.605712890625,-1219.263427734375,1597.7225341796875,843.5753173828125,-1219.263427734375,1597.7225341796875,843.5751953125,-951.6314697265625,1605.88134765625,840.605712890625,-1219.263427734375,1597.7225341796875,843.5751953125,-951.6314697265625,1605.88134765625,840.605712890625,-951.6314697265625,1597.7225341796875,843.5753173828125,-1219.263427734375,1589.0401611328125,843.5753173828125,-1219.263427734375,1589.0401611328125,843.5751953125,-951.6314697265625,1597.7225341796875,843.5753173828125,-1219.263427734375,1589.0401611328125,843.5751953125,-951.6314697265625,1597.7225341796875,843.5751953125,-951.6314697265625,1589.0401611328125,843.5753173828125,-1219.263427734375,1580.88134765625,840.605712890625,-1219.263427734375,1580.88134765625,840.605712890625,-951.6314697265625,1589.0401611328125,843.5753173828125,-1219.263427734375,1580.88134765625,840.605712890625,-951.6314697265625,1589.0401611328125,843.5751953125,-951.6314697265625,1580.88134765625,840.605712890625,-1219.263427734375,1574.230224609375,835.0247192382812,-1219.263427734375,1574.230224609375,835.0247192382812,-951.6314697265625,1580.88134765625,840.605712890625,-1219.263427734375,1574.230224609375,835.0247192382812,-951.6314697265625,1580.88134765625,840.605712890625,-951.6314697265625,1574.230224609375,835.0247192382812,-1219.263427734375,1569.8890380859375,827.505615234375,-1219.263427734375,1569.8890380859375,827.5054931640625,-951.6314697265625,1574.230224609375,835.0247192382812,-1219.263427734375,1569.8890380859375,827.5054931640625,-951.6314697265625,1574.230224609375,835.0247192382812,-951.6314697265625,1569.8890380859375,827.505615234375,-1219.263427734375,1568.38134765625,818.955078125,-1219.263427734375,1568.38134765625,818.9550170898438,-951.6314697265625,1569.8890380859375,827.505615234375,-1219.263427734375,1568.38134765625,818.9550170898438,-951.6314697265625,1569.8890380859375,827.5054931640625,-951.6314697265625,1568.38134765625,818.955078125,-1219.263427734375,1569.8890380859375,810.4044799804688,-1219.263427734375,1569.8890380859375,810.4044799804688,-951.6314697265625,1568.38134765625,818.955078125,-1219.263427734375,1569.8890380859375,810.4044799804688,-951.6314697265625,1568.38134765625,818.9550170898438,-951.6314697265625,1569.8890380859375,810.4044799804688,-1219.263427734375,1574.230224609375,802.8853759765625,-1219.263427734375,1574.230224609375,802.8853149414062,-951.6314697265625,1569.8890380859375,810.4044799804688,-1219.263427734375,1574.230224609375,802.8853149414062,-951.6314697265625,1569.8890380859375,810.4044799804688,-951.6314697265625,1574.230224609375,802.8853759765625,-1219.263427734375,1580.88134765625,797.3043823242188,-1219.263427734375,1580.88134765625,797.3043823242188,-951.6314697265625,1574.230224609375,802.8853759765625,-1219.263427734375,1580.88134765625,797.3043823242188,-951.6314697265625,1574.230224609375,802.8853149414062,-951.6314697265625,1580.88134765625,797.3043823242188,-1219.263427734375,1589.0401611328125,794.3347778320312,-1219.263427734375,1589.0401611328125,794.3347778320312,-951.6314697265625,1580.88134765625,797.3043823242188,-1219.263427734375,1589.0401611328125,794.3347778320312,-951.6314697265625,1580.88134765625,797.3043823242188,-951.6314697265625,1589.0401611328125,794.3347778320312,-1219.263427734375,1597.7225341796875,794.3347778320312,-1219.263427734375,1597.7225341796875,794.3347778320312,-951.6314697265625,1589.0401611328125,794.3347778320312,-1219.263427734375,1597.7225341796875,794.3347778320312,-951.6314697265625,1589.0401611328125,794.3347778320312,-951.6314697265625,1597.7225341796875,794.3347778320312,-1219.263427734375,1605.88134765625,797.3043823242188,-1219.263427734375,1605.88134765625,797.3043823242188,-951.6314697265625,1597.7225341796875,794.3347778320312,-1219.263427734375,1605.88134765625,797.3043823242188,-951.6314697265625,1597.7225341796875,794.3347778320312,-951.6314697265625,1605.88134765625,797.3043823242188,-1219.263427734375,1612.532470703125,802.8853759765625,-1219.263427734375,1612.532470703125,802.8853149414062,-951.6314697265625,1605.88134765625,797.3043823242188,-1219.263427734375,1612.532470703125,802.8853149414062,-951.6314697265625,1605.88134765625,797.3043823242188,-951.6314697265625,1612.532470703125,802.8853759765625,-1219.263427734375,1616.8736572265625,810.4044799804688,-1219.263427734375,1616.8736572265625,810.4044799804688,-951.6314697265625,1612.532470703125,802.8853759765625,-1219.263427734375,1616.8736572265625,810.4044799804688,-951.6314697265625,1612.532470703125,802.8853149414062,-951.6314697265625,1616.8736572265625,810.4044799804688,-1219.263427734375,1618.38134765625,818.955078125,-1219.263427734375,1618.38134765625,818.9550170898438,-951.6314697265625,1616.8736572265625,810.4044799804688,-1219.263427734375,1618.38134765625,818.9550170898438,-951.6314697265625,1616.8736572265625,810.4044799804688,-951.6314697265625,1618.38134765625,818.9550170898438,-951.6314697265625,1616.8736572265625,827.5054931640625,-951.6314697265625,1616.8736572265625,827.5054931640625,-683.9995727539062,1618.38134765625,818.9550170898438,-951.6314697265625,1616.8736572265625,827.5054931640625,-683.9995727539062,1618.38134765625,818.9550170898438,-683.9995727539062,1616.8736572265625,827.5054931640625,-951.6314697265625,1612.532470703125,835.0247192382812,-951.6314697265625,1612.532470703125,835.0247192382812,-683.9995727539062,1616.8736572265625,827.5054931640625,-951.6314697265625,1612.532470703125,835.0247192382812,-683.9995727539062,1616.8736572265625,827.5054931640625,-683.9995727539062,1612.532470703125,835.0247192382812,-951.6314697265625,1605.88134765625,840.605712890625,-951.6314697265625,1605.88134765625,840.6055908203125,-683.9995727539062,1612.532470703125,835.0247192382812,-951.6314697265625,1605.88134765625,840.6055908203125,-683.9995727539062,1612.532470703125,835.0247192382812,-683.9995727539062,1605.88134765625,840.605712890625,-951.6314697265625,1597.7225341796875,843.5751953125,-951.6314697265625,1597.7225341796875,843.5750732421875,-683.9995727539062,1605.88134765625,840.605712890625,-951.6314697265625,1597.7225341796875,843.5750732421875,-683.9995727539062,1605.88134765625,840.6055908203125,-683.9995727539062,1597.7225341796875,843.5751953125,-951.6314697265625,1589.0401611328125,843.5751953125,-951.6314697265625,1589.0401611328125,843.5750732421875,-683.9995727539062,1597.7225341796875,843.5751953125,-951.6314697265625,1589.0401611328125,843.5750732421875,-683.9995727539062,1597.7225341796875,843.5750732421875,-683.9995727539062,1589.0401611328125,843.5751953125,-951.6314697265625,1580.88134765625,840.605712890625,-951.6314697265625,1580.88134765625,840.6055908203125,-683.9995727539062,1589.0401611328125,843.5751953125,-951.6314697265625,1580.88134765625,840.6055908203125,-683.9995727539062,1589.0401611328125,843.5750732421875,-683.9995727539062,1580.88134765625,840.605712890625,-951.6314697265625,1574.230224609375,835.0247192382812,-951.6314697265625,1574.230224609375,835.0247192382812,-683.9995727539062,1580.88134765625,840.605712890625,-951.6314697265625,1574.230224609375,835.0247192382812,-683.9995727539062,1580.88134765625,840.6055908203125,-683.9995727539062,1574.230224609375,835.0247192382812,-951.6314697265625,1569.8890380859375,827.5054931640625,-951.6314697265625,1569.8890380859375,827.5054931640625,-683.9995727539062,1574.230224609375,835.0247192382812,-951.6314697265625,1569.8890380859375,827.5054931640625,-683.9995727539062,1574.230224609375,835.0247192382812,-683.9995727539062,1569.8890380859375,827.5054931640625,-951.6314697265625,1568.38134765625,818.9550170898438,-951.6314697265625,1568.38134765625,818.9550170898438,-683.9995727539062,1569.8890380859375,827.5054931640625,-951.6314697265625,1568.38134765625,818.9550170898438,-683.9995727539062,1569.8890380859375,827.5054931640625,-683.9995727539062,1568.38134765625,818.9550170898438,-951.6314697265625,1569.8890380859375,810.4044799804688,-951.6314697265625,1569.8890380859375,810.4044799804688,-683.9995727539062,1568.38134765625,818.9550170898438,-951.6314697265625,1569.8890380859375,810.4044799804688,-683.9995727539062,1568.38134765625,818.9550170898438,-683.9995727539062,1569.8890380859375,810.4044799804688,-951.6314697265625,1574.230224609375,802.8853149414062,-951.6314697265625,1574.230224609375,802.8853149414062,-683.9995727539062,1569.8890380859375,810.4044799804688,-951.6314697265625,1574.230224609375,802.8853149414062,-683.9995727539062,1569.8890380859375,810.4044799804688,-683.9995727539062,1574.230224609375,802.8853149414062,-951.6314697265625,1580.88134765625,797.3043823242188,-951.6314697265625,1580.88134765625,797.3043212890625,-683.9995727539062,1574.230224609375,802.8853149414062,-951.6314697265625,1580.88134765625,797.3043212890625,-683.9995727539062,1574.230224609375,802.8853149414062,-683.9995727539062,1580.88134765625,797.3043823242188,-951.6314697265625,1589.0401611328125,794.3347778320312,-951.6314697265625,1589.0401611328125,794.3347778320312,-683.9995727539062,1580.88134765625,797.3043823242188,-951.6314697265625,1589.0401611328125,794.3347778320312,-683.9995727539062,1580.88134765625,797.3043212890625,-683.9995727539062,1589.0401611328125,794.3347778320312,-951.6314697265625,1597.7225341796875,794.3347778320312,-951.6314697265625,1597.7225341796875,794.3347778320312,-683.9995727539062,1589.0401611328125,794.3347778320312,-951.6314697265625,1597.7225341796875,794.3347778320312,-683.9995727539062,1589.0401611328125,794.3347778320312,-683.9995727539062,1597.7225341796875,794.3347778320312,-951.6314697265625,1605.88134765625,797.3043823242188,-951.6314697265625,1605.88134765625,797.3043212890625,-683.9995727539062,1597.7225341796875,794.3347778320312,-951.6314697265625,1605.88134765625,797.3043212890625,-683.9995727539062,1597.7225341796875,794.3347778320312,-683.9995727539062,1605.88134765625,797.3043823242188,-951.6314697265625,1612.532470703125,802.8853149414062,-951.6314697265625,1612.532470703125,802.8853149414062,-683.9995727539062,1605.88134765625,797.3043823242188,-951.6314697265625,1612.532470703125,802.8853149414062,-683.9995727539062,1605.88134765625,797.3043212890625,-683.9995727539062,1612.532470703125,802.8853149414062,-951.6314697265625,1616.8736572265625,810.4044799804688,-951.6314697265625,1616.8736572265625,810.4044189453125,-683.9995727539062,1612.532470703125,802.8853149414062,-951.6314697265625,1616.8736572265625,810.4044189453125,-683.9995727539062,1612.532470703125,802.8853149414062,-683.9995727539062,1616.8736572265625,810.4044799804688,-951.6314697265625,1618.38134765625,818.9550170898438,-951.6314697265625,1618.38134765625,818.9550170898438,-683.9995727539062,1616.8736572265625,810.4044799804688,-951.6314697265625,1618.38134765625,818.9550170898438,-683.9995727539062,1616.8736572265625,810.4044189453125,-683.9995727539062,1618.38134765625,818.9550170898438,-683.9995727539062,1616.8736572265625,827.5054931640625,-683.9995727539062,1616.8736572265625,827.50537109375,-416.3677062988281,1618.38134765625,818.9550170898438,-683.9995727539062,1616.8736572265625,827.50537109375,-416.3677062988281,1618.38134765625,818.9548950195312,-416.3677062988281,1616.8736572265625,827.5054931640625,-683.9995727539062,1612.532470703125,835.0247192382812,-683.9995727539062,1612.532470703125,835.0245971679688,-416.3677062988281,1616.8736572265625,827.5054931640625,-683.9995727539062,1612.532470703125,835.0245971679688,-416.3677062988281,1616.8736572265625,827.50537109375,-416.3677062988281,1612.532470703125,835.0247192382812,-683.9995727539062,1605.88134765625,840.6055908203125,-683.9995727539062,1605.88134765625,840.6055297851562,-416.3677062988281,1612.532470703125,835.0247192382812,-683.9995727539062,1605.88134765625,840.6055297851562,-416.3677062988281,1612.532470703125,835.0245971679688,-416.3677062988281,1605.88134765625,840.6055908203125,-683.9995727539062,1597.7225341796875,843.5750732421875,-683.9995727539062,1597.7225341796875,843.5750732421875,-416.3677062988281,1605.88134765625,840.6055908203125,-683.9995727539062,1597.7225341796875,843.5750732421875,-416.3677062988281,1605.88134765625,840.6055297851562,-416.3677062988281,1597.7225341796875,843.5750732421875,-683.9995727539062,1589.0401611328125,843.5750732421875,-683.9995727539062,1589.0401611328125,843.5750732421875,-416.3677062988281,1597.7225341796875,843.5750732421875,-683.9995727539062,1589.0401611328125,843.5750732421875,-416.3677062988281,1597.7225341796875,843.5750732421875,-416.3677062988281,1589.0401611328125,843.5750732421875,-683.9995727539062,1580.88134765625,840.6055908203125,-683.9995727539062,1580.88134765625,840.6055297851562,-416.3677062988281,1589.0401611328125,843.5750732421875,-683.9995727539062,1580.88134765625,840.6055297851562,-416.3677062988281,1589.0401611328125,843.5750732421875,-416.3677062988281,1580.88134765625,840.6055908203125,-683.9995727539062,1574.230224609375,835.0247192382812,-683.9995727539062,1574.230224609375,835.0245971679688,-416.3677062988281,1580.88134765625,840.6055908203125,-683.9995727539062,1574.230224609375,835.0245971679688,-416.3677062988281,1580.88134765625,840.6055297851562,-416.3677062988281,1574.230224609375,835.0247192382812,-683.9995727539062,1569.8890380859375,827.5054931640625,-683.9995727539062,1569.8890380859375,827.50537109375,-416.3677062988281,1574.230224609375,835.0247192382812,-683.9995727539062,1569.8890380859375,827.50537109375,-416.3677062988281,1574.230224609375,835.0245971679688,-416.3677062988281,1569.8890380859375,827.5054931640625,-683.9995727539062,1568.38134765625,818.9550170898438,-683.9995727539062,1568.38134765625,818.9548950195312,-416.3677062988281,1569.8890380859375,827.5054931640625,-683.9995727539062,1568.38134765625,818.9548950195312,-416.3677062988281,1569.8890380859375,827.50537109375,-416.3677062988281,1568.38134765625,818.9550170898438,-683.9995727539062,1569.8890380859375,810.4044799804688,-683.9995727539062,1569.8890380859375,810.4044189453125,-416.3677062988281,1568.38134765625,818.9550170898438,-683.9995727539062,1569.8890380859375,810.4044189453125,-416.3677062988281,1568.38134765625,818.9548950195312,-416.3677062988281,1569.8890380859375,810.4044799804688,-683.9995727539062,1574.230224609375,802.8853149414062,-683.9995727539062,1574.230224609375,802.8853149414062,-416.3677062988281,1569.8890380859375,810.4044799804688,-683.9995727539062,1574.230224609375,802.8853149414062,-416.3677062988281,1569.8890380859375,810.4044189453125,-416.3677062988281,1574.230224609375,802.8853149414062,-683.9995727539062,1580.88134765625,797.3043212890625,-683.9995727539062,1580.88134765625,797.3043212890625,-416.3677062988281,1574.230224609375,802.8853149414062,-683.9995727539062,1580.88134765625,797.3043212890625,-416.3677062988281,1574.230224609375,802.8853149414062,-416.3677062988281,1580.88134765625,797.3043212890625,-683.9995727539062,1589.0401611328125,794.3347778320312,-683.9995727539062,1589.0401611328125,794.334716796875,-416.3677062988281,1580.88134765625,797.3043212890625,-683.9995727539062,1589.0401611328125,794.334716796875,-416.3677062988281,1580.88134765625,797.3043212890625,-416.3677062988281,1589.0401611328125,794.3347778320312,-683.9995727539062,1597.7225341796875,794.3347778320312,-683.9995727539062,1597.7225341796875,794.334716796875,-416.3677062988281,1589.0401611328125,794.3347778320312,-683.9995727539062,1597.7225341796875,794.334716796875,-416.3677062988281,1589.0401611328125,794.334716796875,-416.3677062988281,1597.7225341796875,794.3347778320312,-683.9995727539062,1605.88134765625,797.3043212890625,-683.9995727539062,1605.88134765625,797.3043212890625,-416.3677062988281,1597.7225341796875,794.3347778320312,-683.9995727539062,1605.88134765625,797.3043212890625,-416.3677062988281,1597.7225341796875,794.334716796875,-416.3677062988281,1605.88134765625,797.3043212890625,-683.9995727539062,1612.532470703125,802.8853149414062,-683.9995727539062,1612.532470703125,802.8851928710938,-416.3677062988281,1605.88134765625,797.3043212890625,-683.9995727539062,1612.532470703125,802.8851928710938,-416.3677062988281,1605.88134765625,797.3043212890625,-416.3677062988281,1612.532470703125,802.8853149414062,-683.9995727539062,1616.8736572265625,810.4044189453125,-683.9995727539062,1616.8736572265625,810.4044189453125,-416.3677062988281,1612.532470703125,802.8853149414062,-683.9995727539062,1616.8736572265625,810.4044189453125,-416.3677062988281,1612.532470703125,802.8851928710938,-416.3677062988281,1616.8736572265625,810.4044189453125,-683.9995727539062,1618.38134765625,818.9550170898438,-683.9995727539062,1618.38134765625,818.9548950195312,-416.3677062988281,1616.8736572265625,810.4044189453125,-683.9995727539062,1618.38134765625,818.9548950195312,-416.3677062988281,1616.8736572265625,810.4044189453125,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1616.8736572265625,810.4044189453125,-416.3677062988281,1618.38134765625,818.9548950195312,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1618.38134765625,818.9548950195312,-416.3677062988281,1616.8736572265625,827.50537109375,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1616.8736572265625,827.50537109375,-416.3677062988281,1612.532470703125,835.0245971679688,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1612.532470703125,835.0245971679688,-416.3677062988281,1605.88134765625,840.6055297851562,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1605.88134765625,840.6055297851562,-416.3677062988281,1597.7225341796875,843.5750732421875,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1597.7225341796875,843.5750732421875,-416.3677062988281,1589.0401611328125,843.5750732421875,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1589.0401611328125,843.5750732421875,-416.3677062988281,1580.88134765625,840.6055297851562,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1580.88134765625,840.6055297851562,-416.3677062988281,1574.230224609375,835.0245971679688,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1574.230224609375,835.0245971679688,-416.3677062988281,1569.8890380859375,827.50537109375,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1569.8890380859375,827.50537109375,-416.3677062988281,1568.38134765625,818.9548950195312,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1568.38134765625,818.9548950195312,-416.3677062988281,1569.8890380859375,810.4044189453125,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1569.8890380859375,810.4044189453125,-416.3677062988281,1574.230224609375,802.8853149414062,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1574.230224609375,802.8853149414062,-416.3677062988281,1580.88134765625,797.3043212890625,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1580.88134765625,797.3043212890625,-416.3677062988281,1589.0401611328125,794.334716796875,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1589.0401611328125,794.334716796875,-416.3677062988281,1597.7225341796875,794.334716796875,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1597.7225341796875,794.334716796875,-416.3677062988281,1605.88134765625,797.3043212890625,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1605.88134765625,797.3043212890625,-416.3677062988281,1612.532470703125,802.8851928710938,-416.3677062988281,1593.38134765625,818.9548950195312,-416.3677062988281,1612.532470703125,802.8851928710938,-416.3677062988281,1616.8736572265625,810.4044189453125,-416.3677062988281],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0,0,-1,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,0,0,-1,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0,0,-1,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0,0,-1,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0,0,-1,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,0,0,-1,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,0,0,-1,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7422999739646912,0,-0.6700999736785889,0,0,-1,-0.7422999739646912,0,-0.6700999736785889,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,0,0,-1,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,0,0,-1,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,0,0,-1,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,0,0,-1,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0,0,-1,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0,0,-1,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0,0,-1,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.7422999739646912,0,-0.6700999736785889,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7422999739646912,0,-0.6700999736785889,0.9397000074386597,0.34200000762939453,0,1,0,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.6974999904632568,0.2538999915122986,-0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.5,0.8659999966621399,0,0.5685999989509583,0.4771000146865845,-0.6700999736785889,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.12890000641345978,0.7310000061988831,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.3711000084877014,0.642799973487854,-0.6700999736785889,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,-0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.12890000641345978,0.7311000227928162,-0.6700000166893005,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.37119999527931213,0.6428999900817871,-0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.5687000155448914,0.4772000014781952,-0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-0.7422999739646912,0,-0.6700999736785889,-1,0,0,-0.6974999904632568,0.2538999915122986,-0.6700999736785889,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.9397000074386597,-0.34200000762939453,0,-0.7422999739646912,0,-0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.6976000070571899,-0.2538999915122986,-0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.5685999989509583,-0.4771000146865845,-0.6700999736785889,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,-0.3711000084877014,-0.6428999900817871,-0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5,-0.8659999966621399,0,0.12890000641345978,-0.7311000227928162,-0.6700000166893005,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.37119999527931213,-0.6428999900817871,-0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.5687000155448914,-0.4772000014781952,-0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,0.7422999739646912,0,-0.6700999736785889,1,0,0,0.6974999904632568,-0.2538999915122986,-0.6700999736785889,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.9397000074386597,0.34200000762939453,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,1,0,0,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.7660999894142151,0.642799973487854,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.9397000074386597,0.34200000762939453,0,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.5,0.8659999966621399,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.7660999894142151,0.642799973487854,0,0.3711000084877014,0.642799973487854,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.5,0.8659999966621399,0,0.1736000031232834,0.9847999811172485,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.5,0.8659999966621399,0,0.12890000641345978,0.7310000061988831,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0.1736000031232834,0.9847999811172485,0,-0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.1736000031232834,0.9847999811172485,0,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.1736000031232834,0.9847999811172485,0,-0.5,0.8659999966621399,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.1736000031232834,0.9847999811172485,0,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.5,0.8659999966621399,0,-0.765999972820282,0.642799973487854,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.5,0.8659999966621399,0,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.765999972820282,0.642799973487854,0,-0.9397000074386597,0.34200000762939453,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.765999972820282,0.642799973487854,0,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.9397000074386597,0.34200000762939453,0,-1,0,0,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,0.34200000762939453,0,-0.7422999739646912,0,0.6700999736785889,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-1,0,0,-0.9397000074386597,-0.34200000762939453,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-1,0,0,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7422999739646912,0,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.7660999894142151,-0.642799973487854,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.9397000074386597,-0.34200000762939453,0,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.7660999894142151,-0.642799973487854,0,-0.5,-0.8659999966621399,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.7660999894142151,-0.642799973487854,0,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.5,-0.8659999966621399,0,-0.1736000031232834,-0.9847999811172485,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.5,-0.8659999966621399,0,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.1736000031232834,-0.9847999811172485,0,0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.1736000031232834,-0.9847999811172485,0,0.12890000641345978,-0.7311000227928162,0.6700000166893005,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.5,-0.8659999966621399,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.1736000031232834,-0.9847999811172485,0,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.5,-0.8659999966621399,0,0.765999972820282,-0.642799973487854,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.5,-0.8659999966621399,0,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.765999972820282,-0.642799973487854,0,0.9397000074386597,-0.34200000762939453,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.765999972820282,-0.642799973487854,0,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.9397000074386597,-0.34200000762939453,0,1,0,0,0.7422999739646912,0,0.6700999736785889,0.9397000074386597,-0.34200000762939453,0,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,-0.2538999915122986,0.6700999736785889,0.7422999739646912,0,0.6700999736785889,0,0,1,0.7422999739646912,0,0.6700999736785889,0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,0.6974999904632568,0.2538999915122986,0.6700999736785889,0.5685999989509583,0.4771000146865845,0.6700999736785889,0,0,1,0.5685999989509583,0.4771000146865845,0.6700999736785889,0.3711000084877014,0.642799973487854,0.6700999736785889,0,0,1,0.3711000084877014,0.642799973487854,0.6700999736785889,0.12890000641345978,0.7310000061988831,0.6700999736785889,0,0,1,0.12890000641345978,0.7310000061988831,0.6700999736785889,-0.12890000641345978,0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,0.7311000227928162,0.6700000166893005,-0.37119999527931213,0.6428999900817871,0.6700000166893005,0,0,1,-0.37119999527931213,0.6428999900817871,0.6700000166893005,-0.5687000155448914,0.4772000014781952,0.6700000166893005,0,0,1,-0.5687000155448914,0.4772000014781952,0.6700000166893005,-0.6974999904632568,0.2538999915122986,0.6700999736785889,0,0,1,-0.6974999904632568,0.2538999915122986,0.6700999736785889,-0.7422999739646912,0,0.6700999736785889,0,0,1,-0.7422999739646912,0,0.6700999736785889,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,0,0,1,-0.6976000070571899,-0.2538999915122986,0.6700000166893005,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,0,0,1,-0.5685999989509583,-0.4771000146865845,0.6700999736785889,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,0,0,1,-0.3711000084877014,-0.6428999900817871,0.6700999736785889,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,-0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0,0,1,0.12890000641345978,-0.7311000227928162,0.6700000166893005,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0,0,1,0.37119999527931213,-0.6428999900817871,0.6700000166893005,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0,0,1,0.5687000155448914,-0.4772000014781952,0.6700000166893005,0.6974999904632568,-0.2538999915122986,0.6700999736785889],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0.5,0,0.8611000180244446,0,0.8055999875068665,0,0.5,0,0.8055999875068665,0,0.75,0,0.5,0,0.9721999764442444,0,0.916700005531311,0,0.5,0,0.916700005531311,0,0.8611000180244446,0,0.5,0,0.08330000191926956,0,0.027799999341368675,0,0.5,0,0.027799999341368675,0,-0.027799999341368675,0,0.5,0,0.19439999759197235,0,0.1388999968767166,0,0.5,0,0.1388999968767166,0,0.08330000191926956,0,0.5,0,0.30559998750686646,0,0.25,0,0.5,0,0.25,0,0.19439999759197235,0,0.5,0,0.41670000553131104,0,0.3610999882221222,0,0.5,0,0.3610999882221222,0,0.30559998750686646,0,0.5,0,0.5278000235557556,0,0.4722000062465668,0,0.5,0,0.4722000062465668,0,0.41670000553131104,0,0.5,0,0.6388999819755554,0,0.583299994468689,0,0.5,0,0.583299994468689,0,0.5278000235557556,0,0.5,0,0.75,0,0.6944000124931335,0,0.5,0,0.6944000124931335,0,0.6388999819755554,0,0.75,0,0.8055999875068665,0,0.8055999875068665,0.20000000298023224,0.75,0,0.8055999875068665,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0,0.8611000180244446,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0,0.916700005531311,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0,0.9721999764442444,0.20000000298023224,0.916700005531311,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0,0.027799999341368675,0.20000000298023224,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0,0.08330000191926956,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0,0.1388999968767166,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0,0.19439999759197235,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.19439999759197235,0,0.25,0,0.25,0.20000000298023224,0.19439999759197235,0,0.25,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.25,0,0.30559998750686646,0,0.30559998750686646,0.20000000298023224,0.25,0,0.30559998750686646,0.20000000298023224,0.25,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0,0.3610999882221222,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0,0.41670000553131104,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0,0.4722000062465668,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0,0.5278000235557556,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0,0.583299994468689,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0,0.6388999819755554,0.20000000298023224,0.583299994468689,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0,0.6944000124931335,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6944000124931335,0,0.75,0,0.75,0.20000000298023224,0.6944000124931335,0,0.75,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.8055999875068665,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.20000000298023224,0.8055999875068665,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.20000000298023224,0.8611000180244446,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.20000000298023224,0.916700005531311,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.20000000298023224,0.9721999764442444,0.4000000059604645,0.916700005531311,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.20000000298023224,0.027799999341368675,0.4000000059604645,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.20000000298023224,0.08330000191926956,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.20000000298023224,0.1388999968767166,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.20000000298023224,0.19439999759197235,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.20000000298023224,0.25,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.20000000298023224,0.30559998750686646,0.4000000059604645,0.25,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.20000000298023224,0.3610999882221222,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.20000000298023224,0.41670000553131104,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.20000000298023224,0.4722000062465668,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.20000000298023224,0.5278000235557556,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.20000000298023224,0.583299994468689,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.20000000298023224,0.6388999819755554,0.4000000059604645,0.583299994468689,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.20000000298023224,0.6944000124931335,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.20000000298023224,0.75,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.8055999875068665,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.4000000059604645,0.8055999875068665,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.4000000059604645,0.8611000180244446,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.4000000059604645,0.916700005531311,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.4000000059604645,0.9721999764442444,0.6000000238418579,0.916700005531311,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.4000000059604645,0.027799999341368675,0.6000000238418579,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.4000000059604645,0.08330000191926956,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.4000000059604645,0.1388999968767166,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.4000000059604645,0.19439999759197235,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.4000000059604645,0.25,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.4000000059604645,0.30559998750686646,0.6000000238418579,0.25,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.4000000059604645,0.3610999882221222,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.4000000059604645,0.41670000553131104,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.4000000059604645,0.4722000062465668,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.4000000059604645,0.5278000235557556,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.4000000059604645,0.583299994468689,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.4000000059604645,0.6388999819755554,0.6000000238418579,0.583299994468689,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.4000000059604645,0.6944000124931335,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.4000000059604645,0.75,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.8055999875068665,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.6000000238418579,0.8055999875068665,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.6000000238418579,0.8611000180244446,0.800000011920929,0.8055999875068665,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.6000000238418579,0.916700005531311,0.800000011920929,0.8611000180244446,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.6000000238418579,0.9721999764442444,0.800000011920929,0.916700005531311,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.6000000238418579,0.027799999341368675,0.800000011920929,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.6000000238418579,0.08330000191926956,0.800000011920929,0.027799999341368675,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.6000000238418579,0.1388999968767166,0.800000011920929,0.08330000191926956,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.6000000238418579,0.19439999759197235,0.800000011920929,0.1388999968767166,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.6000000238418579,0.25,0.800000011920929,0.19439999759197235,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.6000000238418579,0.30559998750686646,0.800000011920929,0.25,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.6000000238418579,0.3610999882221222,0.800000011920929,0.30559998750686646,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.6000000238418579,0.41670000553131104,0.800000011920929,0.3610999882221222,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.6000000238418579,0.4722000062465668,0.800000011920929,0.41670000553131104,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.6000000238418579,0.5278000235557556,0.800000011920929,0.4722000062465668,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.6000000238418579,0.583299994468689,0.800000011920929,0.5278000235557556,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.6000000238418579,0.6388999819755554,0.800000011920929,0.583299994468689,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.6000000238418579,0.6944000124931335,0.800000011920929,0.6388999819755554,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.6000000238418579,0.75,0.800000011920929,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.8055999875068665,0.800000011920929,0.8055999875068665,1,0.75,0.800000011920929,0.8055999875068665,1,0.75,1,0.8055999875068665,0.800000011920929,0.8611000180244446,0.800000011920929,0.8611000180244446,1,0.8055999875068665,0.800000011920929,0.8611000180244446,1,0.8055999875068665,1,0.8611000180244446,0.800000011920929,0.916700005531311,0.800000011920929,0.916700005531311,1,0.8611000180244446,0.800000011920929,0.916700005531311,1,0.8611000180244446,1,0.916700005531311,0.800000011920929,0.9721999764442444,0.800000011920929,0.9721999764442444,1,0.916700005531311,0.800000011920929,0.9721999764442444,1,0.916700005531311,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,0.800000011920929,0.027799999341368675,1,-0.027799999341368675,1,0.027799999341368675,0.800000011920929,0.08330000191926956,0.800000011920929,0.08330000191926956,1,0.027799999341368675,0.800000011920929,0.08330000191926956,1,0.027799999341368675,1,0.08330000191926956,0.800000011920929,0.1388999968767166,0.800000011920929,0.1388999968767166,1,0.08330000191926956,0.800000011920929,0.1388999968767166,1,0.08330000191926956,1,0.1388999968767166,0.800000011920929,0.19439999759197235,0.800000011920929,0.19439999759197235,1,0.1388999968767166,0.800000011920929,0.19439999759197235,1,0.1388999968767166,1,0.19439999759197235,0.800000011920929,0.25,0.800000011920929,0.25,1,0.19439999759197235,0.800000011920929,0.25,1,0.19439999759197235,1,0.25,0.800000011920929,0.30559998750686646,0.800000011920929,0.30559998750686646,1,0.25,0.800000011920929,0.30559998750686646,1,0.25,1,0.30559998750686646,0.800000011920929,0.3610999882221222,0.800000011920929,0.3610999882221222,1,0.30559998750686646,0.800000011920929,0.3610999882221222,1,0.30559998750686646,1,0.3610999882221222,0.800000011920929,0.41670000553131104,0.800000011920929,0.41670000553131104,1,0.3610999882221222,0.800000011920929,0.41670000553131104,1,0.3610999882221222,1,0.41670000553131104,0.800000011920929,0.4722000062465668,0.800000011920929,0.4722000062465668,1,0.41670000553131104,0.800000011920929,0.4722000062465668,1,0.41670000553131104,1,0.4722000062465668,0.800000011920929,0.5278000235557556,0.800000011920929,0.5278000235557556,1,0.4722000062465668,0.800000011920929,0.5278000235557556,1,0.4722000062465668,1,0.5278000235557556,0.800000011920929,0.583299994468689,0.800000011920929,0.583299994468689,1,0.5278000235557556,0.800000011920929,0.583299994468689,1,0.5278000235557556,1,0.583299994468689,0.800000011920929,0.6388999819755554,0.800000011920929,0.6388999819755554,1,0.583299994468689,0.800000011920929,0.6388999819755554,1,0.583299994468689,1,0.6388999819755554,0.800000011920929,0.6944000124931335,0.800000011920929,0.6944000124931335,1,0.6388999819755554,0.800000011920929,0.6944000124931335,1,0.6388999819755554,1,0.6944000124931335,0.800000011920929,0.75,0.800000011920929,0.75,1,0.6944000124931335,0.800000011920929,0.75,1,0.6944000124931335,1,0.5,1,0.6944000124931335,1,0.75,1,0.5,1,0.75,1,0.8055999875068665,1,0.5,1,0.8055999875068665,1,0.8611000180244446,1,0.5,1,0.8611000180244446,1,0.916700005531311,1,0.5,1,-0.019700000062584877,1,-0.027799999341368675,1,0.5,1,-0.027799999341368675,1,0.027799999341368675,1,0.5,1,0.027799999341368675,1,0.08330000191926956,1,0.5,1,0.08330000191926956,1,0.1388999968767166,1,0.5,1,0.1388999968767166,1,0.19439999759197235,1,0.5,1,0.19439999759197235,1,0.25,1,0.5,1,0.25,1,0.30559998750686646,1,0.5,1,0.30559998750686646,1,0.3610999882221222,1,0.5,1,0.3610999882221222,1,0.41670000553131104,1,0.5,1,0.41670000553131104,1,0.4722000062465668,1,0.5,1,0.4722000062465668,1,0.5278000235557556,1,0.5,1,0.5278000235557556,1,0.583299994468689,1,0.5,1,0.583299994468689,1,0.6388999819755554,1,0.5,1,0.6388999819755554,1,0.6944000124931335,1],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [1593.38134765625,818.9550170898438,-1085.4474639892578],
| "radius": 669.5466581371704
| }
| }
| },
| {
| "uuid": "FC84149C-FDB8-4797-9079-E657C29453E0",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [1629.32373046875,846.6290283203125,-418.5693054199219,1629.32373046875,766.6290283203125,-418.5693054199219,-1354.23291015625,766.6290893554688,-418.5693054199219,1629.32373046875,846.6290283203125,-418.5693054199219,-1354.23291015625,766.6290893554688,-418.5693054199219,-1354.23291015625,846.6290893554688,-418.5693054199219,1629.32373046875,766.6290283203125,-418.5693054199219,1629.32373046875,766.6290283203125,-363.05059814453125,-1354.23291015625,766.6290893554688,-363.05059814453125,1629.32373046875,766.6290283203125,-418.5693054199219,-1354.23291015625,766.6290893554688,-363.05059814453125,-1354.23291015625,766.6290893554688,-418.5693054199219,1629.32373046875,846.6290283203125,-363.05059814453125,1629.32373046875,846.6290283203125,-418.5693054199219,-1354.23291015625,846.6290893554688,-418.5693054199219,1629.32373046875,846.6290283203125,-363.05059814453125,-1354.23291015625,846.6290893554688,-418.5693054199219,-1354.23291015625,846.6290893554688,-363.05059814453125,-1354.23291015625,836.6290893554688,-363.05059814453125,-1354.23291015625,846.6290893554688,-363.05059814453125,-1354.23291015625,846.6290893554688,-418.5693054199219,-1354.23291015625,836.6290893554688,-363.05059814453125,-1354.23291015625,846.6290893554688,-418.5693054199219,-1354.23291015625,836.6290893554688,-403.5462951660156,1629.32373046875,846.6290283203125,-418.5693054199219,1629.32373046875,846.6290283203125,-363.05059814453125,1629.32373046875,836.6290283203125,-363.05059814453125,1629.32373046875,846.6290283203125,-418.5693054199219,1629.32373046875,836.6290283203125,-363.05059814453125,1629.32373046875,836.6290283203125,-403.5462951660156,1629.32373046875,766.6290283203125,-363.05059814453125,1629.32373046875,776.6290283203125,-363.05059814453125,-1354.23291015625,776.6290893554688,-363.05059814453125,1629.32373046875,766.6290283203125,-363.05059814453125,-1354.23291015625,776.6290893554688,-363.05059814453125,-1354.23291015625,766.6290893554688,-363.05059814453125,-1354.23291015625,846.6290893554688,-363.05059814453125,-1354.23291015625,836.6290893554688,-363.05059814453125,1629.32373046875,836.6290283203125,-363.05059814453125,-1354.23291015625,846.6290893554688,-363.05059814453125,1629.32373046875,836.6290283203125,-363.05059814453125,1629.32373046875,846.6290283203125,-363.05059814453125,1629.32373046875,836.6290283203125,-363.05059814453125,-1354.23291015625,836.6290893554688,-363.05059814453125,-1354.23291015625,836.6290893554688,-403.5462951660156,1629.32373046875,836.6290283203125,-363.05059814453125,-1354.23291015625,836.6290893554688,-403.5462951660156,1629.32373046875,836.6290283203125,-403.5462951660156,-1354.23291015625,776.6290893554688,-403.5462951660156,1629.32373046875,776.6290283203125,-403.5462951660156,1629.32373046875,836.6290283203125,-403.5462951660156,-1354.23291015625,776.6290893554688,-403.5462951660156,1629.32373046875,836.6290283203125,-403.5462951660156,-1354.23291015625,836.6290893554688,-403.5462951660156,-1354.23291015625,776.6290893554688,-363.05059814453125,1629.32373046875,776.6290283203125,-363.05059814453125,1629.32373046875,776.6290283203125,-403.5462951660156,-1354.23291015625,776.6290893554688,-363.05059814453125,1629.32373046875,776.6290283203125,-403.5462951660156,-1354.23291015625,776.6290893554688,-403.5462951660156,-1354.23291015625,776.6290893554688,-363.05059814453125,-1354.23291015625,776.6290893554688,-403.5462951660156,-1354.23291015625,766.6290893554688,-418.5693054199219,-1354.23291015625,776.6290893554688,-363.05059814453125,-1354.23291015625,766.6290893554688,-418.5693054199219,-1354.23291015625,766.6290893554688,-363.05059814453125,-1354.23291015625,766.6290893554688,-418.5693054199219,-1354.23291015625,776.6290893554688,-403.5462951660156,-1354.23291015625,836.6290893554688,-403.5462951660156,-1354.23291015625,766.6290893554688,-418.5693054199219,-1354.23291015625,836.6290893554688,-403.5462951660156,-1354.23291015625,846.6290893554688,-418.5693054199219,1629.32373046875,776.6290283203125,-363.05059814453125,1629.32373046875,766.6290283203125,-363.05059814453125,1629.32373046875,766.6290283203125,-418.5693054199219,1629.32373046875,776.6290283203125,-363.05059814453125,1629.32373046875,766.6290283203125,-418.5693054199219,1629.32373046875,776.6290283203125,-403.5462951660156,1629.32373046875,766.6290283203125,-418.5693054199219,1629.32373046875,846.6290283203125,-418.5693054199219,1629.32373046875,836.6290283203125,-403.5462951660156,1629.32373046875,766.6290283203125,-418.5693054199219,1629.32373046875,836.6290283203125,-403.5462951660156,1629.32373046875,776.6290283203125,-403.5462951660156],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.9045000076293945,-0.30149999260902405,0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.9045000076293945,-0.30149999260902405,0.30149999260902405,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.9045000076293945,-0.30149999260902405,0.30149999260902405,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.9045000076293945,-0.30149999260902405,0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.30149999260902405,0.9045000076293945,0.30149999260902405,0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,0.30149999260902405,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.9045000076293945,0.30149999260902405,0.30149999260902405,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.9045000076293945,0.30149999260902405,0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.30149999260902405,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.9045000076293945,0.30149999260902405,0.30149999260902405,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.9045000076293945,0.30149999260902405,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,0.30149999260902405,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.9045000076293945,-0.30149999260902405,0.30149999260902405,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.9045000076293945,0.30149999260902405,0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.9045000076293945,-0.30149999260902405,0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.9045000076293945,-0.30149999260902405,0.30149999260902405,0.9045000076293945,0.30149999260902405,0.30149999260902405],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0,1,1,1,1,0,0,1,1,0,0,0,0,1,1,1,1,0,0,1,1,0,0,0,0,1,1,1,1,0,0,1,1,0,0,0,0.875,1,1,1,1,0,0.875,1,1,0,0.875,0.27059999108314514,0,0,0,1,0.125,1,0,0,0.125,1,0.125,0.27059999108314514,0,1,0.125,1,0.125,0,0,1,0.125,0,0,0,1,0,0.875,0,0.875,1,1,0,0.875,1,1,1,0.27059999108314514,1,0.27059999108314514,0,1,0,0.27059999108314514,1,1,0,1,1,1,0,1,1,0,1,1,0,0,1,0,0,0.7293999791145325,0,0.7293999791145325,1,0,1,0.7293999791145325,0,0,1,0,0,0.125,1,0.125,0.27059999108314514,0,0,0.125,1,0,0,0,1,0,0,0.125,0.27059999108314514,0.875,0.27059999108314514,0,0,0.875,0.27059999108314514,1,0,0.875,1,1,1,1,0,0.875,1,1,0,0.875,0.27059999108314514,1,0,0,0,0.125,0.27059999108314514,1,0,0.125,0.27059999108314514,0.875,0.27059999108314514],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [137.54541015625,806.6290588378906,-390.80995178222656],
| "radius": 1492.5726585698176
| }
| }
| },
| {
| "uuid": "DEC2466B-62F7-4C96-B3D6-296DD31A21A7",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-1354.23291015625,846.6290893554688,-1747.6082763671875,-1354.23291015625,766.6290893554688,-1747.6082763671875,1629.32373046875,766.6300048828125,-1747.6082763671875,-1354.23291015625,846.6290893554688,-1747.6082763671875,1629.32373046875,766.6300048828125,-1747.6082763671875,1629.32373046875,846.6300048828125,-1747.6082763671875,-1354.23291015625,766.6290893554688,-1747.6082763671875,-1354.23291015625,766.6290893554688,-1803.1268310546875,1629.32373046875,766.6300048828125,-1803.1268310546875,-1354.23291015625,766.6290893554688,-1747.6082763671875,1629.32373046875,766.6300048828125,-1803.1268310546875,1629.32373046875,766.6300048828125,-1747.6082763671875,-1354.23291015625,846.6290893554688,-1803.1268310546875,-1354.23291015625,846.6290893554688,-1747.6082763671875,1629.32373046875,846.6300048828125,-1747.6082763671875,-1354.23291015625,846.6290893554688,-1803.1268310546875,1629.32373046875,846.6300048828125,-1747.6082763671875,1629.32373046875,846.6300048828125,-1803.1268310546875,-1354.23291015625,836.6290893554688,-1762.6312255859375,-1354.23291015625,846.6290893554688,-1747.6082763671875,-1354.23291015625,846.6290893554688,-1803.1268310546875,-1354.23291015625,836.6290893554688,-1762.6312255859375,-1354.23291015625,846.6290893554688,-1803.1268310546875,-1354.23291015625,836.6290893554688,-1803.1268310546875,1629.32373046875,836.6300048828125,-1762.6312255859375,1629.32373046875,836.6300048828125,-1803.1268310546875,1629.32373046875,846.6300048828125,-1803.1268310546875,1629.32373046875,836.6300048828125,-1762.6312255859375,1629.32373046875,846.6300048828125,-1803.1268310546875,1629.32373046875,846.6300048828125,-1747.6082763671875,-1354.23291015625,766.6290893554688,-1803.1268310546875,-1354.23291015625,776.6290893554688,-1803.1268310546875,1629.32373046875,776.6300048828125,-1803.1268310546875,-1354.23291015625,766.6290893554688,-1803.1268310546875,1629.32373046875,776.6300048828125,-1803.1268310546875,1629.32373046875,766.6300048828125,-1803.1268310546875,1629.32373046875,846.6300048828125,-1803.1268310546875,1629.32373046875,836.6300048828125,-1803.1268310546875,-1354.23291015625,836.6290893554688,-1803.1268310546875,1629.32373046875,846.6300048828125,-1803.1268310546875,-1354.23291015625,836.6290893554688,-1803.1268310546875,-1354.23291015625,846.6290893554688,-1803.1268310546875,1629.32373046875,836.6300048828125,-1762.6312255859375,-1354.23291015625,836.6290893554688,-1762.6312255859375,-1354.23291015625,836.6290893554688,-1803.1268310546875,1629.32373046875,836.6300048828125,-1762.6312255859375,-1354.23291015625,836.6290893554688,-1803.1268310546875,1629.32373046875,836.6300048828125,-1803.1268310546875,-1354.23291015625,836.6290893554688,-1762.6312255859375,1629.32373046875,836.6300048828125,-1762.6312255859375,1629.32373046875,776.6300048828125,-1762.6312255859375,-1354.23291015625,836.6290893554688,-1762.6312255859375,1629.32373046875,776.6300048828125,-1762.6312255859375,-1354.23291015625,776.6290893554688,-1762.6312255859375,-1354.23291015625,776.6290893554688,-1762.6312255859375,1629.32373046875,776.6300048828125,-1762.6312255859375,1629.32373046875,776.6300048828125,-1803.1268310546875,-1354.23291015625,776.6290893554688,-1762.6312255859375,1629.32373046875,776.6300048828125,-1803.1268310546875,-1354.23291015625,776.6290893554688,-1803.1268310546875,-1354.23291015625,766.6290893554688,-1803.1268310546875,-1354.23291015625,766.6290893554688,-1747.6082763671875,-1354.23291015625,776.6290893554688,-1762.6312255859375,-1354.23291015625,766.6290893554688,-1803.1268310546875,-1354.23291015625,776.6290893554688,-1762.6312255859375,-1354.23291015625,776.6290893554688,-1803.1268310546875,-1354.23291015625,846.6290893554688,-1747.6082763671875,-1354.23291015625,836.6290893554688,-1762.6312255859375,-1354.23291015625,776.6290893554688,-1762.6312255859375,-1354.23291015625,846.6290893554688,-1747.6082763671875,-1354.23291015625,776.6290893554688,-1762.6312255859375,-1354.23291015625,766.6290893554688,-1747.6082763671875,1629.32373046875,776.6300048828125,-1762.6312255859375,1629.32373046875,766.6300048828125,-1747.6082763671875,1629.32373046875,766.6300048828125,-1803.1268310546875,1629.32373046875,776.6300048828125,-1762.6312255859375,1629.32373046875,766.6300048828125,-1803.1268310546875,1629.32373046875,776.6300048828125,-1803.1268310546875,1629.32373046875,776.6300048828125,-1762.6312255859375,1629.32373046875,836.6300048828125,-1762.6312255859375,1629.32373046875,846.6300048828125,-1747.6082763671875,1629.32373046875,776.6300048828125,-1762.6312255859375,1629.32373046875,846.6300048828125,-1747.6082763671875,1629.32373046875,766.6300048828125,-1747.6082763671875],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.9045000076293945,0.30149999260902405,-0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.9045000076293945,0.30149999260902405,-0.30149999260902405,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.9045000076293945,0.30149999260902405,-0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.9045000076293945,0.30149999260902405,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.9045000076293945,0.30149999260902405,-0.30149999260902405,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0.875,0.27059999108314514,1,0,1,1,0.875,0.27059999108314514,1,1,0.875,1,0.125,0.27059999108314514,0.125,1,0,1,0.125,0.27059999108314514,0,1,0,0,0,0,0.125,0,0.125,1,0,0,0.125,1,0,1,1,1,0.875,1,0.875,0,1,1,0.875,0,1,0,1,1,1,0,0.27059999108314514,0,1,1,0.27059999108314514,0,0.27059999108314514,1,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,1,0.7293999791145325,1,0,0,0.7293999791145325,1,0.7293999791145325,0,0,1,0,0,0.125,0.27059999108314514,0,1,0.125,0.27059999108314514,0.125,1,1,0,0.875,0.27059999108314514,0.125,0.27059999108314514,1,0,0.125,0.27059999108314514,0,0,0.875,0.27059999108314514,1,0,1,1,0.875,0.27059999108314514,1,1,0.875,1,0.875,0.27059999108314514,0.125,0.27059999108314514,0,0,0.875,0.27059999108314514,0,0,1,0],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [137.54541015625,806.6295471191406,-1775.3675537109375],
| "radius": 1492.572668600874
| }
| }
| },
| {
| "uuid": "7955C881-4C2C-4B6D-88D0-7B7A957D210D",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [1312.642822265625,0,-1747.6082763671875,1392.642822265625,0,-1747.6082763671875,1392.642822265625,766.6292114257812,-1747.6082763671875,1312.642822265625,0,-1747.6082763671875,1392.642822265625,766.6292114257812,-1747.6082763671875,1312.642822265625,766.6292114257812,-1747.6082763671875,1392.642822265625,0,-1747.6082763671875,1392.642822265625,0,-1803.1268310546875,1392.642822265625,766.6292114257812,-1803.1268310546875,1392.642822265625,0,-1747.6082763671875,1392.642822265625,766.6292114257812,-1803.1268310546875,1392.642822265625,766.6292114257812,-1747.6082763671875,1312.642822265625,0,-1803.1268310546875,1312.642822265625,0,-1747.6082763671875,1312.642822265625,766.6292114257812,-1747.6082763671875,1312.642822265625,0,-1803.1268310546875,1312.642822265625,766.6292114257812,-1747.6082763671875,1312.642822265625,766.6292114257812,-1803.1268310546875,1322.642822265625,0,-1762.6312255859375,1312.642822265625,0,-1747.6082763671875,1312.642822265625,0,-1803.1268310546875,1322.642822265625,0,-1762.6312255859375,1312.642822265625,0,-1803.1268310546875,1322.642822265625,0,-1803.1268310546875,1322.642822265625,766.6292114257812,-1762.6312255859375,1322.642822265625,766.6292114257812,-1803.1268310546875,1312.642822265625,766.6292114257812,-1803.1268310546875,1322.642822265625,766.6292114257812,-1762.6312255859375,1312.642822265625,766.6292114257812,-1803.1268310546875,1312.642822265625,766.6292114257812,-1747.6082763671875,1392.642822265625,0,-1803.1268310546875,1382.642822265625,0,-1803.1268310546875,1382.642822265625,766.6292114257812,-1803.1268310546875,1392.642822265625,0,-1803.1268310546875,1382.642822265625,766.6292114257812,-1803.1268310546875,1392.642822265625,766.6292114257812,-1803.1268310546875,1312.642822265625,766.6292114257812,-1803.1268310546875,1322.642822265625,766.6292114257812,-1803.1268310546875,1322.642822265625,0,-1803.1268310546875,1312.642822265625,766.6292114257812,-1803.1268310546875,1322.642822265625,0,-1803.1268310546875,1312.642822265625,0,-1803.1268310546875,1322.642822265625,766.6292114257812,-1762.6312255859375,1322.642822265625,0,-1762.6312255859375,1322.642822265625,0,-1803.1268310546875,1322.642822265625,766.6292114257812,-1762.6312255859375,1322.642822265625,0,-1803.1268310546875,1322.642822265625,766.6292114257812,-1803.1268310546875,1322.642822265625,0,-1762.6312255859375,1322.642822265625,766.6292114257812,-1762.6312255859375,1382.642822265625,766.6292114257812,-1762.6312255859375,1322.642822265625,0,-1762.6312255859375,1382.642822265625,766.6292114257812,-1762.6312255859375,1382.642822265625,0,-1762.6312255859375,1382.642822265625,0,-1762.6312255859375,1382.642822265625,766.6292114257812,-1762.6312255859375,1382.642822265625,766.6292114257812,-1803.1268310546875,1382.642822265625,0,-1762.6312255859375,1382.642822265625,766.6292114257812,-1803.1268310546875,1382.642822265625,0,-1803.1268310546875,1392.642822265625,0,-1803.1268310546875,1392.642822265625,0,-1747.6082763671875,1382.642822265625,0,-1762.6312255859375,1392.642822265625,0,-1803.1268310546875,1382.642822265625,0,-1762.6312255859375,1382.642822265625,0,-1803.1268310546875,1312.642822265625,0,-1747.6082763671875,1322.642822265625,0,-1762.6312255859375,1382.642822265625,0,-1762.6312255859375,1312.642822265625,0,-1747.6082763671875,1382.642822265625,0,-1762.6312255859375,1392.642822265625,0,-1747.6082763671875,1382.642822265625,766.6292114257812,-1762.6312255859375,1392.642822265625,766.6292114257812,-1747.6082763671875,1392.642822265625,766.6292114257812,-1803.1268310546875,1382.642822265625,766.6292114257812,-1762.6312255859375,1392.642822265625,766.6292114257812,-1803.1268310546875,1382.642822265625,766.6292114257812,-1803.1268310546875,1382.642822265625,766.6292114257812,-1762.6312255859375,1322.642822265625,766.6292114257812,-1762.6312255859375,1312.642822265625,766.6292114257812,-1747.6082763671875,1382.642822265625,766.6292114257812,-1762.6312255859375,1312.642822265625,766.6292114257812,-1747.6082763671875,1392.642822265625,766.6292114257812,-1747.6082763671875],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0.875,0.27059999108314514,1,0,1,1,0.875,0.27059999108314514,1,1,0.875,1,0.125,0.27059999108314514,0.125,1,0,1,0.125,0.27059999108314514,0,1,0,0,0,0,0.125,0,0.125,1,0,0,0.125,1,0,1,1,1,0.875,1,0.875,0,1,1,0.875,0,1,0,1,1,1,0,0.27059999108314514,0,1,1,0.27059999108314514,0,0.27059999108314514,1,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,1,0.7293999791145325,1,0,0,0.7293999791145325,1,0.7293999791145325,0,0,1,0,0,0.125,0.27059999108314514,0,1,0.125,0.27059999108314514,0.125,1,1,0,0.875,0.27059999108314514,0.125,0.27059999108314514,1,0,0.125,0.27059999108314514,0,0,0.875,0.27059999108314514,1,0,1,1,0.875,0.27059999108314514,1,1,0.875,1,0.875,0.27059999108314514,0.125,0.27059999108314514,0,0,0.875,0.27059999108314514,0,0,1,0],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [1352.642822265625,383.3146057128906,-1775.3675537109375],
| "radius": 386.3944415121367
| }
| }
| },
| {
| "uuid": "1F7C7269-8C98-469D-9419-D77206BB4314",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-1156.16357421875,766.6292114257812,-418.5693054199219,-1076.16357421875,766.6292114257812,-418.5693054199219,-1076.16357421875,0,-418.56939697265625,-1156.16357421875,766.6292114257812,-418.5693054199219,-1076.16357421875,0,-418.56939697265625,-1156.16357421875,0,-418.56939697265625,-1076.16357421875,766.6292114257812,-418.5693054199219,-1076.16357421875,766.6292114257812,-363.0506896972656,-1076.16357421875,0,-363.0506896972656,-1076.16357421875,766.6292114257812,-418.5693054199219,-1076.16357421875,0,-363.0506896972656,-1076.16357421875,0,-418.56939697265625,-1156.16357421875,766.6292114257812,-363.0506896972656,-1156.16357421875,766.6292114257812,-418.5693054199219,-1156.16357421875,0,-418.56939697265625,-1156.16357421875,766.6292114257812,-363.0506896972656,-1156.16357421875,0,-418.56939697265625,-1156.16357421875,0,-363.0506896972656,-1146.16357421875,0,-363.0506896972656,-1156.16357421875,0,-363.0506896972656,-1156.16357421875,0,-418.56939697265625,-1146.16357421875,0,-363.0506896972656,-1156.16357421875,0,-418.56939697265625,-1146.16357421875,0,-403.54638671875,-1156.16357421875,766.6292114257812,-418.5693054199219,-1156.16357421875,766.6292114257812,-363.0506896972656,-1146.16357421875,766.6292114257812,-363.0506896972656,-1156.16357421875,766.6292114257812,-418.5693054199219,-1146.16357421875,766.6292114257812,-363.0506896972656,-1146.16357421875,766.6292114257812,-403.54638671875,-1076.16357421875,766.6292114257812,-363.0506896972656,-1086.16357421875,766.6292114257812,-363.0506896972656,-1086.16357421875,0,-363.0506896972656,-1076.16357421875,766.6292114257812,-363.0506896972656,-1086.16357421875,0,-363.0506896972656,-1076.16357421875,0,-363.0506896972656,-1156.16357421875,0,-363.0506896972656,-1146.16357421875,0,-363.0506896972656,-1146.16357421875,766.6292114257812,-363.0506896972656,-1156.16357421875,0,-363.0506896972656,-1146.16357421875,766.6292114257812,-363.0506896972656,-1156.16357421875,766.6292114257812,-363.0506896972656,-1146.16357421875,766.6292114257812,-363.0506896972656,-1146.16357421875,0,-363.0506896972656,-1146.16357421875,0,-403.54638671875,-1146.16357421875,766.6292114257812,-363.0506896972656,-1146.16357421875,0,-403.54638671875,-1146.16357421875,766.6292114257812,-403.54638671875,-1086.16357421875,0,-403.54638671875,-1086.16357421875,766.6292114257812,-403.54638671875,-1146.16357421875,766.6292114257812,-403.54638671875,-1086.16357421875,0,-403.54638671875,-1146.16357421875,766.6292114257812,-403.54638671875,-1146.16357421875,0,-403.54638671875,-1086.16357421875,0,-363.0506896972656,-1086.16357421875,766.6292114257812,-363.0506896972656,-1086.16357421875,766.6292114257812,-403.54638671875,-1086.16357421875,0,-363.0506896972656,-1086.16357421875,766.6292114257812,-403.54638671875,-1086.16357421875,0,-403.54638671875,-1086.16357421875,0,-363.0506896972656,-1086.16357421875,0,-403.54638671875,-1076.16357421875,0,-418.56939697265625,-1086.16357421875,0,-363.0506896972656,-1076.16357421875,0,-418.56939697265625,-1076.16357421875,0,-363.0506896972656,-1076.16357421875,0,-418.56939697265625,-1086.16357421875,0,-403.54638671875,-1146.16357421875,0,-403.54638671875,-1076.16357421875,0,-418.56939697265625,-1146.16357421875,0,-403.54638671875,-1156.16357421875,0,-418.56939697265625,-1086.16357421875,766.6292114257812,-363.0506896972656,-1076.16357421875,766.6292114257812,-363.0506896972656,-1076.16357421875,766.6292114257812,-418.5693054199219,-1086.16357421875,766.6292114257812,-363.0506896972656,-1076.16357421875,766.6292114257812,-418.5693054199219,-1086.16357421875,766.6292114257812,-403.54638671875,-1076.16357421875,766.6292114257812,-418.5693054199219,-1156.16357421875,766.6292114257812,-418.5693054199219,-1146.16357421875,766.6292114257812,-403.54638671875,-1076.16357421875,766.6292114257812,-418.5693054199219,-1146.16357421875,766.6292114257812,-403.54638671875,-1086.16357421875,766.6292114257812,-403.54638671875],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.30149999260902405,0.9045000076293945,0.30149999260902405,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.30149999260902405,0.9045000076293945,0.30149999260902405,0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.30149999260902405,0.9045000076293945,0.30149999260902405,0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.30149999260902405,0.9045000076293945,0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.30149999260902405,0.9045000076293945,0.30149999260902405],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0,1,1,1,1,0,0,1,1,0,0,0,0,1,1,1,1,0,0,1,1,0,0,0,0,1,1,1,1,0,0,1,1,0,0,0,0.875,1,1,1,1,0,0.875,1,1,0,0.875,0.27059999108314514,0,0,0,1,0.125,1,0,0,0.125,1,0.125,0.27059999108314514,0,1,0.125,1,0.125,0,0,1,0.125,0,0,0,1,0,0.875,0,0.875,1,1,0,0.875,1,1,1,0.27059999108314514,1,0.27059999108314514,0,1,0,0.27059999108314514,1,1,0,1,1,1,0,1,1,0,1,1,0,0,1,0,0,0.7293999791145325,0,0.7293999791145325,1,0,1,0.7293999791145325,0,0,1,0,0,0.125,1,0.125,0.27059999108314514,0,0,0.125,1,0,0,0,1,0,0,0.125,0.27059999108314514,0.875,0.27059999108314514,0,0,0.875,0.27059999108314514,1,0,0.875,1,1,1,1,0,0.875,1,1,0,0.875,0.27059999108314514,1,0,0,0,0.125,0.27059999108314514,1,0,0.125,0.27059999108314514,0.875,0.27059999108314514],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-1116.16357421875,383.3146057128906,-390.81004333496094],
| "radius": 386.39444699323957
| }
| }
| },
| {
| "uuid": "014CFBB7-F8C8-423E-B38D-990E8F1B49C9",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [1312.642822265625,766.6292114257812,-418.5692138671875,1392.642822265625,766.6292114257812,-418.5692138671875,1392.642822265625,0,-418.5693054199219,1312.642822265625,766.6292114257812,-418.5692138671875,1392.642822265625,0,-418.5693054199219,1312.642822265625,0,-418.5693054199219,1392.642822265625,766.6292114257812,-418.5692138671875,1392.642822265625,766.6292114257812,-363.0505065917969,1392.642822265625,0,-363.05059814453125,1392.642822265625,766.6292114257812,-418.5692138671875,1392.642822265625,0,-363.05059814453125,1392.642822265625,0,-418.5693054199219,1312.642822265625,766.6292114257812,-363.0505065917969,1312.642822265625,766.6292114257812,-418.5692138671875,1312.642822265625,0,-418.5693054199219,1312.642822265625,766.6292114257812,-363.0505065917969,1312.642822265625,0,-418.5693054199219,1312.642822265625,0,-363.05059814453125,1322.642822265625,0,-363.05059814453125,1312.642822265625,0,-363.05059814453125,1312.642822265625,0,-418.5693054199219,1322.642822265625,0,-363.05059814453125,1312.642822265625,0,-418.5693054199219,1322.642822265625,0,-403.5462951660156,1312.642822265625,766.6292114257812,-418.5692138671875,1312.642822265625,766.6292114257812,-363.0505065917969,1322.642822265625,766.6292114257812,-363.0505065917969,1312.642822265625,766.6292114257812,-418.5692138671875,1322.642822265625,766.6292114257812,-363.0505065917969,1322.642822265625,766.6292114257812,-403.54620361328125,1392.642822265625,766.6292114257812,-363.0505065917969,1382.642822265625,766.6292114257812,-363.0505065917969,1382.642822265625,0,-363.05059814453125,1392.642822265625,766.6292114257812,-363.0505065917969,1382.642822265625,0,-363.05059814453125,1392.642822265625,0,-363.05059814453125,1312.642822265625,0,-363.05059814453125,1322.642822265625,0,-363.05059814453125,1322.642822265625,766.6292114257812,-363.0505065917969,1312.642822265625,0,-363.05059814453125,1322.642822265625,766.6292114257812,-363.0505065917969,1312.642822265625,766.6292114257812,-363.0505065917969,1322.642822265625,766.6292114257812,-363.0505065917969,1322.642822265625,0,-363.05059814453125,1322.642822265625,0,-403.5462951660156,1322.642822265625,766.6292114257812,-363.0505065917969,1322.642822265625,0,-403.5462951660156,1322.642822265625,766.6292114257812,-403.54620361328125,1382.642822265625,0,-403.5462951660156,1382.642822265625,766.6292114257812,-403.54620361328125,1322.642822265625,766.6292114257812,-403.54620361328125,1382.642822265625,0,-403.5462951660156,1322.642822265625,766.6292114257812,-403.54620361328125,1322.642822265625,0,-403.5462951660156,1382.642822265625,0,-363.05059814453125,1382.642822265625,766.6292114257812,-363.0505065917969,1382.642822265625,766.6292114257812,-403.54620361328125,1382.642822265625,0,-363.05059814453125,1382.642822265625,766.6292114257812,-403.54620361328125,1382.642822265625,0,-403.5462951660156,1382.642822265625,0,-363.05059814453125,1382.642822265625,0,-403.5462951660156,1392.642822265625,0,-418.5693054199219,1382.642822265625,0,-363.05059814453125,1392.642822265625,0,-418.5693054199219,1392.642822265625,0,-363.05059814453125,1392.642822265625,0,-418.5693054199219,1382.642822265625,0,-403.5462951660156,1322.642822265625,0,-403.5462951660156,1392.642822265625,0,-418.5693054199219,1322.642822265625,0,-403.5462951660156,1312.642822265625,0,-418.5693054199219,1382.642822265625,766.6292114257812,-363.0505065917969,1392.642822265625,766.6292114257812,-363.0505065917969,1392.642822265625,766.6292114257812,-418.5692138671875,1382.642822265625,766.6292114257812,-363.0505065917969,1392.642822265625,766.6292114257812,-418.5692138671875,1382.642822265625,766.6292114257812,-403.54620361328125,1392.642822265625,766.6292114257812,-418.5692138671875,1312.642822265625,766.6292114257812,-418.5692138671875,1322.642822265625,766.6292114257812,-403.54620361328125,1392.642822265625,766.6292114257812,-418.5692138671875,1322.642822265625,766.6292114257812,-403.54620361328125,1382.642822265625,766.6292114257812,-403.54620361328125],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.30149999260902405,0.9045000076293945,0.30149999260902405,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.30149999260902405,0.9045000076293945,0.30149999260902405,0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.30149999260902405,0.9045000076293945,0.30149999260902405,0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.30149999260902405,-0.9045000076293945,0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,-0.9045000076293945,0.30149999260902405,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.30149999260902405,0.9045000076293945,0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,0.30149999260902405,-0.30149999260902405,0.9045000076293945,0.30149999260902405],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0,1,1,1,1,0,0,1,1,0,0,0,0,1,1,1,1,0,0,1,1,0,0,0,0,1,1,1,1,0,0,1,1,0,0,0,0.875,1,1,1,1,0,0.875,1,1,0,0.875,0.27059999108314514,0,0,0,1,0.125,1,0,0,0.125,1,0.125,0.27059999108314514,0,1,0.125,1,0.125,0,0,1,0.125,0,0,0,1,0,0.875,0,0.875,1,1,0,0.875,1,1,1,0.27059999108314514,1,0.27059999108314514,0,1,0,0.27059999108314514,1,1,0,1,1,1,0,1,1,0,1,1,0,0,1,0,0,0.7293999791145325,0,0.7293999791145325,1,0,1,0.7293999791145325,0,0,1,0,0,0.125,1,0.125,0.27059999108314514,0,0,0.125,1,0,0,0,1,0,0,0.125,0.27059999108314514,0.875,0.27059999108314514,0,0,0.875,0.27059999108314514,1,0,0.875,1,1,1,1,0,0.875,1,1,0,0.875,0.27059999108314514,1,0,0,0,0.125,0.27059999108314514,1,0,0.125,0.27059999108314514,0.875,0.27059999108314514],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [1352.642822265625,383.3146057128906,-390.8099060058594],
| "radius": 386.3944502819085
| }
| }
| },
| {
| "uuid": "D4A739A8-0CBF-4278-8ABE-4E1ED491CA3A",
| "type": "BufferGeometry",
| "data": {
| "attributes": {
| "position": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-1156.16357421875,0,-1747.6082763671875,-1076.16357421875,0,-1747.6082763671875,-1076.16357421875,766.6292114257812,-1747.6082763671875,-1156.16357421875,0,-1747.6082763671875,-1076.16357421875,766.6292114257812,-1747.6082763671875,-1156.16357421875,766.6292114257812,-1747.6082763671875,-1076.16357421875,0,-1747.6082763671875,-1076.16357421875,0,-1803.1268310546875,-1076.16357421875,766.6292114257812,-1803.1268310546875,-1076.16357421875,0,-1747.6082763671875,-1076.16357421875,766.6292114257812,-1803.1268310546875,-1076.16357421875,766.6292114257812,-1747.6082763671875,-1156.16357421875,0,-1803.1268310546875,-1156.16357421875,0,-1747.6082763671875,-1156.16357421875,766.6292114257812,-1747.6082763671875,-1156.16357421875,0,-1803.1268310546875,-1156.16357421875,766.6292114257812,-1747.6082763671875,-1156.16357421875,766.6292114257812,-1803.1268310546875,-1146.16357421875,0,-1762.6312255859375,-1156.16357421875,0,-1747.6082763671875,-1156.16357421875,0,-1803.1268310546875,-1146.16357421875,0,-1762.6312255859375,-1156.16357421875,0,-1803.1268310546875,-1146.16357421875,0,-1803.1268310546875,-1146.16357421875,766.6292114257812,-1762.6312255859375,-1146.16357421875,766.6292114257812,-1803.1268310546875,-1156.16357421875,766.6292114257812,-1803.1268310546875,-1146.16357421875,766.6292114257812,-1762.6312255859375,-1156.16357421875,766.6292114257812,-1803.1268310546875,-1156.16357421875,766.6292114257812,-1747.6082763671875,-1076.16357421875,0,-1803.1268310546875,-1086.16357421875,0,-1803.1268310546875,-1086.16357421875,766.6292114257812,-1803.1268310546875,-1076.16357421875,0,-1803.1268310546875,-1086.16357421875,766.6292114257812,-1803.1268310546875,-1076.16357421875,766.6292114257812,-1803.1268310546875,-1156.16357421875,766.6292114257812,-1803.1268310546875,-1146.16357421875,766.6292114257812,-1803.1268310546875,-1146.16357421875,0,-1803.1268310546875,-1156.16357421875,766.6292114257812,-1803.1268310546875,-1146.16357421875,0,-1803.1268310546875,-1156.16357421875,0,-1803.1268310546875,-1146.16357421875,766.6292114257812,-1762.6312255859375,-1146.16357421875,0,-1762.6312255859375,-1146.16357421875,0,-1803.1268310546875,-1146.16357421875,766.6292114257812,-1762.6312255859375,-1146.16357421875,0,-1803.1268310546875,-1146.16357421875,766.6292114257812,-1803.1268310546875,-1146.16357421875,0,-1762.6312255859375,-1146.16357421875,766.6292114257812,-1762.6312255859375,-1086.16357421875,766.6292114257812,-1762.6312255859375,-1146.16357421875,0,-1762.6312255859375,-1086.16357421875,766.6292114257812,-1762.6312255859375,-1086.16357421875,0,-1762.6312255859375,-1086.16357421875,0,-1762.6312255859375,-1086.16357421875,766.6292114257812,-1762.6312255859375,-1086.16357421875,766.6292114257812,-1803.1268310546875,-1086.16357421875,0,-1762.6312255859375,-1086.16357421875,766.6292114257812,-1803.1268310546875,-1086.16357421875,0,-1803.1268310546875,-1076.16357421875,0,-1803.1268310546875,-1076.16357421875,0,-1747.6082763671875,-1086.16357421875,0,-1762.6312255859375,-1076.16357421875,0,-1803.1268310546875,-1086.16357421875,0,-1762.6312255859375,-1086.16357421875,0,-1803.1268310546875,-1156.16357421875,0,-1747.6082763671875,-1146.16357421875,0,-1762.6312255859375,-1086.16357421875,0,-1762.6312255859375,-1156.16357421875,0,-1747.6082763671875,-1086.16357421875,0,-1762.6312255859375,-1076.16357421875,0,-1747.6082763671875,-1086.16357421875,766.6292114257812,-1762.6312255859375,-1076.16357421875,766.6292114257812,-1747.6082763671875,-1076.16357421875,766.6292114257812,-1803.1268310546875,-1086.16357421875,766.6292114257812,-1762.6312255859375,-1076.16357421875,766.6292114257812,-1803.1268310546875,-1086.16357421875,766.6292114257812,-1803.1268310546875,-1086.16357421875,766.6292114257812,-1762.6312255859375,-1146.16357421875,766.6292114257812,-1762.6312255859375,-1156.16357421875,766.6292114257812,-1747.6082763671875,-1086.16357421875,766.6292114257812,-1762.6312255859375,-1156.16357421875,766.6292114257812,-1747.6082763671875,-1076.16357421875,766.6292114257812,-1747.6082763671875],
| "normalized": false
| },
| "normal": {
| "itemSize": 3,
| "type": "Float32Array",
| "array": [-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.30149999260902405,-0.9045000076293945,-0.30149999260902405,0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.5774000287055969,0.5774000287055969,-0.5774000287055969,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,0.5774000287055969,-0.30149999260902405,0.9045000076293945,-0.30149999260902405,-0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969,0.5774000287055969],
| "normalized": false
| },
| "uv": {
| "itemSize": 2,
| "type": "Float32Array",
| "array": [0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0.875,0.27059999108314514,1,0,1,1,0.875,0.27059999108314514,1,1,0.875,1,0.125,0.27059999108314514,0.125,1,0,1,0.125,0.27059999108314514,0,1,0,0,0,0,0.125,0,0.125,1,0,0,0.125,1,0,1,1,1,0.875,1,0.875,0,1,1,0.875,0,1,0,1,1,1,0,0.27059999108314514,0,1,1,0.27059999108314514,0,0.27059999108314514,1,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,1,0.7293999791145325,1,0,0,0.7293999791145325,1,0.7293999791145325,0,0,1,0,0,0.125,0.27059999108314514,0,1,0.125,0.27059999108314514,0.125,1,1,0,0.875,0.27059999108314514,0.125,0.27059999108314514,1,0,0.125,0.27059999108314514,0,0,0.875,0.27059999108314514,1,0,1,1,0.875,0.27059999108314514,1,1,0.875,1,0.875,0.27059999108314514,0.125,0.27059999108314514,0,0,0.875,0.27059999108314514,0,0,1,0],
| "normalized": false
| }
| },
| "boundingSphere": {
| "center": [-1116.16357421875,383.3146057128906,-1775.3675537109375],
| "radius": 386.3944415121367
| }
| }
| }],
| "materials": [
| {
| "uuid": "1D9C9D92-406E-42A1-B534-0F686E44CF93",
| "type": "MeshPhongMaterial",
| "name": "wire_006135006",
| "color": 16777215,
| "emissive": 0,
| "specular": 1118481,
| "shininess": 30,
| "reflectivity": 1,
| "refractionRatio": 0.98,
| "depthFunc": 3,
| "depthTest": true,
| "depthWrite": true,
| "colorWrite": true,
| "stencilWrite": false,
| "stencilWriteMask": 255,
| "stencilFunc": 519,
| "stencilRef": 0,
| "stencilFuncMask": 255,
| "stencilFail": 7680,
| "stencilZFail": 7680,
| "stencilZPass": 7680
| },
| {
| "uuid": "03758D71-F6FE-4196-B9D4-D25D85F5B6C8",
| "type": "MeshPhongMaterial",
| "name": "wire_008110135",
| "color": 16777215,
| "emissive": 0,
| "specular": 1118481,
| "shininess": 30,
| "reflectivity": 1,
| "refractionRatio": 0.98,
| "depthFunc": 3,
| "depthTest": true,
| "depthWrite": true,
| "colorWrite": true,
| "stencilWrite": false,
| "stencilWriteMask": 255,
| "stencilFunc": 519,
| "stencilRef": 0,
| "stencilFuncMask": 255,
| "stencilFail": 7680,
| "stencilZFail": 7680,
| "stencilZPass": 7680
| }],
| "object": {
| "uuid": "2BB760BF-62F7-4D29-BE42-CF2CB5312FC0",
| "type": "Group",
| "name": "辊筒输送机.obj",
| "layers": 1,
| "matrix": [0.025,0,0,0,0,0.025,0,0,0,0,0.025,0,33.903,0,45.136,1],
| "children": [
| {
| "uuid": "C7BA29EC-CC78-4741-9CB4-95FFF1893148",
| "type": "Mesh",
| "name": "Cylinder010",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "BD58CFF2-3DB1-4C60-B386-D941DE03566E",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "EC72EFE7-09C3-4E3A-81D8-42F4720E36AC",
| "type": "Mesh",
| "name": "Cylinder011",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "20DF0A70-09B9-4B90-BD93-6A8D2D5BE1E6",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "96604ECC-7A5D-4B8A-8D7E-CA20FB0D941F",
| "type": "Mesh",
| "name": "Cylinder012",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "038D040E-8DA2-411D-8D74-DDC8E577FB81",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "C30C05C0-6265-4E56-8639-49614F919DFA",
| "type": "Mesh",
| "name": "Cylinder013",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "D7A50567-976E-4B9E-BCD2-664E0D891304",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "A19DBF1A-6F07-447C-8DF4-29C136ADEC78",
| "type": "Mesh",
| "name": "Cylinder014",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "22A55CF7-73B6-45C2-95EA-7750AD1DC65D",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "172DC94B-17B1-43CF-908B-0BF2E0732A02",
| "type": "Mesh",
| "name": "Cylinder015",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "E75DB463-CE03-47CD-B73B-FDCD8D251E6E",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "486FBA04-CDCD-4F92-AF66-651E877FF183",
| "type": "Mesh",
| "name": "Cylinder016",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "00D7C3E3-AD7D-48FE-A099-327E31CEA5E0",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "AA46F3AE-8C03-46D1-888B-C377D757BE14",
| "type": "Mesh",
| "name": "Cylinder017",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "4378B561-1D58-41CC-8C0E-40FDD50758CE",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "1E59BA98-668F-49E9-9B4C-1730E37072BB",
| "type": "Mesh",
| "name": "Cylinder018",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "E6C6AFC3-1C66-4436-9E95-EDB9C72F1F39",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "2798B9DC-C916-4A6C-ACB7-B33FF5D1BD23",
| "type": "Mesh",
| "name": "Cylinder019",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "FDC2CB19-7213-46C7-8EC6-035337846FDA",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "88FD27ED-1BC1-4F7A-8D5A-9A7247E3385E",
| "type": "Mesh",
| "name": "Cylinder020",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "6572B77D-89F1-4C9D-910A-6A819F1DD720",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "CB0D799D-47AE-4369-B7CF-AC2AFFB7A339",
| "type": "Mesh",
| "name": "Cylinder021",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "B2BB191F-C3CB-4D13-AB11-0BE6A4B3E9B7",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "2ACE26C1-7A1E-41FC-980F-73713E87BA7A",
| "type": "Mesh",
| "name": "Cylinder022",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "9189B744-88C0-469A-B6D4-48AEACA1FC63",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "2880624C-A197-408F-999A-072AB9DE2652",
| "type": "Mesh",
| "name": "Cylinder023",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "B7D5E062-672C-490A-BDE7-5208FE6F6623",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "5D1B5AEE-3109-4F11-A4AE-E3C78782BDF8",
| "type": "Mesh",
| "name": "Cylinder024",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "36720573-534C-468E-AC10-39D9B05DFDBC",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "B3D9AA2B-58A0-4AE8-83C3-E2190B76FD3C",
| "type": "Mesh",
| "name": "Cylinder025",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "DCC454D4-AB65-47C4-AC47-A9AECA081EB9",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "87143598-D17D-4B3B-8B96-15CB05307B8D",
| "type": "Mesh",
| "name": "Cylinder026",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "3B966B7D-601B-468C-86F7-7EB2E63D54C8",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "23320480-77B6-48A9-94EC-A74609CC5A29",
| "type": "Mesh",
| "name": "Cylinder027",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "00F97D5B-C49B-4216-A69E-3AE59FCAB46F",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "43B4CB20-E24C-4E4F-B705-941E8E8F0AB6",
| "type": "Mesh",
| "name": "Cylinder028",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "7574A3FF-52A6-4A66-83E0-DCE1A1ABC950",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "6E308075-6D07-45F1-A9AF-35EAAA75C97B",
| "type": "Mesh",
| "name": "Cylinder029",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "F1C40417-548E-48B8-B6B1-D0FD042DABF3",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "FC28C73A-DB50-46FF-B1F7-A56650576EAD",
| "type": "Mesh",
| "name": "Cylinder030",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "D273F8B2-6DD6-4E1D-AD7B-1E488A94D0A0",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "CF93FEF2-4E43-43EA-B563-7B715A862CAC",
| "type": "Mesh",
| "name": "Cylinder031",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "5D5D11C1-39E1-4E4A-913A-B0E854BA77EB",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "8A173047-E149-4D90-825D-8322AB217C15",
| "type": "Mesh",
| "name": "Cylinder032",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "5C002284-54F7-4946-BF1A-8E06B2D20128",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "FB7361BB-CF4C-43AD-92EC-04C401F5090D",
| "type": "Mesh",
| "name": "Cylinder033",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "2B4582D6-9471-4237-BF34-E1BF9E879911",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "89044236-CD52-4862-AAEC-9D4191F7B0C5",
| "type": "Mesh",
| "name": "Cylinder034",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "365B73AF-DA0D-4C25-ADF7-F9E04127B757",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "0F352E9D-348C-4473-8B67-5371C8FF2A66",
| "type": "Mesh",
| "name": "Cylinder035",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "B8BC97EE-3C89-4779-B839-E5ED85C437F1",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "63253FAA-A3B5-4FF1-A42A-0B7C57585379",
| "type": "Mesh",
| "name": "Cylinder036",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "6B6B5B27-6A40-4CDC-A98B-46BA3F11FDF7",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "60A29EE1-BC07-409A-B42C-BFDCD0EA839C",
| "type": "Mesh",
| "name": "Cylinder037",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "08EB7DAE-D91C-4F98-90E3-12A099DFC3F8",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "01868F83-5E6D-4D0B-9DA3-6F19AB0588C1",
| "type": "Mesh",
| "name": "Cylinder038",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "DBCCC470-553C-44DF-9408-0ACC1E9DDCC9",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "FFDF00AA-ECF9-497A-98A2-05AF2C058BB2",
| "type": "Mesh",
| "name": "Cylinder039",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "BDD39BEB-7700-440D-9EB9-6382CEEB370F",
| "material": "1D9C9D92-406E-42A1-B534-0F686E44CF93"
| },
| {
| "uuid": "E13F734D-FC00-49BF-96E8-6AC736510486",
| "type": "Mesh",
| "name": "Box005",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "FC84149C-FDB8-4797-9079-E657C29453E0",
| "material": "03758D71-F6FE-4196-B9D4-D25D85F5B6C8"
| },
| {
| "uuid": "031C6ACD-A013-43A9-A813-C7C90D06E6D3",
| "type": "Mesh",
| "name": "Box003",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "DEC2466B-62F7-4C96-B3D6-296DD31A21A7",
| "material": "03758D71-F6FE-4196-B9D4-D25D85F5B6C8"
| },
| {
| "uuid": "B325CA2D-A42C-41F2-AFE1-ACA3CCCA1FAE",
| "type": "Mesh",
| "name": "Box006",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "7955C881-4C2C-4B6D-88D0-7B7A957D210D",
| "material": "03758D71-F6FE-4196-B9D4-D25D85F5B6C8"
| },
| {
| "uuid": "29B976A2-8630-4397-911B-4747166A422D",
| "type": "Mesh",
| "name": "Box007",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "1F7C7269-8C98-469D-9419-D77206BB4314",
| "material": "03758D71-F6FE-4196-B9D4-D25D85F5B6C8"
| },
| {
| "uuid": "B59B24D7-94E3-4E91-92FA-AFD95C50FA82",
| "type": "Mesh",
| "name": "Box008",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "014CFBB7-F8C8-423E-B38D-990E8F1B49C9",
| "material": "03758D71-F6FE-4196-B9D4-D25D85F5B6C8"
| },
| {
| "uuid": "E85F1C5B-77DB-4565-8F67-3C5D08934547",
| "type": "Mesh",
| "name": "Box001",
| "layers": 1,
| "matrix": [1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],
| "geometry": "D4A739A8-0CBF-4278-8ABE-4E1ED491CA3A",
| "material": "03758D71-F6FE-4196-B9D4-D25D85F5B6C8"
| }]
| }
| }
|
|