aboutsummaryrefslogtreecommitdiffstats
path: root/src/cow_horns.rs
blob: 72b9b8d0d0fe2d22e70b9523eb440171072a40f8 (plain)
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
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046

// This file auto-generated from cow_horns.c using model_c2rs.py
// Don't edit by hand!

use cow_vertex::Vertex;

pub const COW_HORNS_VERTICES: [Vertex; 1019] = [
    Vertex { position: (4.22473, 2.624525, -0.491916),
             normal: (-0.000715, -0.295728, 0.955272), },
    Vertex { position: (4.209941, 2.600612, -0.337597),
             normal: (-0.03479, 0.69667, 0.716547), },
    Vertex { position: (4.328606, 2.563996, -0.343892),
             normal: (-0.01139, 0.953897, 0.299916), },
    Vertex { position: (4.22473, 2.624525, -0.491916),
             normal: (-0.000715, -0.295728, 0.955272), },
    Vertex { position: (4.328606, 2.563996, -0.343892),
             normal: (-0.01139, 0.953897, 0.299916), },
    Vertex { position: (4.344028, 2.585635, -0.470949),
             normal: (-0.163152, 0.69985, 0.695407), },
    Vertex { position: (4.344028, 2.585635, -0.470949),
             normal: (-0.163152, 0.69985, 0.695407), },
    Vertex { position: (4.328606, 2.563996, -0.343892),
             normal: (-0.01139, 0.953897, 0.299916), },
    Vertex { position: (4.410844, 2.500167, -0.351972),
             normal: (-0.151742, 0.274295, 0.949598), },
    Vertex { position: (4.344028, 2.585635, -0.470949),
             normal: (-0.163152, 0.69985, 0.695407), },
    Vertex { position: (4.410844, 2.500167, -0.351972),
             normal: (-0.151742, 0.274295, 0.949598), },
    Vertex { position: (4.407729, 2.53164, -0.486692),
             normal: (-0.090939, 0.953562, 0.287141), },
    Vertex { position: (4.277169, 2.652435, -0.591369),
             normal: (0.008972, 0.708004, 0.706152), },
    Vertex { position: (4.22473, 2.624525, -0.491916),
             normal: (-0.000715, -0.295728, 0.955272), },
    Vertex { position: (4.344028, 2.585635, -0.470949),
             normal: (-0.163152, 0.69985, 0.695407), },
    Vertex { position: (4.277169, 2.652435, -0.591369),
             normal: (0.008972, 0.708004, 0.706152), },
    Vertex { position: (4.344028, 2.585635, -0.470949),
             normal: (-0.163152, 0.69985, 0.695407), },
    Vertex { position: (4.359483, 2.615839, -0.596817),
             normal: (0.809878, -0.450757, -0.375386), },
    Vertex { position: (4.359483, 2.615839, -0.596817),
             normal: (0.809878, -0.450757, -0.375386), },
    Vertex { position: (4.344028, 2.585635, -0.470949),
             normal: (-0.163152, 0.69985, 0.695407), },
    Vertex { position: (4.407729, 2.53164, -0.486692),
             normal: (-0.090939, 0.953562, 0.287141), },
    Vertex { position: (4.359483, 2.615839, -0.596817),
             normal: (0.809878, -0.450757, -0.375386), },
    Vertex { position: (4.407729, 2.53164, -0.486692),
             normal: (-0.090939, 0.953562, 0.287141), },
    Vertex { position: (4.423033, 2.561337, -0.603562),
             normal: (0.795507, -0.586003, -0.154171), },
    Vertex { position: (4.35668, 2.682996, -0.71905),
             normal: (0.743898, -0.655714, 0.129057), },
    Vertex { position: (4.277169, 2.652435, -0.591369),
             normal: (0.008972, 0.708004, 0.706152), },
    Vertex { position: (4.359483, 2.615839, -0.596817),
             normal: (0.809878, -0.450757, -0.375386), },
    Vertex { position: (4.35668, 2.682996, -0.71905),
             normal: (0.743898, -0.655714, 0.129057), },
    Vertex { position: (4.359483, 2.615839, -0.596817),
             normal: (0.809878, -0.450757, -0.375386), },
    Vertex { position: (4.411541, 2.663824, -0.713132),
             normal: (0.083641, -0.819891, -0.566378), },
    Vertex { position: (4.411541, 2.663824, -0.713132),
             normal: (0.083641, -0.819891, -0.566378), },
    Vertex { position: (4.359483, 2.615839, -0.596817),
             normal: (0.809878, -0.450757, -0.375386), },
    Vertex { position: (4.423033, 2.561337, -0.603562),
             normal: (0.795507, -0.586003, -0.154171), },
    Vertex { position: (4.411541, 2.663824, -0.713132),
             normal: (0.083641, -0.819891, -0.566378), },
    Vertex { position: (4.423033, 2.561337, -0.603562),
             normal: (0.795507, -0.586003, -0.154171), },
    Vertex { position: (4.47609, 2.606654, -0.692301),
             normal: (0.042118, -0.881894, -0.469563), },
    Vertex { position: (4.418954, 2.707401, -0.782531),
             normal: (0.713982, 0.301536, -0.631907), },
    Vertex { position: (4.35668, 2.682996, -0.71905),
             normal: (0.743898, -0.655714, 0.129057), },
    Vertex { position: (4.411541, 2.663824, -0.713132),
             normal: (0.083641, -0.819891, -0.566378), },
    Vertex { position: (4.418954, 2.707401, -0.782531),
             normal: (0.713982, 0.301536, -0.631907), },
    Vertex { position: (4.411541, 2.663824, -0.713132),
             normal: (0.083641, -0.819891, -0.566378), },
    Vertex { position: (4.465268, 2.695425, -0.757267),
             normal: (0.086688, -0.887002, -0.453556), },
    Vertex { position: (4.411541, 2.663824, -0.713132),
             normal: (0.083641, -0.819891, -0.566378), },
    Vertex { position: (4.47609, 2.606654, -0.692301),
             normal: (0.042118, -0.881894, -0.469563), },
    Vertex { position: (4.520603, 2.639162, -0.745542),
             normal: (0.571341, -0.68069, 0.458509), },
    Vertex { position: (4.411541, 2.663824, -0.713132),
             normal: (0.083641, -0.819891, -0.566378), },
    Vertex { position: (4.520603, 2.639162, -0.745542),
             normal: (0.571341, -0.68069, 0.458509), },
    Vertex { position: (4.465268, 2.695425, -0.757267),
             normal: (0.086688, -0.887002, -0.453556), },
    Vertex { position: (4.509555, 2.719807, -0.819972),
             normal: (0.176955, -0.903058, -0.391373), },
    Vertex { position: (4.418954, 2.707401, -0.782531),
             normal: (0.713982, 0.301536, -0.631907), },
    Vertex { position: (4.465268, 2.695425, -0.757267),
             normal: (0.086688, -0.887002, -0.453556), },
    Vertex { position: (4.509555, 2.719807, -0.819972),
             normal: (0.176955, -0.903058, -0.391373), },
    Vertex { position: (4.465268, 2.695425, -0.757267),
             normal: (0.086688, -0.887002, -0.453556), },
    Vertex { position: (4.546655, 2.709095, -0.80378),
             normal: (0.388502, -0.664299, 0.638571), },
    Vertex { position: (4.465268, 2.695425, -0.757267),
             normal: (0.086688, -0.887002, -0.453556), },
    Vertex { position: (4.520603, 2.639162, -0.745542),
             normal: (0.571341, -0.68069, 0.458509), },
    Vertex { position: (4.574545, 2.669863, -0.780363),
             normal: (0.21141, -0.953268, -0.215838), },
    Vertex { position: (4.465268, 2.695425, -0.757267),
             normal: (0.086688, -0.887002, -0.453556), },
    Vertex { position: (4.574545, 2.669863, -0.780363),
             normal: (0.21141, -0.953268, -0.215838), },
    Vertex { position: (4.546655, 2.709095, -0.80378),
             normal: (0.388502, -0.664299, 0.638571), },
    Vertex { position: (4.407729, 2.53164, -0.486692),
             normal: (-0.090939, 0.953562, 0.287141), },
    Vertex { position: (4.410844, 2.500167, -0.351972),
             normal: (-0.151742, 0.274295, 0.949598), },
    Vertex { position: (4.474318, 2.418432, -0.361347),
             normal: (0.288841, -0.745301, 0.600914), },
    Vertex { position: (4.407729, 2.53164, -0.486692),
             normal: (-0.090939, 0.953562, 0.287141), },
    Vertex { position: (4.474318, 2.418432, -0.361347),
             normal: (0.288841, -0.745301, 0.600914), },
    Vertex { position: (4.44385, 2.449921, -0.495432),
             normal: (0.237421, -0.963021, -0.127365), },
    Vertex { position: (4.423033, 2.561337, -0.603562),
             normal: (0.795507, -0.586003, -0.154171), },
    Vertex { position: (4.407729, 2.53164, -0.486692),
             normal: (-0.090939, 0.953562, 0.287141), },
    Vertex { position: (4.44385, 2.449921, -0.495432),
             normal: (0.237421, -0.963021, -0.127365), },
    Vertex { position: (4.423033, 2.561337, -0.603562),
             normal: (0.795507, -0.586003, -0.154171), },
    Vertex { position: (4.44385, 2.449921, -0.495432),
             normal: (0.237421, -0.963021, -0.127365), },
    Vertex { position: (4.44076, 2.490353, -0.629287),
             normal: (0.157921, -0.851177, 0.500558), },
    Vertex { position: (4.47609, 2.606654, -0.692301),
             normal: (0.042118, -0.881894, -0.469563), },
    Vertex { position: (4.423033, 2.561337, -0.603562),
             normal: (0.795507, -0.586003, -0.154171), },
    Vertex { position: (4.44076, 2.490353, -0.629287),
             normal: (0.157921, -0.851177, 0.500558), },
    Vertex { position: (4.47609, 2.606654, -0.692301),
             normal: (0.042118, -0.881894, -0.469563), },
    Vertex { position: (4.44076, 2.490353, -0.629287),
             normal: (0.157921, -0.851177, 0.500558), },
    Vertex { position: (4.484667, 2.534451, -0.708888),
             normal: (0.254106, -0.95176, -0.171999), },
    Vertex { position: (4.520603, 2.639162, -0.745542),
             normal: (0.571341, -0.68069, 0.458509), },
    Vertex { position: (4.47609, 2.606654, -0.692301),
             normal: (0.042118, -0.881894, -0.469563), },
    Vertex { position: (4.484667, 2.534451, -0.708888),
             normal: (0.254106, -0.95176, -0.171999), },
    Vertex { position: (4.520603, 2.639162, -0.745542),
             normal: (0.571341, -0.68069, 0.458509), },
    Vertex { position: (4.484667, 2.534451, -0.708888),
             normal: (0.254106, -0.95176, -0.171999), },
    Vertex { position: (4.520165, 2.557971, -0.762427),
             normal: (0.165259, -0.797056, 0.580854), },
    Vertex { position: (4.574545, 2.669863, -0.780363),
             normal: (0.21141, -0.953268, -0.215838), },
    Vertex { position: (4.520603, 2.639162, -0.745542),
             normal: (0.571341, -0.68069, 0.458509), },
    Vertex { position: (4.520165, 2.557971, -0.762427),
             normal: (0.165259, -0.797056, 0.580854), },
    Vertex { position: (4.574545, 2.669863, -0.780363),
             normal: (0.21141, -0.953268, -0.215838), },
    Vertex { position: (4.520165, 2.557971, -0.762427),
             normal: (0.165259, -0.797056, 0.580854), },
    Vertex { position: (4.59262, 2.569879, -0.790452),
             normal: (0.243744, -0.944481, -0.220328), },
    Vertex { position: (4.656565, 2.680542, -0.799684),
             normal: (0.209939, -0.930128, -0.301309), },
    Vertex { position: (4.574545, 2.669863, -0.780363),
             normal: (0.21141, -0.953268, -0.215838), },
    Vertex { position: (4.59262, 2.569879, -0.790452),
             normal: (0.243744, -0.944481, -0.220328), },
    Vertex { position: (4.656565, 2.680542, -0.799684),
             normal: (0.209939, -0.930128, -0.301309), },
    Vertex { position: (4.59262, 2.569879, -0.790452),
             normal: (0.243744, -0.944481, -0.220328), },
    Vertex { position: (4.674691, 2.598833, -0.808006),
             normal: (-0.05208, -0.715695, -0.696469), },
    Vertex { position: (4.646703, 2.728688, -0.822295),
             normal: (0.287073, -0.905921, -0.311283), },
    Vertex { position: (4.546655, 2.709095, -0.80378),
             normal: (0.388502, -0.664299, 0.638571), },
    Vertex { position: (4.574545, 2.669863, -0.780363),
             normal: (0.21141, -0.953268, -0.215838), },
    Vertex { position: (4.646703, 2.728688, -0.822295),
             normal: (0.287073, -0.905921, -0.311283), },
    Vertex { position: (4.574545, 2.669863, -0.780363),
             normal: (0.21141, -0.953268, -0.215838), },
    Vertex { position: (4.656565, 2.680542, -0.799684),
             normal: (0.209939, -0.930128, -0.301309), },
    Vertex { position: (4.636909, 2.750501, -0.856859),
             normal: (0.267121, -0.895396, -0.356249), },
    Vertex { position: (4.509555, 2.719807, -0.819972),
             normal: (0.176955, -0.903058, -0.391373), },
    Vertex { position: (4.546655, 2.709095, -0.80378),
             normal: (0.388502, -0.664299, 0.638571), },
    Vertex { position: (4.636909, 2.750501, -0.856859),
             normal: (0.267121, -0.895396, -0.356249), },
    Vertex { position: (4.546655, 2.709095, -0.80378),
             normal: (0.388502, -0.664299, 0.638571), },
    Vertex { position: (4.646703, 2.728688, -0.822295),
             normal: (0.287073, -0.905921, -0.311283), },
    Vertex { position: (4.748031, 2.683805, -0.800044),
             normal: (-0.290459, -0.499809, -0.815981), },
    Vertex { position: (4.656565, 2.680542, -0.799684),
             normal: (0.209939, -0.930128, -0.301309), },
    Vertex { position: (4.674691, 2.598833, -0.808006),
             normal: (-0.05208, -0.715695, -0.696469), },
    Vertex { position: (4.748031, 2.683805, -0.800044),
             normal: (-0.290459, -0.499809, -0.815981), },
    Vertex { position: (4.674691, 2.598833, -0.808006),
             normal: (-0.05208, -0.715695, -0.696469), },
    Vertex { position: (4.729447, 2.606204, -0.807513),
             normal: (-0.501597, -0.526154, -0.686704), },
    Vertex { position: (4.728931, 2.721892, -0.832625),
             normal: (-0.538845, -0.659239, -0.524452), },
    Vertex { position: (4.646703, 2.728688, -0.822295),
             normal: (0.287073, -0.905921, -0.311283), },
    Vertex { position: (4.656565, 2.680542, -0.799684),
             normal: (0.209939, -0.930128, -0.301309), },
    Vertex { position: (4.728931, 2.721892, -0.832625),
             normal: (-0.538845, -0.659239, -0.524452), },
    Vertex { position: (4.656565, 2.680542, -0.799684),
             normal: (0.209939, -0.930128, -0.301309), },
    Vertex { position: (4.748031, 2.683805, -0.800044),
             normal: (-0.290459, -0.499809, -0.815981), },
    Vertex { position: (4.719171, 2.751091, -0.865965),
             normal: (-0.53682, -0.608254, -0.58468), },
    Vertex { position: (4.636909, 2.750501, -0.856859),
             normal: (0.267121, -0.895396, -0.356249), },
    Vertex { position: (4.646703, 2.728688, -0.822295),
             normal: (0.287073, -0.905921, -0.311283), },
    Vertex { position: (4.719171, 2.751091, -0.865965),
             normal: (-0.53682, -0.608254, -0.58468), },
    Vertex { position: (4.646703, 2.728688, -0.822295),
             normal: (0.287073, -0.905921, -0.311283), },
    Vertex { position: (4.728931, 2.721892, -0.832625),
             normal: (-0.538845, -0.659239, -0.524452), },
    Vertex { position: (4.821325, 2.691794, -0.791887),
             normal: (-0.635876, 0.32433, -0.700337), },
    Vertex { position: (4.748031, 2.683805, -0.800044),
             normal: (-0.290459, -0.499809, -0.815981), },
    Vertex { position: (4.729447, 2.606204, -0.807513),
             normal: (-0.501597, -0.526154, -0.686704), },
    Vertex { position: (4.821325, 2.691794, -0.791887),
             normal: (-0.635876, 0.32433, -0.700337), },
    Vertex { position: (4.729447, 2.606204, -0.807513),
             normal: (-0.501597, -0.526154, -0.686704), },
    Vertex { position: (4.821336, 2.621498, -0.789636),
             normal: (-0.376273, -0.14016, -0.915846), },
    Vertex { position: (4.811798, 2.72868, -0.815406),
             normal: (-0.508573, -0.111047, -0.853828), },
    Vertex { position: (4.728931, 2.721892, -0.832625),
             normal: (-0.538845, -0.659239, -0.524452), },
    Vertex { position: (4.748031, 2.683805, -0.800044),
             normal: (-0.290459, -0.499809, -0.815981), },
    Vertex { position: (4.811798, 2.72868, -0.815406),
             normal: (-0.508573, -0.111047, -0.853828), },
    Vertex { position: (4.748031, 2.683805, -0.800044),
             normal: (-0.290459, -0.499809, -0.815981), },
    Vertex { position: (4.821325, 2.691794, -0.791887),
             normal: (-0.635876, 0.32433, -0.700337), },
    Vertex { position: (4.719171, 2.751091, -0.865965),
             normal: (-0.53682, -0.608254, -0.58468), },
    Vertex { position: (4.728931, 2.721892, -0.832625),
             normal: (-0.538845, -0.659239, -0.524452), },
    Vertex { position: (4.811798, 2.72868, -0.815406),
             normal: (-0.508573, -0.111047, -0.853828), },
    Vertex { position: (4.719171, 2.751091, -0.865965),
             normal: (-0.53682, -0.608254, -0.58468), },
    Vertex { position: (4.811798, 2.72868, -0.815406),
             normal: (-0.508573, -0.111047, -0.853828), },
    Vertex { position: (4.801436, 2.750224, -0.858918),
             normal: (-0.724543, -0.128977, -0.677054), },
    Vertex { position: (5.096148, 2.75972, -0.774729),
             normal: (-0.86136, -0.239794, -0.447836), },
    Vertex { position: (4.801436, 2.750224, -0.858918),
             normal: (-0.724543, -0.128977, -0.677054), },
    Vertex { position: (4.811798, 2.72868, -0.815406),
             normal: (-0.508573, -0.111047, -0.853828), },
    Vertex { position: (5.096148, 2.75972, -0.774729),
             normal: (-0.86136, -0.239794, -0.447836), },
    Vertex { position: (4.811798, 2.72868, -0.815406),
             normal: (-0.508573, -0.111047, -0.853828), },
    Vertex { position: (4.821325, 2.691794, -0.791887),
             normal: (-0.635876, 0.32433, -0.700337), },
    Vertex { position: (5.096148, 2.75972, -0.774729),
             normal: (-0.86136, -0.239794, -0.447836), },
    Vertex { position: (4.821325, 2.691794, -0.791887),
             normal: (-0.635876, 0.32433, -0.700337), },
    Vertex { position: (4.821336, 2.621498, -0.789636),
             normal: (-0.376273, -0.14016, -0.915846), },
    Vertex { position: (4.442912, 2.343263, -0.53322),
             normal: (-0.903777, -0.182749, -0.387027), },
    Vertex { position: (4.44385, 2.449921, -0.495432),
             normal: (0.237421, -0.963021, -0.127365), },
    Vertex { position: (4.474318, 2.418432, -0.361347),
             normal: (0.288841, -0.745301, 0.600914), },
    Vertex { position: (4.442912, 2.343263, -0.53322),
             normal: (-0.903777, -0.182749, -0.387027), },
    Vertex { position: (4.474318, 2.418432, -0.361347),
             normal: (0.288841, -0.745301, 0.600914), },
    Vertex { position: (4.472349, 2.325133, -0.443764),
             normal: (0.195545, 0.103956, -0.975169), },
    Vertex { position: (4.440713, 2.398472, -0.629128),
             normal: (-0.911341, 0.002265, -0.411646), },
    Vertex { position: (4.44076, 2.490353, -0.629287),
             normal: (0.157921, -0.851177, 0.500558), },
    Vertex { position: (4.44385, 2.449921, -0.495432),
             normal: (0.237421, -0.963021, -0.127365), },
    Vertex { position: (4.440713, 2.398472, -0.629128),
             normal: (-0.911341, 0.002265, -0.411646), },
    Vertex { position: (4.44385, 2.449921, -0.495432),
             normal: (0.237421, -0.963021, -0.127365), },
    Vertex { position: (4.442912, 2.343263, -0.53322),
             normal: (-0.903777, -0.182749, -0.387027), },
    Vertex { position: (4.484667, 2.534451, -0.708888),
             normal: (0.254106, -0.95176, -0.171999), },
    Vertex { position: (4.44076, 2.490353, -0.629287),
             normal: (0.157921, -0.851177, 0.500558), },
    Vertex { position: (4.440713, 2.398472, -0.629128),
             normal: (-0.911341, 0.002265, -0.411646), },
    Vertex { position: (4.484667, 2.534451, -0.708888),
             normal: (0.254106, -0.95176, -0.171999), },
    Vertex { position: (4.440713, 2.398472, -0.629128),
             normal: (-0.911341, 0.002265, -0.411646), },
    Vertex { position: (4.474625, 2.465214, -0.75189),
             normal: (-0.77316, 0.344901, -0.532228), },
    Vertex { position: (4.440713, 2.398472, -0.629128),
             normal: (-0.911341, 0.002265, -0.411646), },
    Vertex { position: (4.442912, 2.343263, -0.53322),
             normal: (-0.903777, -0.182749, -0.387027), },
    Vertex { position: (4.314039, 2.32946, -0.57751),
             normal: (-0.566117, 0.431682, -0.702255), },
    Vertex { position: (4.440713, 2.398472, -0.629128),
             normal: (-0.911341, 0.002265, -0.411646), },
    Vertex { position: (4.314039, 2.32946, -0.57751),
             normal: (-0.566117, 0.431682, -0.702255), },
    Vertex { position: (4.32063, 2.385528, -0.682583),
             normal: (-0.383863, 0.612068, -0.691392), },
    Vertex { position: (4.314039, 2.32946, -0.57751),
             normal: (-0.566117, 0.431682, -0.702255), },
    Vertex { position: (4.442912, 2.343263, -0.53322),
             normal: (-0.903777, -0.182749, -0.387027), },
    Vertex { position: (4.472349, 2.325133, -0.443764),
             normal: (0.195545, 0.103956, -0.975169), },
    Vertex { position: (4.314039, 2.32946, -0.57751),
             normal: (-0.566117, 0.431682, -0.702255), },
    Vertex { position: (4.472349, 2.325133, -0.443764),
             normal: (0.195545, 0.103956, -0.975169), },
    Vertex { position: (4.296769, 2.260422, -0.528796),
             normal: (-0.091679, 0.768658, -0.633056), },
    Vertex { position: (4.474625, 2.465214, -0.75189),
             normal: (-0.77316, 0.344901, -0.532228), },
    Vertex { position: (4.440713, 2.398472, -0.629128),
             normal: (-0.911341, 0.002265, -0.411646), },
    Vertex { position: (4.32063, 2.385528, -0.682583),
             normal: (-0.383863, 0.612068, -0.691392), },
    Vertex { position: (4.474625, 2.465214, -0.75189),
             normal: (-0.77316, 0.344901, -0.532228), },
    Vertex { position: (4.32063, 2.385528, -0.682583),
             normal: (-0.383863, 0.612068, -0.691392), },
    Vertex { position: (4.382053, 2.433474, -0.798757),
             normal: (-0.911194, 0.285551, -0.296961), },
    Vertex { position: (4.520165, 2.557971, -0.762427),
             normal: (0.165259, -0.797056, 0.580854), },
    Vertex { position: (4.484667, 2.534451, -0.708888),
             normal: (0.254106, -0.95176, -0.171999), },
    Vertex { position: (4.474625, 2.465214, -0.75189),
             normal: (-0.77316, 0.344901, -0.532228), },
    Vertex { position: (4.520165, 2.557971, -0.762427),
             normal: (0.165259, -0.797056, 0.580854), },
    Vertex { position: (4.474625, 2.465214, -0.75189),
             normal: (-0.77316, 0.344901, -0.532228), },
    Vertex { position: (4.538177, 2.513353, -0.776566),
             normal: (-0.931592, 0.319003, -0.174277), },
    Vertex { position: (4.538177, 2.513353, -0.776566),
             normal: (-0.931592, 0.319003, -0.174277), },
    Vertex { position: (4.474625, 2.465214, -0.75189),
             normal: (-0.77316, 0.344901, -0.532228), },
    Vertex { position: (4.382053, 2.433474, -0.798757),
             normal: (-0.911194, 0.285551, -0.296961), },
    Vertex { position: (4.538177, 2.513353, -0.776566),
             normal: (-0.931592, 0.319003, -0.174277), },
    Vertex { position: (4.382053, 2.433474, -0.798757),
             normal: (-0.911194, 0.285551, -0.296961), },
    Vertex { position: (4.444739, 2.475795, -0.860515),
             normal: (-0.895156, 0.397807, -0.201111), },
    Vertex { position: (4.59262, 2.569879, -0.790452),
             normal: (0.243744, -0.944481, -0.220328), },
    Vertex { position: (4.520165, 2.557971, -0.762427),
             normal: (0.165259, -0.797056, 0.580854), },
    Vertex { position: (4.538177, 2.513353, -0.776566),
             normal: (-0.931592, 0.319003, -0.174277), },
    Vertex { position: (4.59262, 2.569879, -0.790452),
             normal: (0.243744, -0.944481, -0.220328), },
    Vertex { position: (4.538177, 2.513353, -0.776566),
             normal: (-0.931592, 0.319003, -0.174277), },
    Vertex { position: (4.601515, 2.533324, -0.794193),
             normal: (-0.885174, 0.439903, -0.1515), },
    Vertex { position: (4.601515, 2.533324, -0.794193),
             normal: (-0.885174, 0.439903, -0.1515), },
    Vertex { position: (4.538177, 2.513353, -0.776566),
             normal: (-0.931592, 0.319003, -0.174277), },
    Vertex { position: (4.444739, 2.475795, -0.860515),
             normal: (-0.895156, 0.397807, -0.201111), },
    Vertex { position: (4.601515, 2.533324, -0.794193),
             normal: (-0.885174, 0.439903, -0.1515), },
    Vertex { position: (4.444739, 2.475795, -0.860515),
             normal: (-0.895156, 0.397807, -0.201111), },
    Vertex { position: (4.554459, 2.511417, -0.850571),
             normal: (-0.821561, 0.369567, -0.434116), },
    Vertex { position: (4.674691, 2.598833, -0.808006),
             normal: (-0.05208, -0.715695, -0.696469), },
    Vertex { position: (4.59262, 2.569879, -0.790452),
             normal: (0.243744, -0.944481, -0.220328), },
    Vertex { position: (4.601515, 2.533324, -0.794193),
             normal: (-0.885174, 0.439903, -0.1515), },
    Vertex { position: (4.674691, 2.598833, -0.808006),
             normal: (-0.05208, -0.715695, -0.696469), },
    Vertex { position: (4.601515, 2.533324, -0.794193),
             normal: (-0.885174, 0.439903, -0.1515), },
    Vertex { position: (4.683344, 2.554221, -0.821927),
             normal: (-0.742898, 0.572423, -0.347037), },
    Vertex { position: (4.683344, 2.554221, -0.821927),
             normal: (-0.742898, 0.572423, -0.347037), },
    Vertex { position: (4.601515, 2.533324, -0.794193),
             normal: (-0.885174, 0.439903, -0.1515), },
    Vertex { position: (4.554459, 2.511417, -0.850571),
             normal: (-0.821561, 0.369567, -0.434116), },
    Vertex { position: (4.683344, 2.554221, -0.821927),
             normal: (-0.742898, 0.572423, -0.347037), },
    Vertex { position: (4.554459, 2.511417, -0.850571),
             normal: (-0.821561, 0.369567, -0.434116), },
    Vertex { position: (4.681847, 2.551036, -0.886235),
             normal: (-0.659696, 0.567803, -0.492342), },
    Vertex { position: (4.737893, 2.564648, -0.830389),
             normal: (0.11638, 0.680313, -0.723623), },
    Vertex { position: (4.683344, 2.554221, -0.821927),
             normal: (-0.742898, 0.572423, -0.347037), },
    Vertex { position: (4.681847, 2.551036, -0.886235),
             normal: (-0.659696, 0.567803, -0.492342), },
    Vertex { position: (4.737893, 2.564648, -0.830389),
             normal: (0.11638, 0.680313, -0.723623), },
    Vertex { position: (4.681847, 2.551036, -0.886235),
             normal: (-0.659696, 0.567803, -0.492342), },
    Vertex { position: (4.755192, 2.568818, -0.876311),
             normal: (0.206279, 0.744918, -0.634466), },
    Vertex { position: (4.829566, 2.580797, -0.821827),
             normal: (-0.395723, 0.901671, -0.174334), },
    Vertex { position: (4.737893, 2.564648, -0.830389),
             normal: (0.11638, 0.680313, -0.723623), },
    Vertex { position: (4.755192, 2.568818, -0.876311),
             normal: (0.206279, 0.744918, -0.634466), },
    Vertex { position: (4.829566, 2.580797, -0.821827),
             normal: (-0.395723, 0.901671, -0.174334), },
    Vertex { position: (4.755192, 2.568818, -0.876311),
             normal: (0.206279, 0.744918, -0.634466), },
    Vertex { position: (4.856249, 2.593812, -0.867067),
             normal: (-0.476949, 0.871028, -0.117606), },
    Vertex { position: (4.729447, 2.606204, -0.807513),
             normal: (-0.501597, -0.526154, -0.686704), },
    Vertex { position: (4.674691, 2.598833, -0.808006),
             normal: (-0.05208, -0.715695, -0.696469), },
    Vertex { position: (4.683344, 2.554221, -0.821927),
             normal: (-0.742898, 0.572423, -0.347037), },
    Vertex { position: (4.729447, 2.606204, -0.807513),
             normal: (-0.501597, -0.526154, -0.686704), },
    Vertex { position: (4.683344, 2.554221, -0.821927),
             normal: (-0.742898, 0.572423, -0.347037), },
    Vertex { position: (4.737893, 2.564648, -0.830389),
             normal: (0.11638, 0.680313, -0.723623), },
    Vertex { position: (4.821336, 2.621498, -0.789636),
             normal: (-0.376273, -0.14016, -0.915846), },
    Vertex { position: (4.729447, 2.606204, -0.807513),
             normal: (-0.501597, -0.526154, -0.686704), },
    Vertex { position: (4.737893, 2.564648, -0.830389),
             normal: (0.11638, 0.680313, -0.723623), },
    Vertex { position: (4.821336, 2.621498, -0.789636),
             normal: (-0.376273, -0.14016, -0.915846), },
    Vertex { position: (4.737893, 2.564648, -0.830389),
             normal: (0.11638, 0.680313, -0.723623), },
    Vertex { position: (4.829566, 2.580797, -0.821827),
             normal: (-0.395723, 0.901671, -0.174334), },
    Vertex { position: (4.662221, 2.556346, -0.940618),
             normal: (-0.590366, 0.807127, 0.003753), },
    Vertex { position: (4.681847, 2.551036, -0.886235),
             normal: (-0.659696, 0.567803, -0.492342), },
    Vertex { position: (4.554459, 2.511417, -0.850571),
             normal: (-0.821561, 0.369567, -0.434116), },
    Vertex { position: (4.662221, 2.556346, -0.940618),
             normal: (-0.590366, 0.807127, 0.003753), },
    Vertex { position: (4.554459, 2.511417, -0.850571),
             normal: (-0.821561, 0.369567, -0.434116), },
    Vertex { position: (4.497719, 2.54748, -0.937659),
             normal: (-0.594389, 0.803108, -0.041468), },
    Vertex { position: (4.681847, 2.551036, -0.886235),
             normal: (-0.659696, 0.567803, -0.492342), },
    Vertex { position: (4.662221, 2.556346, -0.940618),
             normal: (-0.590366, 0.807127, 0.003753), },
    Vertex { position: (4.763337, 2.590834, -0.929248),
             normal: (-0.610894, 0.790229, 0.048447), },
    Vertex { position: (4.681847, 2.551036, -0.886235),
             normal: (-0.659696, 0.567803, -0.492342), },
    Vertex { position: (4.763337, 2.590834, -0.929248),
             normal: (-0.610894, 0.790229, 0.048447), },
    Vertex { position: (4.755192, 2.568818, -0.876311),
             normal: (0.206279, 0.744918, -0.634466), },
    Vertex { position: (4.883022, 2.613658, -0.893163),
             normal: (-0.091114, 0.94565, -0.312161), },
    Vertex { position: (4.856249, 2.593812, -0.867067),
             normal: (-0.476949, 0.871028, -0.117606), },
    Vertex { position: (4.755192, 2.568818, -0.876311),
             normal: (0.206279, 0.744918, -0.634466), },
    Vertex { position: (4.883022, 2.613658, -0.893163),
             normal: (-0.091114, 0.94565, -0.312161), },
    Vertex { position: (4.755192, 2.568818, -0.876311),
             normal: (0.206279, 0.744918, -0.634466), },
    Vertex { position: (4.763337, 2.590834, -0.929248),
             normal: (-0.610894, 0.790229, 0.048447), },
    Vertex { position: (4.554459, 2.511417, -0.850571),
             normal: (-0.821561, 0.369567, -0.434116), },
    Vertex { position: (4.444739, 2.475795, -0.860515),
             normal: (-0.895156, 0.397807, -0.201111), },
    Vertex { position: (4.352603, 2.524888, -0.890532),
             normal: (-0.216454, 0.960138, -0.176868), },
    Vertex { position: (4.554459, 2.511417, -0.850571),
             normal: (-0.821561, 0.369567, -0.434116), },
    Vertex { position: (4.352603, 2.524888, -0.890532),
             normal: (-0.216454, 0.960138, -0.176868), },
    Vertex { position: (4.497719, 2.54748, -0.937659),
             normal: (-0.594389, 0.803108, -0.041468), },
    Vertex { position: (4.352603, 2.524888, -0.890532),
             normal: (-0.216454, 0.960138, -0.176868), },
    Vertex { position: (4.444739, 2.475795, -0.860515),
             normal: (-0.895156, 0.397807, -0.201111), },
    Vertex { position: (4.382053, 2.433474, -0.798757),
             normal: (-0.911194, 0.285551, -0.296961), },
    Vertex { position: (4.352603, 2.524888, -0.890532),
             normal: (-0.216454, 0.960138, -0.176868), },
    Vertex { position: (4.382053, 2.433474, -0.798757),
             normal: (-0.911194, 0.285551, -0.296961), },
    Vertex { position: (4.262798, 2.490674, -0.818316),
             normal: (-0.283496, 0.953866, -0.098841), },
    Vertex { position: (4.262798, 2.490674, -0.818316),
             normal: (-0.283496, 0.953866, -0.098841), },
    Vertex { position: (4.382053, 2.433474, -0.798757),
             normal: (-0.911194, 0.285551, -0.296961), },
    Vertex { position: (4.32063, 2.385528, -0.682583),
             normal: (-0.383863, 0.612068, -0.691392), },
    Vertex { position: (4.262798, 2.490674, -0.818316),
             normal: (-0.283496, 0.953866, -0.098841), },
    Vertex { position: (4.32063, 2.385528, -0.682583),
             normal: (-0.383863, 0.612068, -0.691392), },
    Vertex { position: (4.192789, 2.411967, -0.668016),
             normal: (-0.421167, 0.906102, -0.039984), },
    Vertex { position: (4.192789, 2.411967, -0.668016),
             normal: (-0.421167, 0.906102, -0.039984), },
    Vertex { position: (4.32063, 2.385528, -0.682583),
             normal: (-0.383863, 0.612068, -0.691392), },
    Vertex { position: (4.314039, 2.32946, -0.57751),
             normal: (-0.566117, 0.431682, -0.702255), },
    Vertex { position: (4.192789, 2.411967, -0.668016),
             normal: (-0.421167, 0.906102, -0.039984), },
    Vertex { position: (4.314039, 2.32946, -0.57751),
             normal: (-0.566117, 0.431682, -0.702255), },
    Vertex { position: (4.193959, 2.370476, -0.616705),
             normal: (-0.557881, 0.828586, 0.047047), },
    Vertex { position: (4.113935, 2.334131, -0.526471),
             normal: (-0.536307, 0.710867, -0.45502), },
    Vertex { position: (4.193959, 2.370476, -0.616705),
             normal: (-0.557881, 0.828586, 0.047047), },
    Vertex { position: (4.314039, 2.32946, -0.57751),
             normal: (-0.566117, 0.431682, -0.702255), },
    Vertex { position: (4.113935, 2.334131, -0.526471),
             normal: (-0.536307, 0.710867, -0.45502), },
    Vertex { position: (4.314039, 2.32946, -0.57751),
             normal: (-0.566117, 0.431682, -0.702255), },
    Vertex { position: (4.296769, 2.260422, -0.528796),
             normal: (-0.091679, 0.768658, -0.633056), },
    Vertex { position: (4.883022, 2.613658, -0.893163),
             normal: (-0.091114, 0.94565, -0.312161), },
    Vertex { position: (5.096148, 2.75972, -0.774729),
             normal: (-0.86136, -0.239794, -0.447836), },
    Vertex { position: (4.856249, 2.593812, -0.867067),
             normal: (-0.476949, 0.871028, -0.117606), },
    Vertex { position: (4.763337, 2.590834, -0.929248),
             normal: (-0.610894, 0.790229, 0.048447), },
    Vertex { position: (4.735139, 2.645464, -0.95089),
             normal: (-0.678216, 0.658343, -0.326508), },
    Vertex { position: (4.854957, 2.660227, -0.92431),
             normal: (0.05537, 0.916343, -0.396546), },
    Vertex { position: (4.763337, 2.590834, -0.929248),
             normal: (-0.610894, 0.790229, 0.048447), },
    Vertex { position: (4.854957, 2.660227, -0.92431),
             normal: (0.05537, 0.916343, -0.396546), },
    Vertex { position: (4.883022, 2.613658, -0.893163),
             normal: (-0.091114, 0.94565, -0.312161), },
    Vertex { position: (4.662221, 2.556346, -0.940618),
             normal: (-0.590366, 0.807127, 0.003753), },
    Vertex { position: (4.615662, 2.63387, -0.977986),
             normal: (0.090337, 0.942369, -0.32215), },
    Vertex { position: (4.735139, 2.645464, -0.95089),
             normal: (-0.678216, 0.658343, -0.326508), },
    Vertex { position: (4.662221, 2.556346, -0.940618),
             normal: (-0.590366, 0.807127, 0.003753), },
    Vertex { position: (4.735139, 2.645464, -0.95089),
             normal: (-0.678216, 0.658343, -0.326508), },
    Vertex { position: (4.763337, 2.590834, -0.929248),
             normal: (-0.610894, 0.790229, 0.048447), },
    Vertex { position: (4.497719, 2.54748, -0.937659),
             normal: (-0.594389, 0.803108, -0.041468), },
    Vertex { position: (4.460582, 2.622875, -0.957002),
             normal: (-0.560855, 0.735161, -0.380763), },
    Vertex { position: (4.615662, 2.63387, -0.977986),
             normal: (0.090337, 0.942369, -0.32215), },
    Vertex { position: (4.497719, 2.54748, -0.937659),
             normal: (-0.594389, 0.803108, -0.041468), },
    Vertex { position: (4.615662, 2.63387, -0.977986),
             normal: (0.090337, 0.942369, -0.32215), },
    Vertex { position: (4.662221, 2.556346, -0.940618),
             normal: (-0.590366, 0.807127, 0.003753), },
    Vertex { position: (4.352603, 2.524888, -0.890532),
             normal: (-0.216454, 0.960138, -0.176868), },
    Vertex { position: (4.343217, 2.589542, -0.893106),
             normal: (-0.641133, 0.599375, -0.479267), },
    Vertex { position: (4.460582, 2.622875, -0.957002),
             normal: (-0.560855, 0.735161, -0.380763), },
    Vertex { position: (4.352603, 2.524888, -0.890532),
             normal: (-0.216454, 0.960138, -0.176868), },
    Vertex { position: (4.460582, 2.622875, -0.957002),
             normal: (-0.560855, 0.735161, -0.380763), },
    Vertex { position: (4.497719, 2.54748, -0.937659),
             normal: (-0.594389, 0.803108, -0.041468), },
    Vertex { position: (4.262798, 2.490674, -0.818316),
             normal: (-0.283496, 0.953866, -0.098841), },
    Vertex { position: (4.244622, 2.554467, -0.811726),
             normal: (-0.760994, 0.140162, -0.633436), },
    Vertex { position: (4.343217, 2.589542, -0.893106),
             normal: (-0.641133, 0.599375, -0.479267), },
    Vertex { position: (4.262798, 2.490674, -0.818316),
             normal: (-0.283496, 0.953866, -0.098841), },
    Vertex { position: (4.343217, 2.589542, -0.893106),
             normal: (-0.641133, 0.599375, -0.479267), },
    Vertex { position: (4.352603, 2.524888, -0.890532),
             normal: (-0.216454, 0.960138, -0.176868), },
    Vertex { position: (4.192789, 2.411967, -0.668016),
             normal: (-0.421167, 0.906102, -0.039984), },
    Vertex { position: (4.138687, 2.474013, -0.642311),
             normal: (-0.411843, 0.771855, -0.484381), },
    Vertex { position: (4.244622, 2.554467, -0.811726),
             normal: (-0.760994, 0.140162, -0.633436), },
    Vertex { position: (4.192789, 2.411967, -0.668016),
             normal: (-0.421167, 0.906102, -0.039984), },
    Vertex { position: (4.244622, 2.554467, -0.811726),
             normal: (-0.760994, 0.140162, -0.633436), },
    Vertex { position: (4.262798, 2.490674, -0.818316),
             normal: (-0.283496, 0.953866, -0.098841), },
    Vertex { position: (4.883022, 2.613658, -0.893163),
             normal: (-0.091114, 0.94565, -0.312161), },
    Vertex { position: (4.854957, 2.660227, -0.92431),
             normal: (0.05537, 0.916343, -0.396546), },
    Vertex { position: (5.096148, 2.75972, -0.774729),
             normal: (-0.86136, -0.239794, -0.447836), },
    Vertex { position: (4.121994, 2.458034, -0.570029),
             normal: (-0.395036, 0.74012, -0.544214), },
    Vertex { position: (4.138687, 2.474013, -0.642311),
             normal: (-0.411843, 0.771855, -0.484381), },
    Vertex { position: (4.192789, 2.411967, -0.668016),
             normal: (-0.421167, 0.906102, -0.039984), },
    Vertex { position: (4.121994, 2.458034, -0.570029),
             normal: (-0.395036, 0.74012, -0.544214), },
    Vertex { position: (4.192789, 2.411967, -0.668016),
             normal: (-0.421167, 0.906102, -0.039984), },
    Vertex { position: (4.193959, 2.370476, -0.616705),
             normal: (-0.557881, 0.828586, 0.047047), },
    Vertex { position: (4.121994, 2.458034, -0.570029),
             normal: (-0.395036, 0.74012, -0.544214), },
    Vertex { position: (4.193959, 2.370476, -0.616705),
             normal: (-0.557881, 0.828586, 0.047047), },
    Vertex { position: (4.113935, 2.334131, -0.526471),
             normal: (-0.536307, 0.710867, -0.45502), },
    Vertex { position: (4.121994, 2.458034, -0.570029),
             normal: (-0.395036, 0.74012, -0.544214), },
    Vertex { position: (4.113935, 2.334131, -0.526471),
             normal: (-0.536307, 0.710867, -0.45502), },
    Vertex { position: (4.07851, 2.41181, -0.472193),
             normal: (-0.330515, 0.821242, -0.465103), },
    Vertex { position: (4.244622, 2.554467, -0.811726),
             normal: (-0.760994, 0.140162, -0.633436), },
    Vertex { position: (4.235494, 2.636171, -0.803613),
             normal: (-0.353793, 0.870619, -0.341838), },
    Vertex { position: (4.342998, 2.664049, -0.904347),
             normal: (-0.718934, 0.608496, -0.335955), },
    Vertex { position: (4.244622, 2.554467, -0.811726),
             normal: (-0.760994, 0.140162, -0.633436), },
    Vertex { position: (4.342998, 2.664049, -0.904347),
             normal: (-0.718934, 0.608496, -0.335955), },
    Vertex { position: (4.343217, 2.589542, -0.893106),
             normal: (-0.641133, 0.599375, -0.479267), },
    Vertex { position: (4.343217, 2.589542, -0.893106),
             normal: (-0.641133, 0.599375, -0.479267), },
    Vertex { position: (4.342998, 2.664049, -0.904347),
             normal: (-0.718934, 0.608496, -0.335955), },
    Vertex { position: (4.460786, 2.695616, -0.949972),
             normal: (-0.929249, -0.009269, -0.369337), },
    Vertex { position: (4.343217, 2.589542, -0.893106),
             normal: (-0.641133, 0.599375, -0.479267), },
    Vertex { position: (4.460786, 2.695616, -0.949972),
             normal: (-0.929249, -0.009269, -0.369337), },
    Vertex { position: (4.460582, 2.622875, -0.957002),
             normal: (-0.560855, 0.735161, -0.380763), },
    Vertex { position: (4.460582, 2.622875, -0.957002),
             normal: (-0.560855, 0.735161, -0.380763), },
    Vertex { position: (4.460786, 2.695616, -0.949972),
             normal: (-0.929249, -0.009269, -0.369337), },
    Vertex { position: (4.6248, 2.708372, -0.989445),
             normal: (-0.144656, 0.947613, -0.284787), },
    Vertex { position: (4.460582, 2.622875, -0.957002),
             normal: (-0.560855, 0.735161, -0.380763), },
    Vertex { position: (4.6248, 2.708372, -0.989445),
             normal: (-0.144656, 0.947613, -0.284787), },
    Vertex { position: (4.615662, 2.63387, -0.977986),
             normal: (0.090337, 0.942369, -0.32215), },
    Vertex { position: (4.138687, 2.474013, -0.642311),
             normal: (-0.411843, 0.771855, -0.484381), },
    Vertex { position: (4.138494, 2.557838, -0.652651),
             normal: (-0.364192, 0.890167, -0.2738), },
    Vertex { position: (4.235494, 2.636171, -0.803613),
             normal: (-0.353793, 0.870619, -0.341838), },
    Vertex { position: (4.138687, 2.474013, -0.642311),
             normal: (-0.411843, 0.771855, -0.484381), },
    Vertex { position: (4.235494, 2.636171, -0.803613),
             normal: (-0.353793, 0.870619, -0.341838), },
    Vertex { position: (4.244622, 2.554467, -0.811726),
             normal: (-0.760994, 0.140162, -0.633436), },
    Vertex { position: (4.104292, 2.537976, -0.543437),
             normal: (-0.719327, 0.568277, -0.399538), },
    Vertex { position: (4.138494, 2.557838, -0.652651),
             normal: (-0.364192, 0.890167, -0.2738), },
    Vertex { position: (4.138687, 2.474013, -0.642311),
             normal: (-0.411843, 0.771855, -0.484381), },
    Vertex { position: (4.104292, 2.537976, -0.543437),
             normal: (-0.719327, 0.568277, -0.399538), },
    Vertex { position: (4.138687, 2.474013, -0.642311),
             normal: (-0.411843, 0.771855, -0.484381), },
    Vertex { position: (4.121994, 2.458034, -0.570029),
             normal: (-0.395036, 0.74012, -0.544214), },
    Vertex { position: (4.088356, 2.510913, -0.453793),
             normal: (-0.904972, -0.026554, -0.424642), },
    Vertex { position: (4.104292, 2.537976, -0.543437),
             normal: (-0.719327, 0.568277, -0.399538), },
    Vertex { position: (4.121994, 2.458034, -0.570029),
             normal: (-0.395036, 0.74012, -0.544214), },
    Vertex { position: (4.088356, 2.510913, -0.453793),
             normal: (-0.904972, -0.026554, -0.424642), },
    Vertex { position: (4.121994, 2.458034, -0.570029),
             normal: (-0.395036, 0.74012, -0.544214), },
    Vertex { position: (4.07851, 2.41181, -0.472193),
             normal: (-0.330515, 0.821242, -0.465103), },
    Vertex { position: (4.6248, 2.708372, -0.989445),
             normal: (-0.144656, 0.947613, -0.284787), },
    Vertex { position: (4.753015, 2.699695, -0.973279),
             normal: (0.197027, 0.937222, -0.287742), },
    Vertex { position: (4.735139, 2.645464, -0.95089),
             normal: (-0.678216, 0.658343, -0.326508), },
    Vertex { position: (4.6248, 2.708372, -0.989445),
             normal: (-0.144656, 0.947613, -0.284787), },
    Vertex { position: (4.735139, 2.645464, -0.95089),
             normal: (-0.678216, 0.658343, -0.326508), },
    Vertex { position: (4.615662, 2.63387, -0.977986),
             normal: (0.090337, 0.942369, -0.32215), },
    Vertex { position: (4.735139, 2.645464, -0.95089),
             normal: (-0.678216, 0.658343, -0.326508), },
    Vertex { position: (4.753015, 2.699695, -0.973279),
             normal: (0.197027, 0.937222, -0.287742), },
    Vertex { position: (4.863709, 2.722151, -0.93666),
             normal: (0.225135, 0.965893, -0.127928), },
    Vertex { position: (4.735139, 2.645464, -0.95089),
             normal: (-0.678216, 0.658343, -0.326508), },
    Vertex { position: (4.863709, 2.722151, -0.93666),
             normal: (0.225135, 0.965893, -0.127928), },
    Vertex { position: (4.854957, 2.660227, -0.92431),
             normal: (0.05537, 0.916343, -0.396546), },
    Vertex { position: (4.22473, 2.624525, -0.491916),
             normal: (-0.000715, -0.295728, 0.955272), },
    Vertex { position: (4.151183, 2.579059, -0.494606),
             normal: (-0.162972, 0.917259, 0.363422), },
    Vertex { position: (4.117367, 2.568514, -0.3845),
             normal: (-0.860594, 0.405545, -0.308076), },
    Vertex { position: (4.22473, 2.624525, -0.491916),
             normal: (-0.000715, -0.295728, 0.955272), },
    Vertex { position: (4.117367, 2.568514, -0.3845),
             normal: (-0.860594, 0.405545, -0.308076), },
    Vertex { position: (4.209941, 2.600612, -0.337597),
             normal: (-0.03479, 0.69667, 0.716547), },
    Vertex { position: (4.636909, 2.750501, -0.856859),
             normal: (0.267121, -0.895396, -0.356249), },
    Vertex { position: (4.616626, 2.749486, -0.939333),
             normal: (-0.31499, 0.894135, 0.318282), },
    Vertex { position: (4.462368, 2.725999, -0.882675),
             normal: (-0.758791, 0.646991, 0.075091), },
    Vertex { position: (4.636909, 2.750501, -0.856859),
             normal: (0.267121, -0.895396, -0.356249), },
    Vertex { position: (4.462368, 2.725999, -0.882675),
             normal: (-0.758791, 0.646991, 0.075091), },
    Vertex { position: (4.509555, 2.719807, -0.819972),
             normal: (0.176955, -0.903058, -0.391373), },
    Vertex { position: (4.509555, 2.719807, -0.819972),
             normal: (0.176955, -0.903058, -0.391373), },
    Vertex { position: (4.462368, 2.725999, -0.882675),
             normal: (-0.758791, 0.646991, 0.075091), },
    Vertex { position: (4.354196, 2.711836, -0.826545),
             normal: (-0.900694, 0.426849, -0.080936), },
    Vertex { position: (4.509555, 2.719807, -0.819972),
             normal: (0.176955, -0.903058, -0.391373), },
    Vertex { position: (4.354196, 2.711836, -0.826545),
             normal: (-0.900694, 0.426849, -0.080936), },
    Vertex { position: (4.418954, 2.707401, -0.782531),
             normal: (0.713982, 0.301536, -0.631907), },
    Vertex { position: (4.418954, 2.707401, -0.782531),
             normal: (0.713982, 0.301536, -0.631907), },
    Vertex { position: (4.354196, 2.711836, -0.826545),
             normal: (-0.900694, 0.426849, -0.080936), },
    Vertex { position: (4.273414, 2.686575, -0.753674),
             normal: (-0.940255, 0.335069, 0.060403), },
    Vertex { position: (4.418954, 2.707401, -0.782531),
             normal: (0.713982, 0.301536, -0.631907), },
    Vertex { position: (4.273414, 2.686575, -0.753674),
             normal: (-0.940255, 0.335069, 0.060403), },
    Vertex { position: (4.35668, 2.682996, -0.71905),
             normal: (0.743898, -0.655714, 0.129057), },
    Vertex { position: (4.151183, 2.579059, -0.494606),
             normal: (-0.162972, 0.917259, 0.363422), },
    Vertex { position: (4.22473, 2.624525, -0.491916),
             normal: (-0.000715, -0.295728, 0.955272), },
    Vertex { position: (4.277169, 2.652435, -0.591369),
             normal: (0.008972, 0.708004, 0.706152), },
    Vertex { position: (4.151183, 2.579059, -0.494606),
             normal: (-0.162972, 0.917259, 0.363422), },
    Vertex { position: (4.277169, 2.652435, -0.591369),
             normal: (0.008972, 0.708004, 0.706152), },
    Vertex { position: (4.176065, 2.636883, -0.618384),
             normal: (-0.816521, 0.559553, 0.142109), },
    Vertex { position: (4.088356, 2.510913, -0.453793),
             normal: (-0.904972, -0.026554, -0.424642), },
    Vertex { position: (4.117367, 2.568514, -0.3845),
             normal: (-0.860594, 0.405545, -0.308076), },
    Vertex { position: (4.151183, 2.579059, -0.494606),
             normal: (-0.162972, 0.917259, 0.363422), },
    Vertex { position: (4.088356, 2.510913, -0.453793),
             normal: (-0.904972, -0.026554, -0.424642), },
    Vertex { position: (4.151183, 2.579059, -0.494606),
             normal: (-0.162972, 0.917259, 0.363422), },
    Vertex { position: (4.104292, 2.537976, -0.543437),
             normal: (-0.719327, 0.568277, -0.399538), },
    Vertex { position: (4.176065, 2.636883, -0.618384),
             normal: (-0.816521, 0.559553, 0.142109), },
    Vertex { position: (4.277169, 2.652435, -0.591369),
             normal: (0.008972, 0.708004, 0.706152), },
    Vertex { position: (4.35668, 2.682996, -0.71905),
             normal: (0.743898, -0.655714, 0.129057), },
    Vertex { position: (4.176065, 2.636883, -0.618384),
             normal: (-0.816521, 0.559553, 0.142109), },
    Vertex { position: (4.35668, 2.682996, -0.71905),
             normal: (0.743898, -0.655714, 0.129057), },
    Vertex { position: (4.273414, 2.686575, -0.753674),
             normal: (-0.940255, 0.335069, 0.060403), },
    Vertex { position: (4.104292, 2.537976, -0.543437),
             normal: (-0.719327, 0.568277, -0.399538), },
    Vertex { position: (4.151183, 2.579059, -0.494606),
             normal: (-0.162972, 0.917259, 0.363422), },
    Vertex { position: (4.176065, 2.636883, -0.618384),
             normal: (-0.816521, 0.559553, 0.142109), },
    Vertex { position: (4.104292, 2.537976, -0.543437),
             normal: (-0.719327, 0.568277, -0.399538), },
    Vertex { position: (4.176065, 2.636883, -0.618384),
             normal: (-0.816521, 0.559553, 0.142109), },
    Vertex { position: (4.138494, 2.557838, -0.652651),
             normal: (-0.364192, 0.890167, -0.2738), },
    Vertex { position: (4.138494, 2.557838, -0.652651),
             normal: (-0.364192, 0.890167, -0.2738), },
    Vertex { position: (4.176065, 2.636883, -0.618384),
             normal: (-0.816521, 0.559553, 0.142109), },
    Vertex { position: (4.273414, 2.686575, -0.753674),
             normal: (-0.940255, 0.335069, 0.060403), },
    Vertex { position: (4.138494, 2.557838, -0.652651),
             normal: (-0.364192, 0.890167, -0.2738), },
    Vertex { position: (4.273414, 2.686575, -0.753674),
             normal: (-0.940255, 0.335069, 0.060403), },
    Vertex { position: (4.235494, 2.636171, -0.803613),
             normal: (-0.353793, 0.870619, -0.341838), },
    Vertex { position: (4.235494, 2.636171, -0.803613),
             normal: (-0.353793, 0.870619, -0.341838), },
    Vertex { position: (4.273414, 2.686575, -0.753674),
             normal: (-0.940255, 0.335069, 0.060403), },
    Vertex { position: (4.354196, 2.711836, -0.826545),
             normal: (-0.900694, 0.426849, -0.080936), },
    Vertex { position: (4.235494, 2.636171, -0.803613),
             normal: (-0.353793, 0.870619, -0.341838), },
    Vertex { position: (4.354196, 2.711836, -0.826545),
             normal: (-0.900694, 0.426849, -0.080936), },
    Vertex { position: (4.342998, 2.664049, -0.904347),
             normal: (-0.718934, 0.608496, -0.335955), },
    Vertex { position: (4.342998, 2.664049, -0.904347),
             normal: (-0.718934, 0.608496, -0.335955), },
    Vertex { position: (4.354196, 2.711836, -0.826545),
             normal: (-0.900694, 0.426849, -0.080936), },
    Vertex { position: (4.462368, 2.725999, -0.882675),
             normal: (-0.758791, 0.646991, 0.075091), },
    Vertex { position: (4.342998, 2.664049, -0.904347),
             normal: (-0.718934, 0.608496, -0.335955), },
    Vertex { position: (4.462368, 2.725999, -0.882675),
             normal: (-0.758791, 0.646991, 0.075091), },
    Vertex { position: (4.460786, 2.695616, -0.949972),
             normal: (-0.929249, -0.009269, -0.369337), },
    Vertex { position: (4.636909, 2.750501, -0.856859),
             normal: (0.267121, -0.895396, -0.356249), },
    Vertex { position: (4.719171, 2.751091, -0.865965),
             normal: (-0.53682, -0.608254, -0.58468), },
    Vertex { position: (4.735445, 2.749285, -0.940329),
             normal: (-0.47673, 0.840923, 0.25608), },
    Vertex { position: (4.636909, 2.750501, -0.856859),
             normal: (0.267121, -0.895396, -0.356249), },
    Vertex { position: (4.735445, 2.749285, -0.940329),
             normal: (-0.47673, 0.840923, 0.25608), },
    Vertex { position: (4.616626, 2.749486, -0.939333),
             normal: (-0.31499, 0.894135, 0.318282), },
    Vertex { position: (4.801436, 2.750224, -0.858918),
             normal: (-0.724543, -0.128977, -0.677054), },
    Vertex { position: (4.827733, 2.75439, -0.905049),
             normal: (-0.145585, 0.915338, 0.375448), },
    Vertex { position: (4.735445, 2.749285, -0.940329),
             normal: (-0.47673, 0.840923, 0.25608), },
    Vertex { position: (4.801436, 2.750224, -0.858918),
             normal: (-0.724543, -0.128977, -0.677054), },
    Vertex { position: (4.735445, 2.749285, -0.940329),
             normal: (-0.47673, 0.840923, 0.25608), },
    Vertex { position: (4.719171, 2.751091, -0.865965),
             normal: (-0.53682, -0.608254, -0.58468), },
    Vertex { position: (4.827733, 2.75439, -0.905049),
             normal: (-0.145585, 0.915338, 0.375448), },
    Vertex { position: (4.801436, 2.750224, -0.858918),
             normal: (-0.724543, -0.128977, -0.677054), },
    Vertex { position: (5.096148, 2.75972, -0.774729),
             normal: (-0.86136, -0.239794, -0.447836), },
    Vertex { position: (4.462368, 2.725999, -0.882675),
             normal: (-0.758791, 0.646991, 0.075091), },
    Vertex { position: (4.616626, 2.749486, -0.939333),
             normal: (-0.31499, 0.894135, 0.318282), },
    Vertex { position: (4.6248, 2.708372, -0.989445),
             normal: (-0.144656, 0.947613, -0.284787), },
    Vertex { position: (4.462368, 2.725999, -0.882675),
             normal: (-0.758791, 0.646991, 0.075091), },
    Vertex { position: (4.6248, 2.708372, -0.989445),
             normal: (-0.144656, 0.947613, -0.284787), },
    Vertex { position: (4.460786, 2.695616, -0.949972),
             normal: (-0.929249, -0.009269, -0.369337), },
    Vertex { position: (4.616626, 2.749486, -0.939333),
             normal: (-0.31499, 0.894135, 0.318282), },
    Vertex { position: (4.735445, 2.749285, -0.940329),
             normal: (-0.47673, 0.840923, 0.25608), },
    Vertex { position: (4.753015, 2.699695, -0.973279),
             normal: (0.197027, 0.937222, -0.287742), },
    Vertex { position: (4.616626, 2.749486, -0.939333),
             normal: (-0.31499, 0.894135, 0.318282), },
    Vertex { position: (4.753015, 2.699695, -0.973279),
             normal: (0.197027, 0.937222, -0.287742), },
    Vertex { position: (4.6248, 2.708372, -0.989445),
             normal: (-0.144656, 0.947613, -0.284787), },
    Vertex { position: (4.863709, 2.722151, -0.93666),
             normal: (0.225135, 0.965893, -0.127928), },
    Vertex { position: (4.753015, 2.699695, -0.973279),
             normal: (0.197027, 0.937222, -0.287742), },
    Vertex { position: (4.735445, 2.749285, -0.940329),
             normal: (-0.47673, 0.840923, 0.25608), },
    Vertex { position: (4.863709, 2.722151, -0.93666),
             normal: (0.225135, 0.965893, -0.127928), },
    Vertex { position: (4.735445, 2.749285, -0.940329),
             normal: (-0.47673, 0.840923, 0.25608), },
    Vertex { position: (4.827733, 2.75439, -0.905049),
             normal: (-0.145585, 0.915338, 0.375448), },
    Vertex { position: (4.863709, 2.722151, -0.93666),
             normal: (0.225135, 0.965893, -0.127928), },
    Vertex { position: (4.827733, 2.75439, -0.905049),
             normal: (-0.145585, 0.915338, 0.375448), },
    Vertex { position: (5.096148, 2.75972, -0.774729),
             normal: (-0.86136, -0.239794, -0.447836), },
    Vertex { position: (4.854957, 2.660227, -0.92431),
             normal: (0.05537, 0.916343, -0.396546), },
    Vertex { position: (4.863709, 2.722151, -0.93666),
             normal: (0.225135, 0.965893, -0.127928), },
    Vertex { position: (5.096148, 2.75972, -0.774729),
             normal: (-0.86136, -0.239794, -0.447836), },
    Vertex { position: (4.821336, 2.621498, -0.789636),
             normal: (-0.376273, -0.14016, -0.915846), },
    Vertex { position: (4.829566, 2.580797, -0.821827),
             normal: (-0.395723, 0.901671, -0.174334), },
    Vertex { position: (5.096148, 2.75972, -0.774729),
             normal: (-0.86136, -0.239794, -0.447836), },
    Vertex { position: (4.829566, 2.580797, -0.821827),
             normal: (-0.395723, 0.901671, -0.174334), },
    Vertex { position: (4.856249, 2.593812, -0.867067),
             normal: (-0.476949, 0.871028, -0.117606), },
    Vertex { position: (5.096148, 2.75972, -0.774729),
             normal: (-0.86136, -0.239794, -0.447836), },
    Vertex { position: (4.344028, 2.585635, 0.470949),
             normal: (-0.877603, -0.025309, 0.478719), },
    Vertex { position: (4.328606, 2.563996, 0.343892),
             normal: (-0.130291, 0.991051, 0.029017), },
    Vertex { position: (4.209941, 2.600612, 0.337597),
             normal: (-0.904972, -0.026555, 0.424641), },
    Vertex { position: (4.344028, 2.585635, 0.470949),
             normal: (-0.877603, -0.025309, 0.478719), },
    Vertex { position: (4.209941, 2.600612, 0.337597),
             normal: (-0.904972, -0.026555, 0.424641), },
    Vertex { position: (4.22473, 2.624525, 0.491916),
             normal: (-0.778386, 0.466325, 0.420305), },
    Vertex { position: (4.407729, 2.53164, 0.486692),
             normal: (0.197027, 0.937222, 0.287741), },
    Vertex { position: (4.410844, 2.500167, 0.351972),
             normal: (-0.501953, 0.842502, 0.195534), },
    Vertex { position: (4.328606, 2.563996, 0.343892),
             normal: (-0.130291, 0.991051, 0.029017), },
    Vertex { position: (4.407729, 2.53164, 0.486692),
             normal: (0.197027, 0.937222, 0.287741), },
    Vertex { position: (4.328606, 2.563996, 0.343892),
             normal: (-0.130291, 0.991051, 0.029017), },
    Vertex { position: (4.344028, 2.585635, 0.470949),
             normal: (-0.877603, -0.025309, 0.478719), },
    Vertex { position: (4.359483, 2.615839, 0.596817),
             normal: (0.223577, 0.97296, -0.057987), },
    Vertex { position: (4.344028, 2.585635, 0.470949),
             normal: (-0.877603, -0.025309, 0.478719), },
    Vertex { position: (4.22473, 2.624525, 0.491916),
             normal: (-0.778386, 0.466325, 0.420305), },
    Vertex { position: (4.359483, 2.615839, 0.596817),
             normal: (0.223577, 0.97296, -0.057987), },
    Vertex { position: (4.22473, 2.624525, 0.491916),
             normal: (-0.778386, 0.466325, 0.420305), },
    Vertex { position: (4.277169, 2.652435, 0.591369),
             normal: (0.225135, 0.965893, 0.127928), },
    Vertex { position: (4.423033, 2.561337, 0.603562),
             normal: (-0.247355, 0.948391, -0.198417), },
    Vertex { position: (4.407729, 2.53164, 0.486692),
             normal: (0.197027, 0.937222, 0.287741), },
    Vertex { position: (4.344028, 2.585635, 0.470949),
             normal: (-0.877603, -0.025309, 0.478719), },
    Vertex { position: (4.423033, 2.561337, 0.603562),
             normal: (-0.247355, 0.948391, -0.198417), },
    Vertex { position: (4.344028, 2.585635, 0.470949),
             normal: (-0.877603, -0.025309, 0.478719), },
    Vertex { position: (4.359483, 2.615839, 0.596817),
             normal: (0.223577, 0.97296, -0.057987), },
    Vertex { position: (4.411541, 2.663824, 0.713132),
             normal: (-0.860595, 0.405543, 0.308077), },
    Vertex { position: (4.359483, 2.615839, 0.596817),
             normal: (0.223577, 0.97296, -0.057987), },
    Vertex { position: (4.277169, 2.652435, 0.591369),
             normal: (0.225135, 0.965893, 0.127928), },
    Vertex { position: (4.411541, 2.663824, 0.713132),
             normal: (-0.860595, 0.405543, 0.308077), },
    Vertex { position: (4.277169, 2.652435, 0.591369),
             normal: (0.225135, 0.965893, 0.127928), },
    Vertex { position: (4.35668, 2.682996, 0.71905),
             normal: (-0.671788, 0.737297, 0.07138), },
    Vertex { position: (4.47609, 2.606654, 0.692301),
             normal: (-0.162972, 0.917259, -0.363422), },
    Vertex { position: (4.423033, 2.561337, 0.603562),
             normal: (-0.247355, 0.948391, -0.198417), },
    Vertex { position: (4.359483, 2.615839, 0.596817),
             normal: (0.223577, 0.97296, -0.057987), },
    Vertex { position: (4.47609, 2.606654, 0.692301),
             normal: (-0.162972, 0.917259, -0.363422), },
    Vertex { position: (4.359483, 2.615839, 0.596817),
             normal: (0.223577, 0.97296, -0.057987), },
    Vertex { position: (4.411541, 2.663824, 0.713132),
             normal: (-0.860595, 0.405543, 0.308077), },
    Vertex { position: (4.465268, 2.695425, 0.757267),
             normal: (-0.758791, 0.646991, -0.075091), },
    Vertex { position: (4.411541, 2.663824, 0.713132),
             normal: (-0.860595, 0.405543, 0.308077), },
    Vertex { position: (4.35668, 2.682996, 0.71905),
             normal: (-0.671788, 0.737297, 0.07138), },
    Vertex { position: (4.465268, 2.695425, 0.757267),
             normal: (-0.758791, 0.646991, -0.075091), },
    Vertex { position: (4.35668, 2.682996, 0.71905),
             normal: (-0.671788, 0.737297, 0.07138), },
    Vertex { position: (4.418954, 2.707401, 0.782531),
             normal: (-0.31499, 0.894135, -0.318282), },
    Vertex { position: (4.465268, 2.695425, 0.757267),
             normal: (-0.758791, 0.646991, -0.075091), },
    Vertex { position: (4.520603, 2.639162, 0.745542),
             normal: (-0.900694, 0.426849, 0.080936), },
    Vertex { position: (4.47609, 2.606654, 0.692301),
             normal: (-0.162972, 0.917259, -0.363422), },
    Vertex { position: (4.465268, 2.695425, 0.757267),
             normal: (-0.758791, 0.646991, -0.075091), },
    Vertex { position: (4.47609, 2.606654, 0.692301),
             normal: (-0.162972, 0.917259, -0.363422), },
    Vertex { position: (4.411541, 2.663824, 0.713132),
             normal: (-0.860595, 0.405543, 0.308077), },
    Vertex { position: (4.546655, 2.709095, 0.80378),
             normal: (-0.816521, 0.559553, -0.142109), },
    Vertex { position: (4.465268, 2.695425, 0.757267),
             normal: (-0.758791, 0.646991, -0.075091), },
    Vertex { position: (4.418954, 2.707401, 0.782531),
             normal: (-0.31499, 0.894135, -0.318282), },
    Vertex { position: (4.546655, 2.709095, 0.80378),
             normal: (-0.816521, 0.559553, -0.142109), },
    Vertex { position: (4.418954, 2.707401, 0.782531),
             normal: (-0.31499, 0.894135, -0.318282), },
    Vertex { position: (4.509555, 2.719807, 0.819972),
             normal: (-0.940256, 0.335069, -0.060403), },
    Vertex { position: (4.546655, 2.709095, 0.80378),
             normal: (-0.816521, 0.559553, -0.142109), },
    Vertex { position: (4.574545, 2.669863, 0.780363),
             normal: (-0.683788, 0.700764, -0.203383), },
    Vertex { position: (4.520603, 2.639162, 0.745542),
             normal: (-0.900694, 0.426849, 0.080936), },
    Vertex { position: (4.546655, 2.709095, 0.80378),
             normal: (-0.816521, 0.559553, -0.142109), },
    Vertex { position: (4.520603, 2.639162, 0.745542),
             normal: (-0.900694, 0.426849, 0.080936), },
    Vertex { position: (4.465268, 2.695425, 0.757267),
             normal: (-0.758791, 0.646991, -0.075091), },
    Vertex { position: (4.44385, 2.449921, 0.495432),
             normal: (-0.476729, 0.840923, -0.25608), },
    Vertex { position: (4.474318, 2.418432, 0.361347),
             normal: (-0.849668, 0.488771, -0.197904), },
    Vertex { position: (4.410844, 2.500167, 0.351972),
             normal: (-0.501953, 0.842502, 0.195534), },
    Vertex { position: (4.44385, 2.449921, 0.495432),
             normal: (-0.476729, 0.840923, -0.25608), },
    Vertex { position: (4.410844, 2.500167, 0.351972),
             normal: (-0.501953, 0.842502, 0.195534), },
    Vertex { position: (4.407729, 2.53164, 0.486692),
             normal: (0.197027, 0.937222, 0.287741), },
    Vertex { position: (4.44076, 2.490353, 0.629287),
             normal: (-0.145585, 0.915338, -0.375448), },
    Vertex { position: (4.44385, 2.449921, 0.495432),
             normal: (-0.476729, 0.840923, -0.25608), },
    Vertex { position: (4.407729, 2.53164, 0.486692),
             normal: (0.197027, 0.937222, 0.287741), },
    Vertex { position: (4.44076, 2.490353, 0.629287),
             normal: (-0.145585, 0.915338, -0.375448), },
    Vertex { position: (4.407729, 2.53164, 0.486692),
             normal: (0.197027, 0.937222, 0.287741), },
    Vertex { position: (4.423033, 2.561337, 0.603562),
             normal: (-0.247355, 0.948391, -0.198417), },
    Vertex { position: (4.484667, 2.534451, 0.708888),
             normal: (-0.210882, 0.942026, -0.260988), },
    Vertex { position: (4.44076, 2.490353, 0.629287),
             normal: (-0.145585, 0.915338, -0.375448), },
    Vertex { position: (4.423033, 2.561337, 0.603562),
             normal: (-0.247355, 0.948391, -0.198417), },
    Vertex { position: (4.484667, 2.534451, 0.708888),
             normal: (-0.210882, 0.942026, -0.260988), },
    Vertex { position: (4.423033, 2.561337, 0.603562),
             normal: (-0.247355, 0.948391, -0.198417), },
    Vertex { position: (4.47609, 2.606654, 0.692301),
             normal: (-0.162972, 0.917259, -0.363422), },
    Vertex { position: (4.520165, 2.557971, 0.762427),
             normal: (-0.502348, 0.838173, -0.212398), },
    Vertex { position: (4.484667, 2.534451, 0.708888),
             normal: (-0.210882, 0.942026, -0.260988), },
    Vertex { position: (4.47609, 2.606654, 0.692301),
             normal: (-0.162972, 0.917259, -0.363422), },
    Vertex { position: (4.520165, 2.557971, 0.762427),
             normal: (-0.502348, 0.838173, -0.212398), },
    Vertex { position: (4.47609, 2.606654, 0.692301),
             normal: (-0.162972, 0.917259, -0.363422), },
    Vertex { position: (4.520603, 2.639162, 0.745542),
             normal: (-0.900694, 0.426849, 0.080936), },
    Vertex { position: (4.59262, 2.569879, 0.790452),
             normal: (-0.768362, 0.592231, -0.242657), },
    Vertex { position: (4.520165, 2.557971, 0.762427),
             normal: (-0.502348, 0.838173, -0.212398), },
    Vertex { position: (4.520603, 2.639162, 0.745542),
             normal: (-0.900694, 0.426849, 0.080936), },
    Vertex { position: (4.59262, 2.569879, 0.790452),
             normal: (-0.768362, 0.592231, -0.242657), },
    Vertex { position: (4.520603, 2.639162, 0.745542),
             normal: (-0.900694, 0.426849, 0.080936), },
    Vertex { position: (4.574545, 2.669863, 0.780363),
             normal: (-0.683788, 0.700764, -0.203383), },
    Vertex { position: (4.674691, 2.598833, 0.808006),
             normal: (-0.981668, 0.173926, -0.077954), },
    Vertex { position: (4.59262, 2.569879, 0.790452),
             normal: (-0.768362, 0.592231, -0.242657), },
    Vertex { position: (4.574545, 2.669863, 0.780363),
             normal: (-0.683788, 0.700764, -0.203383), },
    Vertex { position: (4.674691, 2.598833, 0.808006),
             normal: (-0.981668, 0.173926, -0.077954), },
    Vertex { position: (4.574545, 2.669863, 0.780363),
             normal: (-0.683788, 0.700764, -0.203383), },
    Vertex { position: (4.656565, 2.680542, 0.799684),
             normal: (-0.892748, 0.392127, -0.221893), },
    Vertex { position: (4.656565, 2.680542, 0.799684),
             normal: (-0.892748, 0.392127, -0.221893), },
    Vertex { position: (4.574545, 2.669863, 0.780363),
             normal: (-0.683788, 0.700764, -0.203383), },
    Vertex { position: (4.546655, 2.709095, 0.80378),
             normal: (-0.816521, 0.559553, -0.142109), },
    Vertex { position: (4.656565, 2.680542, 0.799684),
             normal: (-0.892748, 0.392127, -0.221893), },
    Vertex { position: (4.546655, 2.709095, 0.80378),
             normal: (-0.816521, 0.559553, -0.142109), },
    Vertex { position: (4.646703, 2.728688, 0.822295),
             normal: (-0.990661, 0.056144, -0.124249), },
    Vertex { position: (4.646703, 2.728688, 0.822295),
             normal: (-0.990661, 0.056144, -0.124249), },
    Vertex { position: (4.546655, 2.709095, 0.80378),
             normal: (-0.816521, 0.559553, -0.142109), },
    Vertex { position: (4.509555, 2.719807, 0.819972),
             normal: (-0.940256, 0.335069, -0.060403), },
    Vertex { position: (4.646703, 2.728688, 0.822295),
             normal: (-0.990661, 0.056144, -0.124249), },
    Vertex { position: (4.509555, 2.719807, 0.819972),
             normal: (-0.940256, 0.335069, -0.060403), },
    Vertex { position: (4.636909, 2.750501, 0.856859),
             normal: (-0.894795, 0.444359, -0.043442), },
    Vertex { position: (4.729447, 2.606204, 0.807513),
             normal: (-0.984655, 0.15519, 0.07981), },
    Vertex { position: (4.674691, 2.598833, 0.808006),
             normal: (-0.981668, 0.173926, -0.077954), },
    Vertex { position: (4.656565, 2.680542, 0.799684),
             normal: (-0.892748, 0.392127, -0.221893), },
    Vertex { position: (4.729447, 2.606204, 0.807513),
             normal: (-0.984655, 0.15519, 0.07981), },
    Vertex { position: (4.656565, 2.680542, 0.799684),
             normal: (-0.892748, 0.392127, -0.221893), },
    Vertex { position: (4.748031, 2.683805, 0.800044),
             normal: (-0.941564, 0.056551, 0.332054), },
    Vertex { position: (4.748031, 2.683805, 0.800044),
             normal: (-0.941564, 0.056551, 0.332054), },
    Vertex { position: (4.656565, 2.680542, 0.799684),
             normal: (-0.892748, 0.392127, -0.221893), },
    Vertex { position: (4.646703, 2.728688, 0.822295),
             normal: (-0.990661, 0.056144, -0.124249), },
    Vertex { position: (4.748031, 2.683805, 0.800044),
             normal: (-0.941564, 0.056551, 0.332054), },
    Vertex { position: (4.646703, 2.728688, 0.822295),
             normal: (-0.990661, 0.056144, -0.124249), },
    Vertex { position: (4.728931, 2.721892, 0.832625),
             normal: (-0.978317, 0.206989, -0.00716), },
    Vertex { position: (4.728931, 2.721892, 0.832625),
             normal: (-0.978317, 0.206989, -0.00716), },
    Vertex { position: (4.646703, 2.728688, 0.822295),
             normal: (-0.990661, 0.056144, -0.124249), },
    Vertex { position: (4.636909, 2.750501, 0.856859),
             normal: (-0.894795, 0.444359, -0.043442), },
    Vertex { position: (4.728931, 2.721892, 0.832625),
             normal: (-0.978317, 0.206989, -0.00716), },
    Vertex { position: (4.636909, 2.750501, 0.856859),
             normal: (-0.894795, 0.444359, -0.043442), },
    Vertex { position: (4.719171, 2.751091, 0.865965),
             normal: (-0.463096, -0.149333, 0.873637), },
    Vertex { position: (4.821336, 2.621498, 0.789636),
             normal: (-0.791764, -0.610494, -0.020171), },
    Vertex { position: (4.729447, 2.606204, 0.807513),
             normal: (-0.984655, 0.15519, 0.07981), },
    Vertex { position: (4.748031, 2.683805, 0.800044),
             normal: (-0.941564, 0.056551, 0.332054), },
    Vertex { position: (4.821336, 2.621498, 0.789636),
             normal: (-0.791764, -0.610494, -0.020171), },
    Vertex { position: (4.748031, 2.683805, 0.800044),
             normal: (-0.941564, 0.056551, 0.332054), },
    Vertex { position: (4.821325, 2.691794, 0.791887),
             normal: (-0.64155, -0.578509, 0.503727), },
    Vertex { position: (4.821325, 2.691794, 0.791887),
             normal: (-0.64155, -0.578509, 0.503727), },
    Vertex { position: (4.748031, 2.683805, 0.800044),
             normal: (-0.941564, 0.056551, 0.332054), },
    Vertex { position: (4.728931, 2.721892, 0.832625),
             normal: (-0.978317, 0.206989, -0.00716), },
    Vertex { position: (4.821325, 2.691794, 0.791887),
             normal: (-0.64155, -0.578509, 0.503727), },
    Vertex { position: (4.728931, 2.721892, 0.832625),
             normal: (-0.978317, 0.206989, -0.00716), },
    Vertex { position: (4.811798, 2.72868, 0.815406),
             normal: (-0.832539, -0.5495, 0.070196), },
    Vertex { position: (4.801436, 2.750224, 0.858918),
             normal: (-0.862876, -0.450622, 0.228877), },
    Vertex { position: (4.811798, 2.72868, 0.815406),
             normal: (-0.832539, -0.5495, 0.070196), },
    Vertex { position: (4.728931, 2.721892, 0.832625),
             normal: (-0.978317, 0.206989, -0.00716), },
    Vertex { position: (4.801436, 2.750224, 0.858918),
             normal: (-0.862876, -0.450622, 0.228877), },
    Vertex { position: (4.728931, 2.721892, 0.832625),
             normal: (-0.978317, 0.206989, -0.00716), },
    Vertex { position: (4.719171, 2.751091, 0.865965),
             normal: (-0.463096, -0.149333, 0.873637), },
    Vertex { position: (4.811798, 2.72868, 0.815406),
             normal: (-0.832539, -0.5495, 0.070196), },
    Vertex { position: (4.801436, 2.750224, 0.858918),
             normal: (-0.862876, -0.450622, 0.228877), },
    Vertex { position: (5.096148, 2.75972, 0.774729),
             normal: (-0.916647, -0.2944, 0.270344), },
    Vertex { position: (4.821325, 2.691794, 0.791887),
             normal: (-0.64155, -0.578509, 0.503727), },
    Vertex { position: (4.811798, 2.72868, 0.815406),
             normal: (-0.832539, -0.5495, 0.070196), },
    Vertex { position: (5.096148, 2.75972, 0.774729),
             normal: (-0.916647, -0.2944, 0.270344), },
    Vertex { position: (4.821336, 2.621498, 0.789636),
             normal: (-0.791764, -0.610494, -0.020171), },
    Vertex { position: (4.821325, 2.691794, 0.791887),
             normal: (-0.64155, -0.578509, 0.503727), },
    Vertex { position: (5.096148, 2.75972, 0.774729),
             normal: (-0.916647, -0.2944, 0.270344), },
    Vertex { position: (4.472349, 2.325133, 0.443764),
             normal: (0.231006, -0.859096, 0.456717), },
    Vertex { position: (4.474318, 2.418432, 0.361347),
             normal: (-0.849668, 0.488771, -0.197904), },
    Vertex { position: (4.44385, 2.449921, 0.495432),
             normal: (-0.476729, 0.840923, -0.25608), },
    Vertex { position: (4.472349, 2.325133, 0.443764),
             normal: (0.231006, -0.859096, 0.456717), },
    Vertex { position: (4.44385, 2.449921, 0.495432),
             normal: (-0.476729, 0.840923, -0.25608), },
    Vertex { position: (4.442912, 2.343263, 0.53322),
             normal: (-0.975013, -0.179566, 0.130791), },
    Vertex { position: (4.442912, 2.343263, 0.53322),
             normal: (-0.975013, -0.179566, 0.130791), },
    Vertex { position: (4.44385, 2.449921, 0.495432),
             normal: (-0.476729, 0.840923, -0.25608), },
    Vertex { position: (4.44076, 2.490353, 0.629287),
             normal: (-0.145585, 0.915338, -0.375448), },
    Vertex { position: (4.442912, 2.343263, 0.53322),
             normal: (-0.975013, -0.179566, 0.130791), },
    Vertex { position: (4.44076, 2.490353, 0.629287),
             normal: (-0.145585, 0.915338, -0.375448), },
    Vertex { position: (4.440713, 2.398472, 0.629128),
             normal: (-0.963659, -0.230665, 0.134738), },
    Vertex { position: (4.474625, 2.465214, 0.75189),
             normal: (-0.990956, -0.062739, 0.118613), },
    Vertex { position: (4.440713, 2.398472, 0.629128),
             normal: (-0.963659, -0.230665, 0.134738), },
    Vertex { position: (4.44076, 2.490353, 0.629287),
             normal: (-0.145585, 0.915338, -0.375448), },
    Vertex { position: (4.474625, 2.465214, 0.75189),
             normal: (-0.990956, -0.062739, 0.118613), },
    Vertex { position: (4.44076, 2.490353, 0.629287),
             normal: (-0.145585, 0.915338, -0.375448), },
    Vertex { position: (4.484667, 2.534451, 0.708888),
             normal: (-0.210882, 0.942026, -0.260988), },
    Vertex { position: (4.32063, 2.385528, 0.682583),
             normal: (-0.473779, -0.24744, 0.845167), },
    Vertex { position: (4.314039, 2.32946, 0.57751),
             normal: (-0.938303, -0.3372, 0.076703), },
    Vertex { position: (4.442912, 2.343263, 0.53322),
             normal: (-0.975013, -0.179566, 0.130791), },
    Vertex { position: (4.32063, 2.385528, 0.682583),
             normal: (-0.473779, -0.24744, 0.845167), },
    Vertex { position: (4.442912, 2.343263, 0.53322),
             normal: (-0.975013, -0.179566, 0.130791), },
    Vertex { position: (4.440713, 2.398472, 0.629128),
             normal: (-0.963659, -0.230665, 0.134738), },
    Vertex { position: (4.296769, 2.260422, 0.528796),
             normal: (-0.713872, -0.610821, 0.342469), },
    Vertex { position: (4.472349, 2.325133, 0.443764),
             normal: (0.231006, -0.859096, 0.456717), },
    Vertex { position: (4.442912, 2.343263, 0.53322),
             normal: (-0.975013, -0.179566, 0.130791), },
    Vertex { position: (4.296769, 2.260422, 0.528796),
             normal: (-0.713872, -0.610821, 0.342469), },
    Vertex { position: (4.442912, 2.343263, 0.53322),
             normal: (-0.975013, -0.179566, 0.130791), },
    Vertex { position: (4.314039, 2.32946, 0.57751),
             normal: (-0.938303, -0.3372, 0.076703), },
    Vertex { position: (4.382053, 2.433474, 0.798757),
             normal: (-0.719395, -0.61545, 0.322011), },
    Vertex { position: (4.32063, 2.385528, 0.682583),
             normal: (-0.473779, -0.24744, 0.845167), },
    Vertex { position: (4.440713, 2.398472, 0.629128),
             normal: (-0.963659, -0.230665, 0.134738), },
    Vertex { position: (4.382053, 2.433474, 0.798757),
             normal: (-0.719395, -0.61545, 0.322011), },
    Vertex { position: (4.440713, 2.398472, 0.629128),
             normal: (-0.963659, -0.230665, 0.134738), },
    Vertex { position: (4.474625, 2.465214, 0.75189),
             normal: (-0.990956, -0.062739, 0.118613), },
    Vertex { position: (4.538177, 2.513353, 0.776566),
             normal: (-0.841909, -0.49598, 0.212588), },
    Vertex { position: (4.474625, 2.465214, 0.75189),
             normal: (-0.990956, -0.062739, 0.118613), },
    Vertex { position: (4.484667, 2.534451, 0.708888),
             normal: (-0.210882, 0.942026, -0.260988), },
    Vertex { position: (4.538177, 2.513353, 0.776566),
             normal: (-0.841909, -0.49598, 0.212588), },
    Vertex { position: (4.484667, 2.534451, 0.708888),
             normal: (-0.210882, 0.942026, -0.260988), },
    Vertex { position: (4.520165, 2.557971, 0.762427),
             normal: (-0.502348, 0.838173, -0.212398), },
    Vertex { position: (4.444739, 2.475795, 0.860515),
             normal: (0.760119, -0.003927, 0.649772), },
    Vertex { position: (4.382053, 2.433474, 0.798757),
             normal: (-0.719395, -0.61545, 0.322011), },
    Vertex { position: (4.474625, 2.465214, 0.75189),
             normal: (-0.990956, -0.062739, 0.118613), },
    Vertex { position: (4.444739, 2.475795, 0.860515),
             normal: (0.760119, -0.003927, 0.649772), },
    Vertex { position: (4.474625, 2.465214, 0.75189),
             normal: (-0.990956, -0.062739, 0.118613), },
    Vertex { position: (4.538177, 2.513353, 0.776566),
             normal: (-0.841909, -0.49598, 0.212588), },
    Vertex { position: (4.601515, 2.533324, 0.794193),
             normal: (0.911709, -0.064353, 0.405764), },
    Vertex { position: (4.538177, 2.513353, 0.776566),
             normal: (-0.841909, -0.49598, 0.212588), },
    Vertex { position: (4.520165, 2.557971, 0.762427),
             normal: (-0.502348, 0.838173, -0.212398), },
    Vertex { position: (4.601515, 2.533324, 0.794193),
             normal: (0.911709, -0.064353, 0.405764), },
    Vertex { position: (4.520165, 2.557971, 0.762427),
             normal: (-0.502348, 0.838173, -0.212398), },
    Vertex { position: (4.59262, 2.569879, 0.790452),
             normal: (-0.768362, 0.592231, -0.242657), },
    Vertex { position: (4.554459, 2.511417, 0.850571),
             normal: (0.3335, 0.232683, 0.913584), },
    Vertex { position: (4.444739, 2.475795, 0.860515),
             normal: (0.760119, -0.003927, 0.649772), },
    Vertex { position: (4.538177, 2.513353, 0.776566),
             normal: (-0.841909, -0.49598, 0.212588), },
    Vertex { position: (4.554459, 2.511417, 0.850571),
             normal: (0.3335, 0.232683, 0.913584), },
    Vertex { position: (4.538177, 2.513353, 0.776566),
             normal: (-0.841909, -0.49598, 0.212588), },
    Vertex { position: (4.601515, 2.533324, 0.794193),
             normal: (0.911709, -0.064353, 0.405764), },
    Vertex { position: (4.683344, 2.554221, 0.821927),
             normal: (0.245858, 0.150988, 0.957474), },
    Vertex { position: (4.601515, 2.533324, 0.794193),
             normal: (0.911709, -0.064353, 0.405764), },
    Vertex { position: (4.59262, 2.569879, 0.790452),
             normal: (-0.768362, 0.592231, -0.242657), },
    Vertex { position: (4.683344, 2.554221, 0.821927),
             normal: (0.245858, 0.150988, 0.957474), },
    Vertex { position: (4.59262, 2.569879, 0.790452),
             normal: (-0.768362, 0.592231, -0.242657), },
    Vertex { position: (4.674691, 2.598833, 0.808006),
             normal: (-0.981668, 0.173926, -0.077954), },
    Vertex { position: (4.681847, 2.551036, 0.886235),
             normal: (0.895851, 0.326389, 0.301532), },
    Vertex { position: (4.554459, 2.511417, 0.850571),
             normal: (0.3335, 0.232683, 0.913584), },
    Vertex { position: (4.601515, 2.533324, 0.794193),
             normal: (0.911709, -0.064353, 0.405764), },
    Vertex { position: (4.681847, 2.551036, 0.886235),
             normal: (0.895851, 0.326389, 0.301532), },
    Vertex { position: (4.601515, 2.533324, 0.794193),
             normal: (0.911709, -0.064353, 0.405764), },
    Vertex { position: (4.683344, 2.554221, 0.821927),
             normal: (0.245858, 0.150988, 0.957474), },
    Vertex { position: (4.755192, 2.568818, 0.876311),
             normal: (-0.279333, 0.256918, 0.925184), },
    Vertex { position: (4.681847, 2.551036, 0.886235),
             normal: (0.895851, 0.326389, 0.301532), },
    Vertex { position: (4.683344, 2.554221, 0.821927),
             normal: (0.245858, 0.150988, 0.957474), },
    Vertex { position: (4.755192, 2.568818, 0.876311),
             normal: (-0.279333, 0.256918, 0.925184), },
    Vertex { position: (4.683344, 2.554221, 0.821927),
             normal: (0.245858, 0.150988, 0.957474), },
    Vertex { position: (4.737893, 2.564648, 0.830389),
             normal: (-0.396467, 0.225967, 0.889805), },
    Vertex { position: (4.856249, 2.593812, 0.867067),
             normal: (-0.274209, -0.939323, -0.20611), },
    Vertex { position: (4.755192, 2.568818, 0.876311),
             normal: (-0.279333, 0.256918, 0.925184), },
    Vertex { position: (4.737893, 2.564648, 0.830389),
             normal: (-0.396467, 0.225967, 0.889805), },
    Vertex { position: (4.856249, 2.593812, 0.867067),
             normal: (-0.274209, -0.939323, -0.20611), },
    Vertex { position: (4.737893, 2.564648, 0.830389),
             normal: (-0.396467, 0.225967, 0.889805), },
    Vertex { position: (4.829566, 2.580797, 0.821827),
             normal: (-0.274209, -0.939323, -0.20611), },
    Vertex { position: (4.737893, 2.564648, 0.830389),
             normal: (-0.396467, 0.225967, 0.889805), },
    Vertex { position: (4.683344, 2.554221, 0.821927),
             normal: (0.245858, 0.150988, 0.957474), },
    Vertex { position: (4.674691, 2.598833, 0.808006),
             normal: (-0.981668, 0.173926, -0.077954), },
    Vertex { position: (4.737893, 2.564648, 0.830389),
             normal: (-0.396467, 0.225967, 0.889805), },
    Vertex { position: (4.674691, 2.598833, 0.808006),
             normal: (-0.981668, 0.173926, -0.077954), },
    Vertex { position: (4.729447, 2.606204, 0.807513),
             normal: (-0.984655, 0.15519, 0.07981), },
    Vertex { position: (4.829566, 2.580797, 0.821827),
             normal: (-0.274209, -0.939323, -0.20611), },
    Vertex { position: (4.737893, 2.564648, 0.830389),
             normal: (-0.396467, 0.225967, 0.889805), },
    Vertex { position: (4.729447, 2.606204, 0.807513),
             normal: (-0.984655, 0.15519, 0.07981), },
    Vertex { position: (4.829566, 2.580797, 0.821827),
             normal: (-0.274209, -0.939323, -0.20611), },
    Vertex { position: (4.729447, 2.606204, 0.807513),
             normal: (-0.984655, 0.15519, 0.07981), },
    Vertex { position: (4.821336, 2.621498, 0.789636),
             normal: (-0.791764, -0.610494, -0.020171), },
    Vertex { position: (4.497719, 2.54748, 0.937659),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.554459, 2.511417, 0.850571),
             normal: (0.3335, 0.232683, 0.913584), },
    Vertex { position: (4.681847, 2.551036, 0.886235),
             normal: (0.895851, 0.326389, 0.301532), },
    Vertex { position: (4.497719, 2.54748, 0.937659),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.681847, 2.551036, 0.886235),
             normal: (0.895851, 0.326389, 0.301532), },
    Vertex { position: (4.662221, 2.556346, 0.940618),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.755192, 2.568818, 0.876311),
             normal: (-0.279333, 0.256918, 0.925184), },
    Vertex { position: (4.763337, 2.590834, 0.929248),
             normal: (-0.137011, -0.928676, 0.344657), },
    Vertex { position: (4.662221, 2.556346, 0.940618),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.755192, 2.568818, 0.876311),
             normal: (-0.279333, 0.256918, 0.925184), },
    Vertex { position: (4.662221, 2.556346, 0.940618),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.681847, 2.551036, 0.886235),
             normal: (0.895851, 0.326389, 0.301532), },
    Vertex { position: (4.763337, 2.590834, 0.929248),
             normal: (-0.137011, -0.928676, 0.344657), },
    Vertex { position: (4.755192, 2.568818, 0.876311),
             normal: (-0.279333, 0.256918, 0.925184), },
    Vertex { position: (4.856249, 2.593812, 0.867067),
             normal: (-0.274209, -0.939323, -0.20611), },
    Vertex { position: (4.763337, 2.590834, 0.929248),
             normal: (-0.137011, -0.928676, 0.344657), },
    Vertex { position: (4.856249, 2.593812, 0.867067),
             normal: (-0.274209, -0.939323, -0.20611), },
    Vertex { position: (4.883022, 2.613658, 0.893163),
             normal: (-0.137011, -0.928676, 0.344657), },
    Vertex { position: (4.497719, 2.54748, 0.937659),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.352603, 2.524888, 0.890532),
             normal: (-0.250481, -0.945625, -0.207493), },
    Vertex { position: (4.444739, 2.475795, 0.860515),
             normal: (0.760119, -0.003927, 0.649772), },
    Vertex { position: (4.497719, 2.54748, 0.937659),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.444739, 2.475795, 0.860515),
             normal: (0.760119, -0.003927, 0.649772), },
    Vertex { position: (4.554459, 2.511417, 0.850571),
             normal: (0.3335, 0.232683, 0.913584), },
    Vertex { position: (4.262798, 2.490674, 0.818316),
             normal: (-0.250481, -0.945625, -0.207493), },
    Vertex { position: (4.382053, 2.433474, 0.798757),
             normal: (-0.719395, -0.61545, 0.322011), },
    Vertex { position: (4.444739, 2.475795, 0.860515),
             normal: (0.760119, -0.003927, 0.649772), },
    Vertex { position: (4.262798, 2.490674, 0.818316),
             normal: (-0.250481, -0.945625, -0.207493), },
    Vertex { position: (4.444739, 2.475795, 0.860515),
             normal: (0.760119, -0.003927, 0.649772), },
    Vertex { position: (4.352603, 2.524888, 0.890532),
             normal: (-0.250481, -0.945625, -0.207493), },
    Vertex { position: (4.192789, 2.411967, 0.668016),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.32063, 2.385528, 0.682583),
             normal: (-0.473779, -0.24744, 0.845167), },
    Vertex { position: (4.382053, 2.433474, 0.798757),
             normal: (-0.719395, -0.61545, 0.322011), },
    Vertex { position: (4.192789, 2.411967, 0.668016),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.382053, 2.433474, 0.798757),
             normal: (-0.719395, -0.61545, 0.322011), },
    Vertex { position: (4.262798, 2.490674, 0.818316),
             normal: (-0.250481, -0.945625, -0.207493), },
    Vertex { position: (4.193959, 2.370476, 0.616705),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.314039, 2.32946, 0.57751),
             normal: (-0.938303, -0.3372, 0.076703), },
    Vertex { position: (4.32063, 2.385528, 0.682583),
             normal: (-0.473779, -0.24744, 0.845167), },
    Vertex { position: (4.193959, 2.370476, 0.616705),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.32063, 2.385528, 0.682583),
             normal: (-0.473779, -0.24744, 0.845167), },
    Vertex { position: (4.192789, 2.411967, 0.668016),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.296769, 2.260422, 0.528796),
             normal: (-0.713872, -0.610821, 0.342469), },
    Vertex { position: (4.314039, 2.32946, 0.57751),
             normal: (-0.938303, -0.3372, 0.076703), },
    Vertex { position: (4.193959, 2.370476, 0.616705),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.296769, 2.260422, 0.528796),
             normal: (-0.713872, -0.610821, 0.342469), },
    Vertex { position: (4.193959, 2.370476, 0.616705),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.113935, 2.334131, 0.526471),
             normal: (-0.124529, -0.930217, 0.345238), },
    Vertex { position: (4.856249, 2.593812, 0.867067),
             normal: (-0.274209, -0.939323, -0.20611), },
    Vertex { position: (5.096148, 2.75972, 0.774729),
             normal: (-0.916647, -0.2944, 0.270344), },
    Vertex { position: (4.883022, 2.613658, 0.893163),
             normal: (-0.137011, -0.928676, 0.344657), },
    Vertex { position: (4.883022, 2.613658, 0.893163),
             normal: (-0.137011, -0.928676, 0.344657), },
    Vertex { position: (4.854957, 2.660227, 0.92431),
             normal: (0.186393, -0.974436, -0.125429), },
    Vertex { position: (4.735139, 2.645464, 0.95089),
             normal: (-0.124529, -0.930217, 0.345238), },
    Vertex { position: (4.883022, 2.613658, 0.893163),
             normal: (-0.137011, -0.928676, 0.344657), },
    Vertex { position: (4.735139, 2.645464, 0.95089),
             normal: (-0.124529, -0.930217, 0.345238), },
    Vertex { position: (4.763337, 2.590834, 0.929248),
             normal: (-0.137011, -0.928676, 0.344657), },
    Vertex { position: (4.763337, 2.590834, 0.929248),
             normal: (-0.137011, -0.928676, 0.344657), },
    Vertex { position: (4.735139, 2.645464, 0.95089),
             normal: (-0.124529, -0.930217, 0.345238), },
    Vertex { position: (4.615662, 2.63387, 0.977986),
             normal: (0.361848, -0.921221, -0.142892), },
    Vertex { position: (4.763337, 2.590834, 0.929248),
             normal: (-0.137011, -0.928676, 0.344657), },
    Vertex { position: (4.615662, 2.63387, 0.977986),
             normal: (0.361848, -0.921221, -0.142892), },
    Vertex { position: (4.662221, 2.556346, 0.940618),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.662221, 2.556346, 0.940618),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.615662, 2.63387, 0.977986),
             normal: (0.361848, -0.921221, -0.142892), },
    Vertex { position: (4.460582, 2.622875, 0.957002),
             normal: (-0.199236, -0.974239, -0.105658), },
    Vertex { position: (4.662221, 2.556346, 0.940618),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.460582, 2.622875, 0.957002),
             normal: (-0.199236, -0.974239, -0.105658), },
    Vertex { position: (4.497719, 2.54748, 0.937659),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.497719, 2.54748, 0.937659),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.460582, 2.622875, 0.957002),
             normal: (-0.199236, -0.974239, -0.105658), },
    Vertex { position: (4.343217, 2.589542, 0.893106),
             normal: (-0.942162, -0.29295, -0.162822), },
    Vertex { position: (4.497719, 2.54748, 0.937659),
             normal: (-0.21443, -0.974064, 0.072245), },
    Vertex { position: (4.343217, 2.589542, 0.893106),
             normal: (-0.942162, -0.29295, -0.162822), },
    Vertex { position: (4.352603, 2.524888, 0.890532),
             normal: (-0.250481, -0.945625, -0.207493), },
    Vertex { position: (4.352603, 2.524888, 0.890532),
             normal: (-0.250481, -0.945625, -0.207493), },
    Vertex { position: (4.343217, 2.589542, 0.893106),
             normal: (-0.942162, -0.29295, -0.162822), },
    Vertex { position: (4.244622, 2.554467, 0.811726),
             normal: (-0.982438, -0.108835, -0.151559), },
    Vertex { position: (4.352603, 2.524888, 0.890532),
             normal: (-0.250481, -0.945625, -0.207493), },
    Vertex { position: (4.244622, 2.554467, 0.811726),
             normal: (-0.982438, -0.108835, -0.151559), },
    Vertex { position: (4.262798, 2.490674, 0.818316),
             normal: (-0.250481, -0.945625, -0.207493), },
    Vertex { position: (4.262798, 2.490674, 0.818316),
             normal: (-0.250481, -0.945625, -0.207493), },
    Vertex { position: (4.244622, 2.554467, 0.811726),
             normal: (-0.982438, -0.108835, -0.151559), },
    Vertex { position: (4.138687, 2.474013, 0.642311),
             normal: (-0.668254, -0.729938, -0.143622), },
    Vertex { position: (4.262798, 2.490674, 0.818316),
             normal: (-0.250481, -0.945625, -0.207493), },
    Vertex { position: (4.138687, 2.474013, 0.642311),
             normal: (-0.668254, -0.729938, -0.143622), },
    Vertex { position: (4.192789, 2.411967, 0.668016),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (5.096148, 2.75972, 0.774729),
             normal: (-0.916647, -0.2944, 0.270344), },
    Vertex { position: (4.854957, 2.660227, 0.92431),
             normal: (0.186393, -0.974436, -0.125429), },
    Vertex { position: (4.883022, 2.613658, 0.893163),
             normal: (-0.137011, -0.928676, 0.344657), },
    Vertex { position: (4.193959, 2.370476, 0.616705),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.192789, 2.411967, 0.668016),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.138687, 2.474013, 0.642311),
             normal: (-0.668254, -0.729938, -0.143622), },
    Vertex { position: (4.193959, 2.370476, 0.616705),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.138687, 2.474013, 0.642311),
             normal: (-0.668254, -0.729938, -0.143622), },
    Vertex { position: (4.121994, 2.458034, 0.570029),
             normal: (-0.973393, -0.128296, 0.18986), },
    Vertex { position: (4.07851, 2.41181, 0.472193),
             normal: (-0.138401, -0.989733, 0.035683), },
    Vertex { position: (4.113935, 2.334131, 0.526471),
             normal: (-0.124529, -0.930217, 0.345238), },
    Vertex { position: (4.193959, 2.370476, 0.616705),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.07851, 2.41181, 0.472193),
             normal: (-0.138401, -0.989733, 0.035683), },
    Vertex { position: (4.193959, 2.370476, 0.616705),
             normal: (-0.19553, -0.978064, 0.071821), },
    Vertex { position: (4.121994, 2.458034, 0.570029),
             normal: (-0.973393, -0.128296, 0.18986), },
    Vertex { position: (4.343217, 2.589542, 0.893106),
             normal: (-0.942162, -0.29295, -0.162822), },
    Vertex { position: (4.342998, 2.664049, 0.904347),
             normal: (-0.927379, -0.346541, 0.14099), },
    Vertex { position: (4.235494, 2.636171, 0.803613),
             normal: (-0.601432, -0.796051, 0.067694), },
    Vertex { position: (4.343217, 2.589542, 0.893106),
             normal: (-0.942162, -0.29295, -0.162822), },
    Vertex { position: (4.235494, 2.636171, 0.803613),
             normal: (-0.601432, -0.796051, 0.067694), },
    Vertex { position: (4.244622, 2.554467, 0.811726),
             normal: (-0.982438, -0.108835, -0.151559), },
    Vertex { position: (4.460582, 2.622875, 0.957002),
             normal: (-0.199236, -0.974239, -0.105658), },
    Vertex { position: (4.460786, 2.695616, 0.949972),
             normal: (-0.850433, -0.132742, 0.509061), },
    Vertex { position: (4.342998, 2.664049, 0.904347),
             normal: (-0.927379, -0.346541, 0.14099), },
    Vertex { position: (4.460582, 2.622875, 0.957002),
             normal: (-0.199236, -0.974239, -0.105658), },
    Vertex { position: (4.342998, 2.664049, 0.904347),
             normal: (-0.927379, -0.346541, 0.14099), },
    Vertex { position: (4.343217, 2.589542, 0.893106),
             normal: (-0.942162, -0.29295, -0.162822), },
    Vertex { position: (4.615662, 2.63387, 0.977986),
             normal: (0.361848, -0.921221, -0.142892), },
    Vertex { position: (4.6248, 2.708372, 0.989445),
             normal: (-0.822149, -0.367113, 0.435086), },
    Vertex { position: (4.460786, 2.695616, 0.949972),
             normal: (-0.850433, -0.132742, 0.509061), },
    Vertex { position: (4.615662, 2.63387, 0.977986),
             normal: (0.361848, -0.921221, -0.142892), },
    Vertex { position: (4.460786, 2.695616, 0.949972),
             normal: (-0.850433, -0.132742, 0.509061), },
    Vertex { position: (4.460582, 2.622875, 0.957002),
             normal: (-0.199236, -0.974239, -0.105658), },
    Vertex { position: (4.244622, 2.554467, 0.811726),
             normal: (-0.982438, -0.108835, -0.151559), },
    Vertex { position: (4.235494, 2.636171, 0.803613),
             normal: (-0.601432, -0.796051, 0.067694), },
    Vertex { position: (4.138494, 2.557838, 0.652651),
             normal: (-0.501842, -0.819591, 0.27645), },
    Vertex { position: (4.244622, 2.554467, 0.811726),
             normal: (-0.982438, -0.108835, -0.151559), },
    Vertex { position: (4.138494, 2.557838, 0.652651),
             normal: (-0.501842, -0.819591, 0.27645), },
    Vertex { position: (4.138687, 2.474013, 0.642311),
             normal: (-0.668254, -0.729938, -0.143622), },
    Vertex { position: (4.121994, 2.458034, 0.570029),
             normal: (-0.973393, -0.128296, 0.18986), },
    Vertex { position: (4.138687, 2.474013, 0.642311),
             normal: (-0.668254, -0.729938, -0.143622), },
    Vertex { position: (4.138494, 2.557838, 0.652651),
             normal: (-0.501842, -0.819591, 0.27645), },
    Vertex { position: (4.121994, 2.458034, 0.570029),
             normal: (-0.973393, -0.128296, 0.18986), },
    Vertex { position: (4.138494, 2.557838, 0.652651),
             normal: (-0.501842, -0.819591, 0.27645), },
    Vertex { position: (4.104292, 2.537976, 0.543437),
             normal: (-0.075112, -0.981815, 0.174346), },
    Vertex { position: (4.07851, 2.41181, 0.472193),
             normal: (-0.138401, -0.989733, 0.035683), },
    Vertex { position: (4.121994, 2.458034, 0.570029),
             normal: (-0.973393, -0.128296, 0.18986), },
    Vertex { position: (4.104292, 2.537976, 0.543437),
             normal: (-0.075112, -0.981815, 0.174346), },
    Vertex { position: (4.07851, 2.41181, 0.472193),
             normal: (-0.138401, -0.989733, 0.035683), },
    Vertex { position: (4.104292, 2.537976, 0.543437),
             normal: (-0.075112, -0.981815, 0.174346), },
    Vertex { position: (4.088356, 2.510913, 0.453793),
             normal: (0.207048, -0.965263, 0.159371), },
    Vertex { position: (4.615662, 2.63387, 0.977986),
             normal: (0.361848, -0.921221, -0.142892), },
    Vertex { position: (4.735139, 2.645464, 0.95089),
             normal: (-0.124529, -0.930217, 0.345238), },
    Vertex { position: (4.753015, 2.699695, 0.973279),
             normal: (0.846486, -0.14409, -0.512541), },
    Vertex { position: (4.615662, 2.63387, 0.977986),
             normal: (0.361848, -0.921221, -0.142892), },
    Vertex { position: (4.753015, 2.699695, 0.973279),
             normal: (0.846486, -0.14409, -0.512541), },
    Vertex { position: (4.6248, 2.708372, 0.989445),
             normal: (-0.822149, -0.367113, 0.435086), },
    Vertex { position: (4.854957, 2.660227, 0.92431),
             normal: (0.186393, -0.974436, -0.125429), },
    Vertex { position: (4.863709, 2.722151, 0.93666),
             normal: (0.728229, -0.106722, -0.676973), },
    Vertex { position: (4.753015, 2.699695, 0.973279),
             normal: (0.846486, -0.14409, -0.512541), },
    Vertex { position: (4.854957, 2.660227, 0.92431),
             normal: (0.186393, -0.974436, -0.125429), },
    Vertex { position: (4.753015, 2.699695, 0.973279),
             normal: (0.846486, -0.14409, -0.512541), },
    Vertex { position: (4.735139, 2.645464, 0.95089),
             normal: (-0.124529, -0.930217, 0.345238), },
    Vertex { position: (4.209941, 2.600612, 0.337597),
             normal: (-0.904972, -0.026555, 0.424641), },
    Vertex { position: (4.117367, 2.568514, 0.3845),
             normal: (0.576293, -0.081905, -0.813128), },
    Vertex { position: (4.151183, 2.579059, 0.494606),
             normal: (0.42646, -0.865041, 0.264264), },
    Vertex { position: (4.209941, 2.600612, 0.337597),
             normal: (-0.904972, -0.026555, 0.424641), },
    Vertex { position: (4.151183, 2.579059, 0.494606),
             normal: (0.42646, -0.865041, 0.264264), },
    Vertex { position: (4.22473, 2.624525, 0.491916),
             normal: (-0.778386, 0.466325, 0.420305), },
    Vertex { position: (4.509555, 2.719807, 0.819972),
             normal: (-0.940256, 0.335069, -0.060403), },
    Vertex { position: (4.462368, 2.725999, 0.882675),
             normal: (-0.266521, -0.953514, 0.14063), },
    Vertex { position: (4.616626, 2.749486, 0.939333),
             normal: (0.078387, -0.886884, 0.455294), },
    Vertex { position: (4.509555, 2.719807, 0.819972),
             normal: (-0.940256, 0.335069, -0.060403), },
    Vertex { position: (4.616626, 2.749486, 0.939333),
             normal: (0.078387, -0.886884, 0.455294), },
    Vertex { position: (4.636909, 2.750501, 0.856859),
             normal: (-0.894795, 0.444359, -0.043442), },
    Vertex { position: (4.418954, 2.707401, 0.782531),
             normal: (-0.31499, 0.894135, -0.318282), },
    Vertex { position: (4.354196, 2.711836, 0.826545),
             normal: (-0.393317, -0.870591, -0.295589), },
    Vertex { position: (4.462368, 2.725999, 0.882675),
             normal: (-0.266521, -0.953514, 0.14063), },
    Vertex { position: (4.418954, 2.707401, 0.782531),
             normal: (-0.31499, 0.894135, -0.318282), },
    Vertex { position: (4.462368, 2.725999, 0.882675),
             normal: (-0.266521, -0.953514, 0.14063), },
    Vertex { position: (4.509555, 2.719807, 0.819972),
             normal: (-0.940256, 0.335069, -0.060403), },
    Vertex { position: (4.35668, 2.682996, 0.71905),
             normal: (-0.671788, 0.737297, 0.07138), },
    Vertex { position: (4.273414, 2.686575, 0.753674),
             normal: (-0.180888, -0.792822, -0.58199), },
    Vertex { position: (4.354196, 2.711836, 0.826545),
             normal: (-0.393317, -0.870591, -0.295589), },
    Vertex { position: (4.35668, 2.682996, 0.71905),
             normal: (-0.671788, 0.737297, 0.07138), },
    Vertex { position: (4.354196, 2.711836, 0.826545),
             normal: (-0.393317, -0.870591, -0.295589), },
    Vertex { position: (4.418954, 2.707401, 0.782531),
             normal: (-0.31499, 0.894135, -0.318282), },
    Vertex { position: (4.176065, 2.636883, 0.618384),
             normal: (0.333262, -0.530645, -0.779328), },
    Vertex { position: (4.277169, 2.652435, 0.591369),
             normal: (0.225135, 0.965893, 0.127928), },
    Vertex { position: (4.22473, 2.624525, 0.491916),
             normal: (-0.778386, 0.466325, 0.420305), },
    Vertex { position: (4.176065, 2.636883, 0.618384),
             normal: (0.333262, -0.530645, -0.779328), },
    Vertex { position: (4.22473, 2.624525, 0.491916),
             normal: (-0.778386, 0.466325, 0.420305), },
    Vertex { position: (4.151183, 2.579059, 0.494606),
             normal: (0.42646, -0.865041, 0.264264), },
    Vertex { position: (4.104292, 2.537976, 0.543437),
             normal: (-0.075112, -0.981815, 0.174346), },
    Vertex { position: (4.151183, 2.579059, 0.494606),
             normal: (0.42646, -0.865041, 0.264264), },
    Vertex { position: (4.117367, 2.568514, 0.3845),
             normal: (0.576293, -0.081905, -0.813128), },
    Vertex { position: (4.104292, 2.537976, 0.543437),
             normal: (-0.075112, -0.981815, 0.174346), },
    Vertex { position: (4.117367, 2.568514, 0.3845),
             normal: (0.576293, -0.081905, -0.813128), },
    Vertex { position: (4.088356, 2.510913, 0.453793),
             normal: (0.207048, -0.965263, 0.159371), },
    Vertex { position: (4.273414, 2.686575, 0.753674),
             normal: (-0.180888, -0.792822, -0.58199), },
    Vertex { position: (4.35668, 2.682996, 0.71905),
             normal: (-0.671788, 0.737297, 0.07138), },
    Vertex { position: (4.277169, 2.652435, 0.591369),
             normal: (0.225135, 0.965893, 0.127928), },
    Vertex { position: (4.273414, 2.686575, 0.753674),
             normal: (-0.180888, -0.792822, -0.58199), },
    Vertex { position: (4.277169, 2.652435, 0.591369),
             normal: (0.225135, 0.965893, 0.127928), },
    Vertex { position: (4.176065, 2.636883, 0.618384),
             normal: (0.333262, -0.530645, -0.779328), },
    Vertex { position: (4.138494, 2.557838, 0.652651),
             normal: (-0.501842, -0.819591, 0.27645), },
    Vertex { position: (4.176065, 2.636883, 0.618384),
             normal: (0.333262, -0.530645, -0.779328), },
    Vertex { position: (4.151183, 2.579059, 0.494606),
             normal: (0.42646, -0.865041, 0.264264), },
    Vertex { position: (4.138494, 2.557838, 0.652651),
             normal: (-0.501842, -0.819591, 0.27645), },
    Vertex { position: (4.151183, 2.579059, 0.494606),
             normal: (0.42646, -0.865041, 0.264264), },
    Vertex { position: (4.104292, 2.537976, 0.543437),
             normal: (-0.075112, -0.981815, 0.174346), },
    Vertex { position: (4.235494, 2.636171, 0.803613),
             normal: (-0.601432, -0.796051, 0.067694), },
    Vertex { position: (4.273414, 2.686575, 0.753674),
             normal: (-0.180888, -0.792822, -0.58199), },
    Vertex { position: (4.176065, 2.636883, 0.618384),
             normal: (0.333262, -0.530645, -0.779328), },
    Vertex { position: (4.235494, 2.636171, 0.803613),
             normal: (-0.601432, -0.796051, 0.067694), },
    Vertex { position: (4.176065, 2.636883, 0.618384),
             normal: (0.333262, -0.530645, -0.779328), },
    Vertex { position: (4.138494, 2.557838, 0.652651),
             normal: (-0.501842, -0.819591, 0.27645), },
    Vertex { position: (4.342998, 2.664049, 0.904347),
             normal: (-0.927379, -0.346541, 0.14099), },
    Vertex { position: (4.354196, 2.711836, 0.826545),
             normal: (-0.393317, -0.870591, -0.295589), },
    Vertex { position: (4.273414, 2.686575, 0.753674),
             normal: (-0.180888, -0.792822, -0.58199), },
    Vertex { position: (4.342998, 2.664049, 0.904347),
             normal: (-0.927379, -0.346541, 0.14099), },
    Vertex { position: (4.273414, 2.686575, 0.753674),
             normal: (-0.180888, -0.792822, -0.58199), },
    Vertex { position: (4.235494, 2.636171, 0.803613),
             normal: (-0.601432, -0.796051, 0.067694), },
    Vertex { position: (4.460786, 2.695616, 0.949972),
             normal: (-0.850433, -0.132742, 0.509061), },
    Vertex { position: (4.462368, 2.725999, 0.882675),
             normal: (-0.266521, -0.953514, 0.14063), },
    Vertex { position: (4.354196, 2.711836, 0.826545),
             normal: (-0.393317, -0.870591, -0.295589), },
    Vertex { position: (4.460786, 2.695616, 0.949972),
             normal: (-0.850433, -0.132742, 0.509061), },
    Vertex { position: (4.354196, 2.711836, 0.826545),
             normal: (-0.393317, -0.870591, -0.295589), },
    Vertex { position: (4.342998, 2.664049, 0.904347),
             normal: (-0.927379, -0.346541, 0.14099), },
    Vertex { position: (4.616626, 2.749486, 0.939333),
             normal: (0.078387, -0.886884, 0.455294), },
    Vertex { position: (4.735445, 2.749285, 0.940329),
             normal: (0.136995, -0.968757, -0.206741), },
    Vertex { position: (4.719171, 2.751091, 0.865965),
             normal: (-0.463096, -0.149333, 0.873637), },
    Vertex { position: (4.616626, 2.749486, 0.939333),
             normal: (0.078387, -0.886884, 0.455294), },
    Vertex { position: (4.719171, 2.751091, 0.865965),
             normal: (-0.463096, -0.149333, 0.873637), },
    Vertex { position: (4.636909, 2.750501, 0.856859),
             normal: (-0.894795, 0.444359, -0.043442), },
    Vertex { position: (4.719171, 2.751091, 0.865965),
             normal: (-0.463096, -0.149333, 0.873637), },
    Vertex { position: (4.735445, 2.749285, 0.940329),
             normal: (0.136995, -0.968757, -0.206741), },
    Vertex { position: (4.827733, 2.75439, 0.905049),
             normal: (-0.460229, -0.015586, -0.887663), },
    Vertex { position: (4.719171, 2.751091, 0.865965),
             normal: (-0.463096, -0.149333, 0.873637), },
    Vertex { position: (4.827733, 2.75439, 0.905049),
             normal: (-0.460229, -0.015586, -0.887663), },
    Vertex { position: (4.801436, 2.750224, 0.858918),
             normal: (-0.862876, -0.450622, 0.228877), },
    Vertex { position: (5.096148, 2.75972, 0.774729),
             normal: (-0.916647, -0.2944, 0.270344), },
    Vertex { position: (4.801436, 2.750224, 0.858918),
             normal: (-0.862876, -0.450622, 0.228877), },
    Vertex { position: (4.827733, 2.75439, 0.905049),
             normal: (-0.460229, -0.015586, -0.887663), },
    Vertex { position: (4.460786, 2.695616, 0.949972),
             normal: (-0.850433, -0.132742, 0.509061), },
    Vertex { position: (4.6248, 2.708372, 0.989445),
             normal: (-0.822149, -0.367113, 0.435086), },
    Vertex { position: (4.616626, 2.749486, 0.939333),
             normal: (0.078387, -0.886884, 0.455294), },
    Vertex { position: (4.460786, 2.695616, 0.949972),
             normal: (-0.850433, -0.132742, 0.509061), },
    Vertex { position: (4.616626, 2.749486, 0.939333),
             normal: (0.078387, -0.886884, 0.455294), },
    Vertex { position: (4.462368, 2.725999, 0.882675),
             normal: (-0.266521, -0.953514, 0.14063), },
    Vertex { position: (4.6248, 2.708372, 0.989445),
             normal: (-0.822149, -0.367113, 0.435086), },
    Vertex { position: (4.753015, 2.699695, 0.973279),
             normal: (0.846486, -0.14409, -0.512541), },
    Vertex { position: (4.735445, 2.749285, 0.940329),
             normal: (0.136995, -0.968757, -0.206741), },
    Vertex { position: (4.6248, 2.708372, 0.989445),
             normal: (-0.822149, -0.367113, 0.435086), },
    Vertex { position: (4.735445, 2.749285, 0.940329),
             normal: (0.136995, -0.968757, -0.206741), },
    Vertex { position: (4.616626, 2.749486, 0.939333),
             normal: (0.078387, -0.886884, 0.455294), },
    Vertex { position: (4.827733, 2.75439, 0.905049),
             normal: (-0.460229, -0.015586, -0.887663), },
    Vertex { position: (4.735445, 2.749285, 0.940329),
             normal: (0.136995, -0.968757, -0.206741), },
    Vertex { position: (4.753015, 2.699695, 0.973279),
             normal: (0.846486, -0.14409, -0.512541), },
    Vertex { position: (4.827733, 2.75439, 0.905049),
             normal: (-0.460229, -0.015586, -0.887663), },
    Vertex { position: (4.753015, 2.699695, 0.973279),
             normal: (0.846486, -0.14409, -0.512541), },
    Vertex { position: (4.863709, 2.722151, 0.93666),
             normal: (0.728229, -0.106722, -0.676973), },
    Vertex { position: (5.096148, 2.75972, 0.774729),
             normal: (-0.916647, -0.2944, 0.270344), },
    Vertex { position: (4.827733, 2.75439, 0.905049),
             normal: (-0.460229, -0.015586, -0.887663), },
    Vertex { position: (4.863709, 2.722151, 0.93666),
             normal: (0.728229, -0.106722, -0.676973), },
    Vertex { position: (5.096148, 2.75972, 0.774729),
             normal: (-0.916647, -0.2944, 0.270344), },
    Vertex { position: (4.863709, 2.722151, 0.93666),
             normal: (0.728229, -0.106722, -0.676973), },
    Vertex { position: (4.854957, 2.660227, 0.92431),
             normal: (0.186393, -0.974436, -0.125429), },
    Vertex { position: (5.096148, 2.75972, 0.774729),
             normal: (-0.916647, -0.2944, 0.270344), },
    Vertex { position: (4.829566, 2.580797, 0.821827),
             normal: (-0.274209, -0.939323, -0.20611), },
    Vertex { position: (4.821336, 2.621498, 0.789636),
             normal: (-0.791764, -0.610494, -0.020171), },
    Vertex { position: (5.096148, 2.75972, 0.774729),
             normal: (-0.916647, -0.2944, 0.270344), },
    Vertex { position: (4.856249, 2.593812, 0.867067),
             normal: (-0.274209, -0.939323, -0.20611), },
];