m26.fbx
302 KB
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
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
; FBX 6.1.0 project file
; Created by Blender FBX Exporter
; for support mail: ideasman42@gmail.com
; ----------------------------------------------------
FBXHeaderExtension: {
FBXHeaderVersion: 1003
FBXVersion: 6100
CreationTimeStamp: {
Version: 1000
Year: 2016
Month: 12
Day: 07
Hour: 11
Minute: 43
Second: 37
Millisecond: 0
}
Creator: "FBX SDK/FBX Plugins build 20070228"
OtherFlags: {
FlagPLE: 0
}
}
CreationTime: "2016-12-07 11:43:37:000"
Creator: "Blender version 2.78 (sub 0)"
; Object definitions
;------------------------------------------------------------------
Definitions: {
Version: 100
Count: 6
ObjectType: "Model" {
Count: 4
}
ObjectType: "Geometry" {
Count: 4
}
ObjectType: "Material" {
Count: 1
}
ObjectType: "Pose" {
Count: 1
}
ObjectType: "GlobalSettings" {
Count: 1
}
}
; Object properties
;------------------------------------------------------------------
Objects: {
Model: "Model::m61_ring", "Mesh" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",0.087882995605469,5.224352359771729,0.657974720001221
Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
Property: "RotationOffset", "Vector3D", "",0,0,0
Property: "RotationPivot", "Vector3D", "",0,0,0
Property: "ScalingOffset", "Vector3D", "",0,0,0
Property: "ScalingPivot", "Vector3D", "",0,0,0
Property: "TranslationActive", "bool", "",0
Property: "TranslationMin", "Vector3D", "",0,0,0
Property: "TranslationMax", "Vector3D", "",0,0,0
Property: "TranslationMinX", "bool", "",0
Property: "TranslationMinY", "bool", "",0
Property: "TranslationMinZ", "bool", "",0
Property: "TranslationMaxX", "bool", "",0
Property: "TranslationMaxY", "bool", "",0
Property: "TranslationMaxZ", "bool", "",0
Property: "RotationOrder", "enum", "",0
Property: "RotationSpaceForLimitOnly", "bool", "",0
Property: "AxisLen", "double", "",10
Property: "PreRotation", "Vector3D", "",0,0,0
Property: "PostRotation", "Vector3D", "",0,0,0
Property: "RotationActive", "bool", "",0
Property: "RotationMin", "Vector3D", "",0,0,0
Property: "RotationMax", "Vector3D", "",0,0,0
Property: "RotationMinX", "bool", "",0
Property: "RotationMinY", "bool", "",0
Property: "RotationMinZ", "bool", "",0
Property: "RotationMaxX", "bool", "",0
Property: "RotationMaxY", "bool", "",0
Property: "RotationMaxZ", "bool", "",0
Property: "RotationStiffnessX", "double", "",0
Property: "RotationStiffnessY", "double", "",0
Property: "RotationStiffnessZ", "double", "",0
Property: "MinDampRangeX", "double", "",0
Property: "MinDampRangeY", "double", "",0
Property: "MinDampRangeZ", "double", "",0
Property: "MaxDampRangeX", "double", "",0
Property: "MaxDampRangeY", "double", "",0
Property: "MaxDampRangeZ", "double", "",0
Property: "MinDampStrengthX", "double", "",0
Property: "MinDampStrengthY", "double", "",0
Property: "MinDampStrengthZ", "double", "",0
Property: "MaxDampStrengthX", "double", "",0
Property: "MaxDampStrengthY", "double", "",0
Property: "MaxDampStrengthZ", "double", "",0
Property: "PreferedAngleX", "double", "",0
Property: "PreferedAngleY", "double", "",0
Property: "PreferedAngleZ", "double", "",0
Property: "InheritType", "enum", "",0
Property: "ScalingActive", "bool", "",0
Property: "ScalingMin", "Vector3D", "",1,1,1
Property: "ScalingMax", "Vector3D", "",1,1,1
Property: "ScalingMinX", "bool", "",0
Property: "ScalingMinY", "bool", "",0
Property: "ScalingMinZ", "bool", "",0
Property: "ScalingMaxX", "bool", "",0
Property: "ScalingMaxY", "bool", "",0
Property: "ScalingMaxZ", "bool", "",0
Property: "GeometricTranslation", "Vector3D", "",0,0,0
Property: "GeometricRotation", "Vector3D", "",0,0,0
Property: "GeometricScaling", "Vector3D", "",1,1,1
Property: "LookAtProperty", "object", ""
Property: "UpVectorProperty", "object", ""
Property: "Show", "bool", "",1
Property: "NegativePercentShapeSupport", "bool", "",1
Property: "DefaultAttributeIndex", "int", "",0
Property: "Color", "Color", "A",0.8,0.8,0.8
Property: "Size", "double", "",100
Property: "Look", "enum", "",1
}
MultiLayer: 0
MultiTake: 1
Shading: Y
Culling: "CullingOff"
Vertices: -1.410302,0.694797,-2.585182,-1.469494,0.692586,-2.579796,-1.434455,1.058204,-2.370190,-1.375651,1.055150,-2.378578,
-1.348327,1.357937,-2.084568,-1.290647,1.350553,-2.097063,-1.216823,1.570538,-1.743474,-1.160922,1.560061,-1.760882,
-1.048884,1.680955,-1.371395,-0.995293,1.668847,-1.394178,-0.856050,1.681415,-0.995027,-0.805133,1.669253,-1.023262,
-0.651628,1.571973,-0.641372,-0.603559,1.561339,-0.674749,-0.449751,1.360504,-0.335814,-0.404504,1.352870,-0.373655,
-0.264374,1.062154,-0.100311,-0.221718,1.058777,-0.141624,-0.108277,0.698248,0.048163,-0.067798,0.700086,0.004622,
0.007850,0.294781,0.098830,0.046719,0.302415,0.054460,0.076156,-0.119436,0.047878,0.114101,-0.105833,0.004141,
0.092199,-0.514829,-0.101273,0.129966,-0.495510,-0.142962,0.055255,-0.863159,-0.338208,0.093606,-0.838785,-0.376583,
-0.031627,-1.139545,-0.646270,0.008029,-1.111136,-0.680297,-0.161843,-1.324219,-1.003729,-0.120253,-1.293083,-1.032686,
-0.325700,-1.403949,-1.385347,-0.281689,-1.371588,-1.408871,-0.511118,-1.372972,-1.764158,-0.464367,-1.340973,-1.782274,
-0.704475,-1.233407,-2.113405,-0.654864,-1.203333,-2.126522,-0.891587,-0.995100,-2.408426,-0.839194,-0.968380,-2.417311,
-1.058711,-0.674934,-2.628427,-1.003821,-0.652755,-2.634145,-1.193535,-0.295612,-2.757952,-1.136602,-0.278837,-2.761794,
-1.286040,0.115944,-2.787984,-1.227666,0.126838,-2.791379,-1.329218,0.530525,-2.716593,-1.270110,0.535475,-2.720998,
-1.319577,0.918701,-2.549067,-1.260494,0.918070,-2.555866,-1.257388,1.252923,-2.297540,-1.199083,1.247470,-2.307949,
-1.146656,1.509485,-1.980125,-1.089829,1.500315,-1.995104,-0.994845,1.670208,-1.619626,-0.940094,1.658690,-1.639807,
-0.812344,1.723738,-1.241914,-0.760116,1.711403,-1.267559,-0.611728,1.666349,-0.874085,-0.562289,1.654791,-0.905068,
-1.364330,0.680048,-2.550443,-1.330615,1.027691,-2.351090,-1.248326,1.312635,-2.079484,-1.122898,1.514682,-1.755172,
-0.962846,1.619531,-1.401443,-0.779141,1.619808,-1.043691,-0.584444,1.515581,-0.707591,-0.392198,1.314353,-0.417277,
-0.215668,1.030540,-0.193621,-0.067005,0.684433,-0.052756,0.043628,0.300760,-0.004915,0.108774,-0.093078,-0.053710,
0.124212,-0.468957,-0.195873,0.089265,-0.800029,-0.421492,0.006839,-1.062637,-0.714709,-0.116778,-1.238001,-1.054857,
-0.272369,-1.313545,-1.417925,-0.448435,-1.283809,-1.778273,-0.632022,-1.150820,-2.110453,-0.809646,-0.923958,-2.391020,
-0.968234,-0.619292,-2.600210,-1.096084,-0.258419,-2.723336,-1.183672,0.133052,-2.751837,-1.224342,0.527340,-2.683892,
-1.214782,0.896461,-2.524543,-1.155251,1.214224,-2.285341,-1.049571,1.458092,-1.983524,-0.904843,1.610792,-1.640784,
-0.730954,1.661538,-1.281728,-0.539864,1.606806,-0.932124,-1.358509,0.656979,-2.495930,-1.325732,0.991914,-2.303827,
-1.246157,1.266398,-2.042133,-1.125028,1.460982,-1.729686,-0.970548,1.561895,-1.388934,-0.793300,1.562045,-1.044347,
-0.605482,1.461502,-0.720659,-0.420044,1.267516,-0.441121,-0.249770,0.993983,-0.225845,-0.106366,0.660463,-0.090358,
0.000385,0.290784,-0.044514,0.063295,-0.088644,-0.091786,0.078307,-0.450724,-0.229009,0.044773,-0.769591,-0.446626,
-0.034501,-1.022461,-0.729348,-0.153455,-1.191238,-1.057254,-0.303199,-1.263824,-1.407206,-0.472652,-1.234964,-1.754497,
-0.649334,-1.106626,-2.074606,-0.820246,-0.887856,-2.344956,-0.972800,-0.594148,-2.546501,-1.095717,-0.246322,-2.665102,
-1.179828,0.130947,-2.692519,-1.218725,0.510885,-2.627011,-1.209221,0.866533,-2.473444,-1.151570,1.172657,-2.242958,
-1.049463,1.407548,-1.952170,-0.909743,1.554575,-1.621989,-0.741944,1.603352,-1.276124,-0.557591,1.550497,-0.939408,
-1.396248,0.639105,-2.453577,-1.363859,0.968774,-2.264477,-1.285407,1.238927,-2.006888,-1.166060,1.430418,-1.699355,
-1.013891,1.529702,-1.363980,-0.839316,1.529798,-1.024842,-0.654346,1.430784,-0.706297,-0.471729,1.239798,-0.431225,
-0.304047,0.970522,-0.219417,-0.162817,0.642212,-0.086159,-0.057678,0.278333,-0.041144,0.004305,-0.095126,-0.087782,
0.019142,-0.451492,-0.222959,-0.013806,-0.765304,-0.437262,-0.091778,-1.014137,-0.715637,-0.208798,-1.180187,-1.038472,
-0.356120,-1.251547,-1.382990,-0.522834,-1.223052,-1.724873,-0.696656,-1.096639,-2.039986,-0.864788,-0.881223,-2.306100,
-1.014842,-0.592054,-2.504479,-1.135717,-0.249632,-2.621205,-1.218387,0.121754,-2.648176,-1.256551,0.495751,-2.583675,
-1.247069,0.845817,-2.432503,-1.190198,1.147120,-2.205629,-1.089569,1.378293,-1.919409,-0.951924,1.522969,-1.594428,
-0.786646,1.570932,-1.254028,-0.605083,1.518856,-0.922650,-1.455442,0.636894,-2.448191,-1.422664,0.971828,-2.256087,
-1.343090,1.246313,-1.994393,-1.221960,1.440894,-1.681947,-1.067480,1.541811,-1.341194,-0.890233,1.541958,-0.996607,
-0.702415,1.441417,-0.672919,-0.516977,1.247432,-0.393382,-0.346703,0.973898,-0.178105,-0.203298,0.640376,-0.042618,
-0.096548,0.270699,0.003225,-0.033638,-0.108729,-0.044046,-0.018626,-0.470809,-0.181270,-0.052159,-0.789678,-0.398886,
-0.131434,-1.042545,-0.681608,-0.250387,-1.211323,-1.009514,-0.400131,-1.283909,-1.359466,-0.569585,-1.255049,-1.706757,
-0.746267,-1.126711,-2.026869,-0.917179,-0.907943,-2.297217,-1.069733,-0.614235,-2.498762,-1.192650,-0.266407,-2.617362,
-1.276761,0.110862,-2.644779,-1.315657,0.490800,-2.579271,-1.306154,0.846448,-2.425704,-1.248503,1.152572,-2.195220,
-1.146395,1.387463,-1.904430,-1.006678,1.534488,-1.574249,-0.838877,1.583266,-1.228384,-0.654523,1.530412,-0.891668,
-1.501414,0.651644,-2.482930,-1.467700,0.999285,-2.283575,-1.385410,1.284229,-2.011972,-1.259982,1.486276,-1.687657,
-1.099930,1.591125,-1.333929,-0.916224,1.591402,-0.976178,-0.721528,1.487175,-0.640076,-0.529283,1.285949,-0.349762,
-0.352752,1.002136,-0.126106,-0.204089,0.656029,0.014758,-0.093456,0.272354,0.062600,-0.028311,-0.121484,0.013805,
-0.012872,-0.497363,-0.128359,-0.047819,-0.828435,-0.353977,-0.130243,-1.091043,-0.647196,-0.253862,-1.266405,-0.987343,
-0.409451,-1.341952,-1.350412,-0.585517,-1.312215,-1.710758,-0.769107,-1.179224,-2.042938,-0.946727,-0.952365,-2.323506,
-1.105319,-0.647696,-2.532697,-1.233168,-0.286825,-2.655821,-1.320756,0.104646,-2.684323,-1.361426,0.498934,-2.616378,
-1.351866,0.868057,-2.457029,-1.292336,1.185818,-2.217828,-1.186653,1.429686,-1.916009,-1.041927,1.582386,-1.573271,
-0.868038,1.633132,-1.214215,-0.676946,1.578399,-0.864611,-1.507235,0.674712,-2.537442,-1.472584,1.035065,-2.330838,
-1.387580,1.330465,-2.049324,-1.257854,1.539976,-1.713143,-1.092225,1.648762,-1.346438,-0.902065,1.649168,-0.975523,
-0.700491,1.541252,-0.627010,-0.501436,1.332785,-0.325915,-0.318651,1.038692,-0.093884,-0.164731,0.679999,0.052362,
-0.050213,0.282330,0.102200,0.017168,-0.125918,0.051881,0.033034,-0.515595,-0.095223,-0.003327,-0.858873,-0.328844,
-0.088903,-1.131222,-0.632557,-0.217185,-1.313169,-0.984947,-0.378622,-1.391673,-1.361131,-0.561300,-1.361061,-1.734534,
-0.751796,-1.223420,-2.078783,-0.936127,-0.988467,-2.369572,-1.100753,-0.672840,-2.586406,-1.233535,-0.298923,-2.714055,
-1.324599,0.106753,-2.743639,-1.367042,0.515388,-2.673259,-1.357427,0.897985,-2.508126,-1.296016,1.227385,-2.260209,
-1.186761,1.480230,-1.947363,-1.037026,1.638602,-1.592067,-0.857049,1.691318,-1.219819,-0.659222,1.634706,-0.857329,
-1.489483,0.274978,-2.654218,-1.451370,0.287030,-2.698261,-1.374416,-0.165665,-2.713270,-1.413774,-0.171242,-2.669026,
-1.243823,-0.593617,-2.608952,-1.285186,-0.593093,-2.566216,-1.071175,-0.960998,-2.393764,-1.115143,-0.955260,-2.354121,
-0.871600,-1.237065,-2.085484,-0.918550,-1.227441,-2.050259,-0.662485,-1.398753,-1.709705,-0.712544,-1.386893,-1.679854,
-0.462017,-1.432605,-1.297703,-0.515050,-1.420350,-1.273727,-1.484570,0.265964,-2.595632,-1.411857,-0.164620,-2.609948,
-1.288115,-0.571740,-2.510780,-1.124359,-0.921321,-2.306154,-0.934963,-1.184116,-2.012960,-0.736464,-1.338173,-1.655526,
-0.546154,-1.370678,-1.263583,-1.439504,0.265271,-2.556821,-1.369790,-0.149676,-2.570644,-1.250893,-0.542068,-2.475116,
-1.093423,-0.879062,-2.277960,-0.911227,-1.132471,-1.995433,-0.720234,-1.281134,-1.650971,-0.537107,-1.312686,-1.273213,
-1.380687,0.273304,-2.560521,-1.312214,-0.135166,-2.574140,-1.195325,-0.521458,-2.480119,-1.040458,-0.853238,-2.286057,
-0.861245,-1.102760,-2.007949,-0.673360,-1.249187,-1.668860,-0.493210,-1.280345,-1.296976,-1.342571,0.285356,-2.604561,
-1.272858,-0.129591,-2.618384,-1.153960,-0.521983,-2.522857,-0.996488,-0.858975,-2.325700,-0.814294,-1.112386,-2.043173,
-0.623302,-1.261049,-1.698711,-0.440175,-1.292601,-1.320952,-1.347486,0.294370,-2.663147,-1.274773,-0.136213,-2.677463,
-1.151031,-0.543334,-2.578293,-0.987274,-0.892915,-2.373667,-0.797881,-1.155710,-2.080473,-0.599380,-1.309767,-1.723041,
-0.409072,-1.342273,-1.331095,-1.392551,0.295064,-2.701958,-1.316842,-0.151157,-2.716766,-1.188253,-0.573008,-2.613956,
-1.018210,-0.935173,-2.401860,-0.821618,-1.207353,-2.097999,-0.615611,-1.366808,-1.727594,-0.418118,-1.400265,-1.321465
PolygonVertexIndex: 0,1,2,-4,3,2,4,-6,5,4,6,-8,7,6,8,-10,9,8,10,-12,11,10,12,-14,13,12,14,-16,15,14,16,-18,
17,16,18,-20,19,18,20,-22,21,20,22,-24,23,22,24,-26,25,24,26,-28,27,26,28,-30,29,28,30,-32,31,30,32,-34,
33,32,34,-36,35,34,36,-38,37,36,38,-40,39,38,40,-42,41,40,42,-44,43,42,44,-46,45,44,46,-48,47,46,48,-50,
49,48,50,-52,51,50,52,-54,53,52,54,-56,55,54,56,-58,57,56,58,-60,60,0,3,-62,61,3,5,-63,62,5,7,-64,
63,7,9,-65,64,9,11,-66,65,11,13,-67,66,13,15,-68,67,15,17,-69,68,17,19,-70,69,19,21,-71,70,21,23,-72,
71,23,25,-73,72,25,27,-74,73,27,29,-75,74,29,31,-76,75,31,33,-77,76,33,35,-78,77,35,37,-79,78,37,39,-80,
79,39,41,-81,80,41,43,-82,81,43,45,-83,82,45,47,-84,83,47,49,-85,84,49,51,-86,85,51,53,-87,86,53,55,-88,
87,55,57,-89,88,57,59,-90,90,60,61,-92,91,61,62,-93,92,62,63,-94,93,63,64,-95,94,64,65,-96,95,65,66,-97,
96,66,67,-98,97,67,68,-99,98,68,69,-100,99,69,70,-101,100,70,71,-102,101,71,72,-103,102,72,73,-104,103,73,74,-105,
104,74,75,-106,105,75,76,-107,106,76,77,-108,107,77,78,-109,108,78,79,-110,109,79,80,-111,110,80,81,-112,111,81,82,-113,
112,82,83,-114,113,83,84,-115,114,84,85,-116,115,85,86,-117,116,86,87,-118,117,87,88,-119,118,88,89,-120,120,90,91,-122,
121,91,92,-123,122,92,93,-124,123,93,94,-125,124,94,95,-126,125,95,96,-127,126,96,97,-128,127,97,98,-129,128,98,99,-130,
129,99,100,-131,130,100,101,-132,131,101,102,-133,132,102,103,-134,133,103,104,-135,134,104,105,-136,135,105,106,-137,136,106,107,-138,
137,107,108,-139,138,108,109,-140,139,109,110,-141,140,110,111,-142,141,111,112,-143,142,112,113,-144,143,113,114,-145,144,114,115,-146,
145,115,116,-147,146,116,117,-148,147,117,118,-149,148,118,119,-150,150,120,121,-152,151,121,122,-153,152,122,123,-154,153,123,124,-155,
154,124,125,-156,155,125,126,-157,156,126,127,-158,157,127,128,-159,158,128,129,-160,159,129,130,-161,160,130,131,-162,161,131,132,-163,
162,132,133,-164,163,133,134,-165,164,134,135,-166,165,135,136,-167,166,136,137,-168,167,137,138,-169,168,138,139,-170,169,139,140,-171,
170,140,141,-172,171,141,142,-173,172,142,143,-174,173,143,144,-175,174,144,145,-176,175,145,146,-177,176,146,147,-178,177,147,148,-179,
178,148,149,-180,180,150,151,-182,181,151,152,-183,182,152,153,-184,183,153,154,-185,184,154,155,-186,185,155,156,-187,186,156,157,-188,
187,157,158,-189,188,158,159,-190,189,159,160,-191,190,160,161,-192,191,161,162,-193,192,162,163,-194,193,163,164,-195,194,164,165,-196,
195,165,166,-197,196,166,167,-198,197,167,168,-199,198,168,169,-200,199,169,170,-201,200,170,171,-202,201,171,172,-203,202,172,173,-204,
203,173,174,-205,204,174,175,-206,205,175,176,-207,206,176,177,-208,207,177,178,-209,208,178,179,-210,210,180,181,-212,211,181,182,-213,
212,182,183,-214,213,183,184,-215,214,184,185,-216,215,185,186,-217,216,186,187,-218,217,187,188,-219,218,188,189,-220,219,189,190,-221,
220,190,191,-222,221,191,192,-223,222,192,193,-224,223,193,194,-225,224,194,195,-226,225,195,196,-227,226,196,197,-228,227,197,198,-229,
228,198,199,-230,229,199,200,-231,230,200,201,-232,231,201,202,-233,232,202,203,-234,233,203,204,-235,234,204,205,-236,235,205,206,-237,
236,206,207,-238,237,207,208,-239,238,208,209,-240,1,210,211,-3,2,211,212,-5,4,212,213,-7,6,213,214,-9,8,214,215,-11,
10,215,216,-13,12,216,217,-15,14,217,218,-17,16,218,219,-19,18,219,220,-21,20,220,221,-23,22,221,222,-25,24,222,223,-27,
26,223,224,-29,28,224,225,-31,30,225,226,-33,32,226,227,-35,34,227,228,-37,36,228,229,-39,38,229,230,-41,40,230,231,-43,
42,231,232,-45,44,232,233,-47,46,233,234,-49,48,234,235,-51,50,235,236,-53,52,236,237,-55,54,237,238,-57,56,238,239,-59,
240,241,242,-244,243,242,244,-246,245,244,246,-248,247,246,248,-250,249,248,250,-252,251,250,252,-254,254,240,243,-256,255,243,245,-257,
256,245,247,-258,257,247,249,-259,258,249,251,-260,259,251,253,-261,261,254,255,-263,262,255,256,-264,263,256,257,-265,264,257,258,-266,
265,258,259,-267,266,259,260,-268,268,261,262,-270,269,262,263,-271,270,263,264,-272,271,264,265,-273,272,265,266,-274,273,266,267,-275,
275,268,269,-277,276,269,270,-278,277,270,271,-279,278,271,272,-280,279,272,273,-281,280,273,274,-282,282,275,276,-284,283,276,277,-285,
284,277,278,-286,285,278,279,-287,286,279,280,-288,287,280,281,-289,289,282,283,-291,290,283,284,-292,291,284,285,-293,292,285,286,-294,
293,286,287,-295,294,287,288,-296,241,289,290,-243,242,290,291,-245,244,291,292,-247,246,292,293,-249,248,293,294,-251,250,294,295,-253,
289,241,1,-1,282,289,0,-61,275,282,60,-91,268,275,90,-121,261,268,120,-151,254,261,150,-181,240,254,180,-211,241,240,210,-2,
274,252,-282,267,260,-254,253,274,-268,295,288,-282,281,252,-296,252,274,-254,59,58,-180,119,89,-60,59,149,-120,239,209,-180,179,58,
-240,179,149,-60
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: 0.269057,0.372555,-0.888150,-0.471202,0.353752,-0.807978,-0.452842,0.583728,-0.673940,0.281049,0.540027,-0.793337,
0.281049,0.540027,-0.793337,-0.452842,0.583728,-0.673940,-0.402246,0.772149,-0.491919,0.316432,0.678048,-0.663417,
0.316432,0.678048,-0.663417,-0.402246,0.772149,-0.491919,-0.323006,0.905597,-0.274885,0.372695,0.776788,-0.507641,
0.372695,0.776788,-0.507641,-0.323006,0.905597,-0.274885,-0.220767,0.974575,-0.038280,0.445826,0.829217,-0.337102,
0.445826,0.829217,-0.337102,-0.220767,0.974575,-0.038280,-0.102816,0.974170,0.201051,0.530612,0.831610,-0.163939,
0.530612,0.831610,-0.163939,-0.102816,0.974170,0.201051,0.022458,0.904412,0.426070,0.621021,0.783794,-0.000474,
0.621021,0.783794,-0.000474,0.022458,0.904412,0.426070,0.146139,0.770267,0.620751,0.710622,0.689168,0.141648,
0.710622,0.689168,0.141648,0.146139,0.770267,0.620751,0.259417,0.581285,0.771240,0.793037,0.554469,0.252303,
0.793037,0.554469,0.252303,0.259417,0.581285,0.771240,0.354222,0.350917,0.866824,0.862391,0.389292,0.323626,
0.862391,0.389292,0.323626,0.354222,0.350917,0.866824,0.423815,0.095572,0.900692,0.913751,0.205393,0.350533,
0.913751,0.205393,0.350533,0.423815,0.095572,0.900692,0.463237,-0.166579,0.870439,0.943457,0.015864,0.331115,
0.943457,0.015864,0.331115,0.463237,-0.166579,0.870439,0.469684,-0.416871,0.778213,0.949399,-0.165801,0.266744,
0.949399,-0.165801,0.266744,0.469684,-0.416871,0.778213,0.442699,-0.637480,0.630584,0.931152,-0.326665,0.162005,
0.931152,-0.326665,0.162005,0.442699,-0.637480,0.630584,0.384189,-0.812712,0.438062,0.890013,-0.455283,0.024364,
0.890013,-0.455283,0.024364,0.384189,-0.812712,0.438062,0.298324,-0.930082,0.214358,0.828913,-0.542496,-0.136388,
0.828913,-0.542496,-0.136388,0.298324,-0.930082,0.214358,0.191233,-0.981236,-0.024613,0.752203,-0.582089,-0.308808,
0.752203,-0.582089,-0.308808,0.191233,-0.981236,-0.024613,0.070532,-0.962532,-0.261834,0.665343,-0.571250,-0.480616,
0.665343,-0.571250,-0.480616,0.070532,-0.962532,-0.261834,-0.055194,-0.875304,-0.480413,0.574513,-0.510754,-0.639582,
0.574513,-0.510754,-0.639582,-0.055194,-0.875304,-0.480413,-0.176994,-0.725760,-0.664790,0.486185,-0.404899,-0.774391,
0.486185,-0.404899,-0.774391,-0.176994,-0.725760,-0.664790,-0.286184,-0.524548,-0.801840,0.406640,-0.261227,-0.875445,
0.406640,-0.261227,-0.875445,-0.286184,-0.524548,-0.801840,-0.374998,-0.285990,-0.881808,0.341552,-0.089964,-0.935547,
0.341552,-0.089964,-0.935547,-0.374998,-0.285990,-0.881808,-0.437119,-0.027075,-0.898996,0.295546,0.096700,-0.950422,
0.295546,0.096700,-0.950422,-0.437119,-0.027075,-0.898996,-0.468115,0.233775,-0.852184,0.271898,0.285474,-0.919008,
0.271898,0.285474,-0.919008,-0.468115,0.233775,-0.852184,-0.465776,0.477978,-0.744708,0.272295,0.462917,-0.843542,
0.272295,0.462917,-0.843542,-0.465776,0.477978,-0.744708,-0.430284,0.688152,-0.584212,0.296713,0.616393,-0.729398,
0.296713,0.616393,-0.729398,-0.430284,0.688152,-0.584212,-0.364163,0.849335,-0.382121,0.343406,0.734980,-0.584703,
0.343406,0.734980,-0.584703,-0.364163,0.849335,-0.382121,-0.272110,0.950053,-0.152828,0.409045,0.810240,-0.419753,
0.409045,0.810240,-0.419753,-0.272110,0.950053,-0.152828,-0.160674,0.983136,0.087341,0.488970,0.836807,-0.246297,
0.488970,0.836807,-0.246297,-0.160674,0.983136,0.087341,-0.096522,0.974053,0.204707,0.532421,0.831046,-0.160908,
0.866037,0.179334,-0.466711,0.269057,0.372555,-0.888150,0.281049,0.540027,-0.793337,0.864630,0.188821,-0.465576,
0.864630,0.188821,-0.465576,0.281049,0.540027,-0.793337,0.316432,0.678048,-0.663417,0.864417,0.197869,-0.462202,
0.864417,0.197869,-0.462202,0.316432,0.678048,-0.663417,0.372695,0.776788,-0.507641,0.865412,0.205838,-0.456830,
0.865412,0.205838,-0.456830,0.372695,0.776788,-0.507641,0.445826,0.829217,-0.337102,0.867546,0.212158,-0.449836,
0.867546,0.212158,-0.449836,0.445826,0.829217,-0.337102,0.530612,0.831610,-0.163939,0.870668,0.216373,-0.441723,
0.870668,0.216373,-0.441723,0.530612,0.831610,-0.163939,0.621021,0.783794,-0.000474,0.874557,0.218182,-0.433067,
0.874557,0.218182,-0.433067,0.621021,0.783794,-0.000474,0.710622,0.689168,0.141648,0.878933,0.217461,-0.424485,
0.878933,0.217461,-0.424485,0.710622,0.689168,0.141648,0.793037,0.554469,0.252303,0.883485,0.214265,-0.416586,
0.883485,0.214265,-0.416586,0.793037,0.554469,0.252303,0.862391,0.389292,0.323626,0.887891,0.208816,-0.409935,
0.887891,0.208816,-0.409935,0.862391,0.389292,0.323626,0.913751,0.205393,0.350533,0.891834,0.201506,-0.405002,
0.891834,0.201506,-0.405002,0.913751,0.205393,0.350533,0.943457,0.015864,0.331115,0.895036,0.192850,-0.402145,
0.895036,0.192850,-0.402145,0.943457,0.015864,0.331115,0.949399,-0.165801,0.266744,0.897268,0.183468,-0.401560,
0.897268,0.183468,-0.401560,0.949399,-0.165801,0.266744,0.931152,-0.326665,0.162005,0.898374,0.174024,-0.403286,
0.898374,0.174024,-0.403286,0.931152,-0.326665,0.162005,0.890013,-0.455283,0.024364,0.898271,0.165195,-0.407210,
0.898271,0.165195,-0.407210,0.890013,-0.455283,0.024364,0.828913,-0.542496,-0.136388,0.896966,0.157610,-0.413052,
0.896966,0.157610,-0.413052,0.828913,-0.542496,-0.136388,0.752203,-0.582089,-0.308808,0.894553,0.151809,-0.420391,
0.894553,0.151809,-0.420391,0.752203,-0.582089,-0.308808,0.665343,-0.571250,-0.480616,0.891206,0.148198,-0.428706,
0.891206,0.148198,-0.428706,0.665343,-0.571250,-0.480616,0.574513,-0.510754,-0.639582,0.887162,0.147043,-0.437403,
0.887162,0.147043,-0.437403,0.574513,-0.510754,-0.639582,0.486185,-0.404899,-0.774391,0.882710,0.148426,-0.445861,
0.882710,0.148426,-0.445861,0.486185,-0.404899,-0.774391,0.406640,-0.261227,-0.875445,0.878163,0.152236,-0.453490,
0.878163,0.152236,-0.453490,0.406640,-0.261227,-0.875445,0.341552,-0.089964,-0.935547,0.873847,0.158213,-0.459739,
0.873847,0.158213,-0.459739,0.341552,-0.089964,-0.935547,0.295546,0.096700,-0.950422,0.870071,0.165929,-0.464159,
0.870071,0.165929,-0.464159,0.295546,0.096700,-0.950422,0.271898,0.285474,-0.919008,0.867103,0.174839,-0.466437,
0.867103,0.174839,-0.466437,0.271898,0.285474,-0.919008,0.272295,0.462917,-0.843542,0.865151,0.184306,-0.466416,
0.865151,0.184306,-0.466416,0.272295,0.462917,-0.843542,0.296713,0.616393,-0.729398,0.864361,0.193649,-0.464091,
0.864361,0.193649,-0.464091,0.296713,0.616393,-0.729398,0.343406,0.734980,-0.584703,0.864785,0.202204,-0.459631,
0.864785,0.202204,-0.459631,0.343406,0.734980,-0.584703,0.409045,0.810240,-0.419753,0.866391,0.209372,-0.453354,
0.866391,0.209372,-0.453354,0.409045,0.810240,-0.419753,0.488970,0.836807,-0.246297,0.869065,0.214642,-0.445707,
0.869065,0.214642,-0.445707,0.488970,0.836807,-0.246297,0.532421,0.831046,-0.160908,0.870800,0.214217,-0.442514,
0.963306,-0.124390,0.237841,0.866037,0.179334,-0.466711,0.864630,0.188821,-0.465576,0.948940,-0.281377,0.142620,
0.948940,-0.281377,0.142620,0.864630,0.188821,-0.465576,0.864417,0.197869,-0.462202,0.912450,-0.408917,0.014869,
0.912450,-0.408917,0.014869,0.864417,0.197869,-0.462202,0.865412,0.205838,-0.456830,0.856434,-0.497933,-0.136317,
0.856434,-0.497933,-0.136317,0.865412,0.205838,-0.456830,0.867546,0.212158,-0.449836,0.784883,-0.542081,-0.300177,
0.784883,-0.542081,-0.300177,0.867546,0.212158,-0.449836,0.870668,0.216373,-0.441723,0.702891,-0.538220,-0.465041,
0.702891,-0.538220,-0.465041,0.870668,0.216373,-0.441723,0.874557,0.218182,-0.433067,0.616284,-0.486640,-0.619174,
0.616284,-0.486640,-0.619174,0.874557,0.218182,-0.433067,0.878933,0.217461,-0.424485,0.531239,-0.390991,-0.751605,
0.531239,-0.390991,-0.751605,0.878933,0.217461,-0.424485,0.883485,0.214265,-0.416586,0.453814,-0.258091,-0.852902,
0.453814,-0.258091,-0.852902,0.883485,0.214265,-0.416586,0.887891,0.208816,-0.409935,0.389513,-0.097404,-0.915856,
0.389513,-0.097404,-0.915856,0.887891,0.208816,-0.409935,0.891834,0.201506,-0.405002,0.342918,0.079637,-0.935984,
0.342918,0.079637,-0.935984,0.891834,0.201506,-0.405002,0.895036,0.192850,-0.402145,0.317338,0.260416,-0.911855,
0.317338,0.260416,-0.911855,0.895036,0.192850,-0.402145,0.897268,0.183468,-0.401560,0.314599,0.432073,-0.845186,
0.314599,0.432073,-0.845186,0.897268,0.183468,-0.401560,0.898374,0.174024,-0.403286,0.334908,0.582383,-0.740720,
0.334908,0.582383,-0.740720,0.898374,0.174024,-0.403286,0.898271,0.165195,-0.407210,0.376812,0.700643,-0.605897,
0.376812,0.700643,-0.605897,0.898271,0.165195,-0.407210,0.896966,0.157610,-0.413052,0.437316,0.778439,-0.450319,
0.437316,0.778439,-0.450319,0.896966,0.157610,-0.413052,0.894553,0.151809,-0.420391,0.512119,0.810231,-0.285059,
0.512119,0.810231,-0.285059,0.894553,0.151809,-0.420391,0.891206,0.148198,-0.428706,0.595895,0.793760,-0.121878,
0.595895,0.793760,-0.121878,0.891206,0.148198,-0.428706,0.887162,0.147043,-0.437403,0.682680,0.730196,0.027607,
0.682680,0.730196,0.027607,0.887162,0.147043,-0.437403,0.882710,0.148426,-0.445861,0.766307,0.624053,0.152746,
0.766307,0.624053,0.152746,0.882710,0.148426,-0.445861,0.878163,0.152236,-0.453490,0.840813,0.482898,0.244629,
0.840813,0.482898,0.244629,0.878163,0.152236,-0.453490,0.873847,0.158213,-0.459739,0.900889,0.316782,0.296728,
0.900889,0.316782,0.296728,0.873847,0.158213,-0.459739,0.870071,0.165929,-0.464159,0.942266,0.137525,0.305323,
0.942266,0.137525,0.305323,0.870071,0.165929,-0.464159,0.867103,0.174839,-0.466437,0.961995,-0.042104,0.269802,
0.961995,-0.042104,0.269802,0.867103,0.174839,-0.466437,0.865151,0.184306,-0.466416,0.958671,-0.209325,0.192700,
0.958671,-0.209325,0.192700,0.865151,0.184306,-0.466416,0.864361,0.193649,-0.464091,0.932531,-0.352230,0.079499,
0.932531,-0.352230,0.079499,0.864361,0.193649,-0.464091,0.864785,0.202204,-0.459631,0.885425,-0.460711,-0.061378,
0.885425,-0.460711,-0.061378,0.864785,0.202204,-0.459631,0.866391,0.209372,-0.453354,0.820745,-0.526835,-0.220957,
0.820745,-0.526835,-0.220957,0.866391,0.209372,-0.453354,0.869065,0.214642,-0.445707,0.743052,-0.546119,-0.386818,
0.743052,-0.546119,-0.386818,0.869065,0.214642,-0.445707,0.870800,0.214217,-0.442514,0.699411,-0.540524,-0.467609,
0.471191,-0.355347,0.807284,0.963306,-0.124390,0.237841,0.948940,-0.281377,0.142620,0.452617,-0.585103,0.672899,
0.452617,-0.585103,0.672899,0.948940,-0.281377,0.142620,0.912450,-0.408917,0.014869,0.401821,-0.773205,0.490606,
0.401821,-0.773205,0.490606,0.912450,-0.408917,0.014869,0.856434,-0.497933,-0.136317,0.322403,-0.906263,0.273392,
0.322403,-0.906263,0.273392,0.856434,-0.497933,-0.136317,0.784883,-0.542081,-0.300177,0.220033,-0.974801,0.036722,
0.220033,-0.974801,0.036722,0.784883,-0.542081,-0.300177,0.702891,-0.538220,-0.465041,0.102006,-0.973939,-0.202577,
0.102006,-0.973939,-0.202577,0.702891,-0.538220,-0.465041,0.616284,-0.486640,-0.619174,-0.023284,-0.903741,-0.427447,
-0.023284,-0.903741,-0.427447,0.616284,-0.486640,-0.619174,0.531239,-0.390991,-0.751605,-0.146925,-0.769206,-0.621880,
-0.146925,-0.769206,-0.621880,0.531239,-0.390991,-0.751605,0.453814,-0.258091,-0.852902,-0.260107,-0.579906,-0.772045,
-0.260107,-0.579906,-0.772045,0.453814,-0.258091,-0.852902,0.389513,-0.097404,-0.915856,-0.354768,-0.349321,-0.867245,
-0.354768,-0.349321,-0.867245,0.389513,-0.097404,-0.915856,0.342918,0.079637,-0.935984,-0.424181,-0.093872,-0.900699,
-0.424181,-0.093872,-0.900699,0.342918,0.079637,-0.935984,0.317338,0.260416,-0.911855,-0.463398,0.168261,-0.870029,
-0.463398,0.168261,-0.870029,0.317338,0.260416,-0.911855,0.314599,0.432073,-0.845186,-0.469622,0.418415,-0.777421,
-0.469622,0.418415,-0.777421,0.314599,0.432073,-0.845186,0.334908,0.582383,-0.740720,-0.442416,0.638782,-0.629464,
-0.442416,0.638782,-0.629464,0.334908,0.582383,-0.740720,0.376812,0.700643,-0.605897,-0.383714,0.813672,-0.436693,
-0.383714,0.813672,-0.436693,0.376812,0.700643,-0.605897,0.437316,0.778439,-0.450319,-0.297694,0.930634,-0.212835,
-0.297694,0.930634,-0.212835,0.437316,0.778439,-0.450319,0.512119,0.810231,-0.285059,-0.190487,0.981341,0.026177,
-0.190487,0.981341,0.026177,0.512119,0.810231,-0.285059,0.595895,0.793760,-0.121878,-0.069719,0.962184,0.263327,
-0.069719,0.962184,0.263327,0.595895,0.793760,-0.121878,0.682680,0.730196,0.027607,0.056006,0.874524,0.481738,
0.056006,0.874524,0.481738,0.682680,0.730196,0.027607,0.766307,0.624053,0.152746,0.177736,0.724604,0.665852,
0.177736,0.724604,0.665852,0.766307,0.624053,0.152746,0.840813,0.482898,0.244629,0.286821,0.523099,0.802560,
0.286821,0.523099,0.802560,0.840813,0.482898,0.244629,0.900889,0.316782,0.296728,0.375486,0.284354,0.882130,
0.375486,0.284354,0.882130,0.900889,0.316782,0.296728,0.942266,0.137525,0.305323,0.437417,0.025366,0.898901,
0.437417,0.025366,0.898901,0.942266,0.137525,0.305323,0.961995,-0.042104,0.269802,0.468199,-0.235435,0.851681,
0.468199,-0.235435,0.851681,0.961995,-0.042104,0.269802,0.958671,-0.209325,0.192700,0.465646,-0.479470,0.743829,
0.465646,-0.479470,0.743829,0.958671,-0.209325,0.192700,0.932531,-0.352230,0.079499,0.429940,-0.689373,0.583023,
0.429940,-0.689373,0.583023,0.932531,-0.352230,0.079499,0.885425,-0.460711,-0.061378,0.363632,-0.850196,0.380708,
0.363632,-0.850196,0.380708,0.885425,-0.460711,-0.061378,0.820745,-0.526835,-0.220957,0.271434,-0.950492,0.151287,
0.271434,-0.950492,0.151287,0.820745,-0.526835,-0.220957,0.743052,-0.546119,-0.386818,0.159903,-0.983122,-0.088897,
0.159903,-0.983122,-0.088897,0.743052,-0.546119,-0.386818,0.699411,-0.540524,-0.467609,0.103097,-0.972424,-0.209195,
-0.313093,-0.365445,0.876597,0.471191,-0.355347,0.807284,0.452617,-0.585103,0.672899,-0.324282,-0.525629,0.786483,
-0.324282,-0.525629,0.786483,0.452617,-0.585103,0.672899,0.401821,-0.773205,0.490606,-0.357834,-0.657805,0.662758,
-0.357834,-0.657805,0.662758,0.401821,-0.773205,0.490606,0.322403,-0.906263,0.273392,-0.411348,-0.752567,0.514233,
-0.411348,-0.752567,0.514233,0.322403,-0.906263,0.273392,0.220033,-0.974801,0.036722,-0.481019,-0.803172,0.351475,
-0.481019,-0.803172,0.351475,0.220033,-0.974801,0.036722,0.102006,-0.973939,-0.202577,-0.561886,-0.806014,0.186078,
-0.561886,-0.806014,0.186078,0.102006,-0.973939,-0.202577,-0.023284,-0.903741,-0.427447,-0.648198,-0.760888,0.029816,
-0.648198,-0.760888,0.029816,-0.023284,-0.903741,-0.427447,-0.146925,-0.769206,-0.621880,-0.733805,-0.671009,-0.106190,
-0.733805,-0.671009,-0.106190,-0.146925,-0.769206,-0.621880,-0.260107,-0.579906,-0.772045,-0.812615,-0.542776,-0.212254,
-0.812615,-0.542776,-0.212254,-0.260107,-0.579906,-0.772045,-0.354768,-0.349321,-0.867245,-0.879016,-0.385317,-0.280824,
-0.879016,-0.385317,-0.280824,-0.354768,-0.349321,-0.867245,-0.424181,-0.093872,-0.900699,-0.928280,-0.209844,-0.307021,
-0.928280,-0.209844,-0.307021,-0.424181,-0.093872,-0.900699,-0.463398,0.168261,-0.870029,-0.956899,-0.028849,-0.288983,
-0.956899,-0.028849,-0.288983,-0.463398,0.168261,-0.870029,-0.469622,0.418415,-0.777421,-0.962837,0.144785,-0.227995,
-0.962837,0.144785,-0.227995,-0.469622,0.418415,-0.777421,-0.442416,0.638782,-0.629464,-0.945673,0.298694,-0.128388,
-0.945673,0.298694,-0.128388,-0.442416,0.638782,-0.629464,-0.383714,0.813672,-0.436693,-0.906629,0.421920,0.002744,
-0.906629,0.421920,0.002744,-0.383714,0.813672,-0.436693,-0.297694,0.930634,-0.212835,-0.848480,0.505695,0.156057,
-0.848480,0.505695,0.156057,-0.297694,0.930634,-0.212835,-0.190487,0.981341,0.026177,-0.775676,0.543888,0.320176,
-0.775676,0.543888,0.320176,-0.190487,0.981341,0.026177,-0.069719,0.962184,0.263327,-0.692503,0.534255,0.484779,
-0.692503,0.534255,0.484779,-0.069719,0.962184,0.263327,0.056006,0.874524,0.481738,-0.605778,0.477010,0.636784,
-0.605778,0.477010,0.636784,0.056006,0.874524,0.481738,0.177736,0.724604,0.665852,-0.521374,0.376385,0.765835,
-0.521374,0.376385,0.765835,0.177736,0.724604,0.665852,0.286821,0.523099,0.802560,-0.445293,0.239551,0.862745,
-0.445293,0.239551,0.862745,0.286821,0.523099,0.802560,0.375486,0.284354,0.882130,-0.382942,0.076249,0.920620,
-0.382942,0.076249,0.920620,0.375486,0.284354,0.882130,0.437417,0.025366,0.898901,-0.338777,-0.101899,0.935333,
-0.338777,-0.101899,0.935333,0.437417,0.025366,0.898901,0.468199,-0.235435,0.851681,-0.315945,-0.282210,0.905835,
-0.315945,-0.282210,0.905835,0.468199,-0.235435,0.851681,0.465646,-0.479470,0.743829,-0.316063,-0.451847,0.834229,
-0.316063,-0.451847,0.834229,0.465646,-0.479470,0.743829,0.429940,-0.689373,0.583023,-0.339117,-0.598734,0.725615,
-0.339117,-0.598734,0.725615,0.429940,-0.689373,0.583023,0.363632,-0.850196,0.380708,-0.383476,-0.712410,0.587723,
-0.383476,-0.712410,0.587723,0.363632,-0.850196,0.380708,0.271434,-0.950492,0.151287,-0.445974,-0.784783,0.430374,
-0.445974,-0.784783,0.430374,0.271434,-0.950492,0.151287,0.159903,-0.983122,-0.088897,-0.522167,-0.810705,0.264762,
-0.522167,-0.810705,0.264762,0.159903,-0.983122,-0.088897,0.103097,-0.972424,-0.209195,-0.557579,-0.810851,0.177841,
-0.896712,-0.155714,0.414319,-0.313093,-0.365445,0.876597,-0.324282,-0.525629,0.786483,-0.894028,-0.150303,0.422046,
-0.894028,-0.150303,0.422046,-0.324282,-0.525629,0.786483,-0.357834,-0.657805,0.662758,-0.890448,-0.147189,0.430625,
-0.890448,-0.147189,0.430625,-0.357834,-0.657805,0.662758,-0.411348,-0.752567,0.514233,-0.886223,-0.146601,0.439451,
-0.886223,-0.146601,0.439451,-0.411348,-0.752567,0.514233,-0.481019,-0.803172,0.351475,-0.881651,-0.148589,0.447899,
-0.881651,-0.148589,0.447899,-0.481019,-0.803172,0.351475,-0.561886,-0.806014,0.186078,-0.877063,-0.152996,0.455360,
-0.877063,-0.152996,0.455360,-0.561886,-0.806014,0.186078,-0.648198,-0.760888,0.029816,-0.872784,-0.159503,0.461309,
-0.872784,-0.159503,0.461309,-0.648198,-0.760888,0.029816,-0.733805,-0.671009,-0.106190,-0.869117,-0.167664,0.465322,
-0.869117,-0.167664,0.465322,-0.733805,-0.671009,-0.106190,-0.812615,-0.542776,-0.212254,-0.866325,-0.176891,0.467109,
-0.866325,-0.176891,0.467109,-0.812615,-0.542776,-0.212254,-0.879016,-0.385317,-0.280824,-0.864606,-0.186527,0.466545,
-0.864606,-0.186527,0.466545,-0.879016,-0.385317,-0.280824,-0.928280,-0.209844,-0.307021,-0.864082,-0.195888,0.463670,
-0.864082,-0.195888,0.463670,-0.928280,-0.209844,-0.307021,-0.956899,-0.028849,-0.288983,-0.864789,-0.204304,0.458693,
-0.864789,-0.204304,0.458693,-0.956899,-0.028849,-0.288983,-0.962837,0.144785,-0.227995,-0.866680,-0.211178,0.451963,
-0.866680,-0.211178,0.451963,-0.962837,0.144785,-0.227995,-0.945673,0.298694,-0.128388,-0.869622,-0.216016,0.443953,
-0.869622,-0.216016,0.443953,-0.945673,0.298694,-0.128388,-0.906629,0.421920,0.002744,-0.873401,-0.218477,0.435245,
-0.873401,-0.218477,0.435245,-0.906629,0.421920,0.002744,-0.848480,0.505695,0.156057,-0.877746,-0.218390,0.426461,
-0.877746,-0.218390,0.426461,-0.848480,0.505695,0.156057,-0.775676,0.543888,0.320176,-0.882350,-0.215762,0.418218,
-0.882350,-0.215762,0.418218,-0.775676,0.543888,0.320176,-0.692503,0.534255,0.484779,-0.886888,-0.210769,0.411104,
-0.886888,-0.210769,0.411104,-0.692503,0.534255,0.484779,-0.605778,0.477010,0.636784,-0.891035,-0.203772,0.405627,
-0.891035,-0.203772,0.405627,-0.605778,0.477010,0.636784,-0.521374,0.376385,0.765835,-0.894496,-0.195278,0.402173,
-0.894496,-0.195278,0.402173,-0.521374,0.376385,0.765835,-0.445293,0.239551,0.862745,-0.897024,-0.185883,0.400992,
-0.897024,-0.185883,0.400992,-0.445293,0.239551,0.862745,-0.382942,0.076249,0.920620,-0.898440,-0.176253,0.402169,
-0.898440,-0.176253,0.402169,-0.382942,0.076249,0.920620,-0.338777,-0.101899,0.935333,-0.898644,-0.167076,0.405617,
-0.898644,-0.167076,0.405617,-0.338777,-0.101899,0.935333,-0.315945,-0.282210,0.905835,-0.897619,-0.159008,0.411093,
-0.897619,-0.159008,0.411093,-0.315945,-0.282210,0.905835,-0.316063,-0.451847,0.834229,-0.895437,-0.152625,0.418207,
-0.895437,-0.152625,0.418207,-0.316063,-0.451847,0.834229,-0.339117,-0.598734,0.725615,-0.892255,-0.148379,0.426457,
-0.892255,-0.148379,0.426457,-0.339117,-0.598734,0.725615,-0.383476,-0.712410,0.587723,-0.888304,-0.146565,0.435242,
-0.888304,-0.146565,0.435242,-0.383476,-0.712410,0.587723,-0.445974,-0.784783,0.430374,-0.883861,-0.147319,0.443944,
-0.883861,-0.147319,0.443944,-0.445974,-0.784783,0.430374,-0.522167,-0.810705,0.264762,-0.879240,-0.150594,0.451951,
-0.879240,-0.150594,0.451951,-0.522167,-0.810705,0.264762,-0.557579,-0.810851,0.177841,-0.876882,-0.155637,0.454813,
-0.950008,0.139319,-0.279419,-0.896712,-0.155714,0.414319,-0.894028,-0.150303,0.422046,-0.935387,0.304158,-0.180384,
-0.935387,0.304158,-0.180384,-0.894028,-0.150303,0.422046,-0.890448,-0.147189,0.430625,-0.897570,0.438346,-0.047132,
-0.897570,0.438346,-0.047132,-0.890448,-0.147189,0.430625,-0.886223,-0.146601,0.439451,-0.839243,0.532339,0.110847,
-0.839243,0.532339,0.110847,-0.886223,-0.146601,0.439451,-0.881651,-0.148589,0.447899,-0.764562,0.579439,0.282303,
-0.764562,0.579439,0.282303,-0.881651,-0.148589,0.447899,-0.877063,-0.152996,0.455360,-0.678846,0.576292,0.455033,
-0.678846,0.576292,0.455033,-0.877063,-0.152996,0.455360,-0.872784,-0.159503,0.461309,-0.588189,0.523134,0.616737,
-0.588189,0.523134,0.616737,-0.872784,-0.159503,0.461309,-0.869117,-0.167664,0.465322,-0.499044,0.423746,0.755907,
-0.499044,0.423746,0.755907,-0.869117,-0.167664,0.465322,-0.866325,-0.176891,0.467109,-0.417774,0.285190,0.862630,
-0.417774,0.285190,0.862630,-0.866325,-0.176891,0.467109,-0.864606,-0.186527,0.466545,-0.350160,0.117335,0.929312,
-0.350160,0.117335,0.929312,-0.864606,-0.186527,0.466545,-0.864082,-0.195888,0.463670,-0.301002,-0.067858,0.951206,
-0.301002,-0.067858,0.951206,-0.864082,-0.195888,0.463670,-0.864789,-0.204304,0.458693,-0.273798,-0.257211,0.926756,
-0.273798,-0.257211,0.926756,-0.864789,-0.204304,0.458693,-0.866680,-0.211178,0.451963,-0.270500,-0.437247,0.857698,
-0.270500,-0.437247,0.857698,-0.866680,-0.211178,0.451963,-0.869622,-0.216016,0.443953,-0.291348,-0.595146,0.748944,
-0.291348,-0.595146,0.748944,-0.869622,-0.216016,0.443953,-0.873401,-0.218477,0.435245,-0.334846,-0.719664,0.608245,
-0.334846,-0.719664,0.608245,-0.873401,-0.218477,0.435245,-0.877746,-0.218390,0.426461,-0.397894,-0.801939,0.445617,
-0.397894,-0.801939,0.445617,-0.877746,-0.218390,0.426461,-0.882350,-0.215762,0.418218,-0.476006,-0.836114,0.272636,
-0.476006,-0.836114,0.272636,-0.882350,-0.215762,0.418218,-0.886888,-0.210769,0.411104,-0.563625,-0.819756,0.101617,
-0.563625,-0.819756,0.101617,-0.886888,-0.210769,0.411104,-0.891035,-0.203772,0.405627,-0.654511,-0.754029,-0.055269,
-0.654511,-0.754029,-0.055269,-0.891035,-0.203772,0.405627,-0.894496,-0.195278,0.402173,-0.742189,-0.643616,-0.186852,
-0.742189,-0.643616,-0.186852,-0.894496,-0.195278,0.402173,-0.897024,-0.185883,0.400992,-0.820423,-0.496373,-0.283761,
-0.820423,-0.496373,-0.283761,-0.897024,-0.185883,0.400992,-0.898440,-0.176253,0.402169,-0.883645,-0.322782,-0.339092,
-0.883645,-0.322782,-0.339092,-0.898440,-0.176253,0.402169,-0.898644,-0.167076,0.405617,-0.927353,-0.135199,-0.348910,
-0.927353,-0.135199,-0.348910,-0.898644,-0.167076,0.405617,-0.897619,-0.159008,0.411093,-0.948429,0.053015,-0.312524,
-0.948429,0.053015,-0.312524,-0.897619,-0.159008,0.411093,-0.895437,-0.152625,0.418207,-0.945378,0.228466,-0.232514,
-0.945378,0.228466,-0.232514,-0.895437,-0.152625,0.418207,-0.892255,-0.148379,0.426457,-0.918419,0.378655,-0.114574,
-0.918419,0.378655,-0.114574,-0.892255,-0.148379,0.426457,-0.888304,-0.146565,0.435242,-0.869466,0.492896,0.032890,
-0.869466,0.492896,0.032890,-0.888304,-0.146565,0.435242,-0.883861,-0.147319,0.443944,-0.802007,0.563057,0.199377,
-0.802007,0.563057,0.199377,-0.883861,-0.147319,0.443944,-0.879240,-0.150594,0.451951,-0.720844,0.584140,0.373047,
-0.720844,0.584140,0.373047,-0.879240,-0.150594,0.451951,-0.876882,-0.155637,0.454813,-0.673625,0.579819,0.458300,
-0.471202,0.353752,-0.807978,-0.950008,0.139319,-0.279419,-0.935387,0.304158,-0.180384,-0.452842,0.583728,-0.673940,
-0.452842,0.583728,-0.673940,-0.935387,0.304158,-0.180384,-0.897570,0.438346,-0.047132,-0.402246,0.772149,-0.491919,
-0.402246,0.772149,-0.491919,-0.897570,0.438346,-0.047132,-0.839243,0.532339,0.110847,-0.323006,0.905597,-0.274885,
-0.323006,0.905597,-0.274885,-0.839243,0.532339,0.110847,-0.764562,0.579439,0.282303,-0.220767,0.974575,-0.038280,
-0.220767,0.974575,-0.038280,-0.764562,0.579439,0.282303,-0.678846,0.576292,0.455033,-0.102816,0.974170,0.201051,
-0.102816,0.974170,0.201051,-0.678846,0.576292,0.455033,-0.588189,0.523134,0.616737,0.022458,0.904412,0.426070,
0.022458,0.904412,0.426070,-0.588189,0.523134,0.616737,-0.499044,0.423746,0.755907,0.146139,0.770267,0.620751,
0.146139,0.770267,0.620751,-0.499044,0.423746,0.755907,-0.417774,0.285190,0.862630,0.259417,0.581285,0.771240,
0.259417,0.581285,0.771240,-0.417774,0.285190,0.862630,-0.350160,0.117335,0.929312,0.354222,0.350917,0.866824,
0.354222,0.350917,0.866824,-0.350160,0.117335,0.929312,-0.301002,-0.067858,0.951206,0.423815,0.095572,0.900692,
0.423815,0.095572,0.900692,-0.301002,-0.067858,0.951206,-0.273798,-0.257211,0.926756,0.463237,-0.166579,0.870439,
0.463237,-0.166579,0.870439,-0.273798,-0.257211,0.926756,-0.270500,-0.437247,0.857698,0.469684,-0.416871,0.778213,
0.469684,-0.416871,0.778213,-0.270500,-0.437247,0.857698,-0.291348,-0.595146,0.748944,0.442699,-0.637480,0.630584,
0.442699,-0.637480,0.630584,-0.291348,-0.595146,0.748944,-0.334846,-0.719664,0.608245,0.384189,-0.812712,0.438062,
0.384189,-0.812712,0.438062,-0.334846,-0.719664,0.608245,-0.397894,-0.801939,0.445617,0.298324,-0.930082,0.214358,
0.298324,-0.930082,0.214358,-0.397894,-0.801939,0.445617,-0.476006,-0.836114,0.272636,0.191233,-0.981236,-0.024613,
0.191233,-0.981236,-0.024613,-0.476006,-0.836114,0.272636,-0.563625,-0.819756,0.101617,0.070532,-0.962532,-0.261834,
0.070532,-0.962532,-0.261834,-0.563625,-0.819756,0.101617,-0.654511,-0.754029,-0.055269,-0.055194,-0.875304,-0.480413,
-0.055194,-0.875304,-0.480413,-0.654511,-0.754029,-0.055269,-0.742189,-0.643616,-0.186852,-0.176994,-0.725760,-0.664790,
-0.176994,-0.725760,-0.664790,-0.742189,-0.643616,-0.186852,-0.820423,-0.496373,-0.283761,-0.286184,-0.524548,-0.801840,
-0.286184,-0.524548,-0.801840,-0.820423,-0.496373,-0.283761,-0.883645,-0.322782,-0.339092,-0.374998,-0.285990,-0.881808,
-0.374998,-0.285990,-0.881808,-0.883645,-0.322782,-0.339092,-0.927353,-0.135199,-0.348910,-0.437119,-0.027075,-0.898996,
-0.437119,-0.027075,-0.898996,-0.927353,-0.135199,-0.348910,-0.948429,0.053015,-0.312524,-0.468115,0.233775,-0.852184,
-0.468115,0.233775,-0.852184,-0.948429,0.053015,-0.312524,-0.945378,0.228466,-0.232514,-0.465776,0.477978,-0.744708,
-0.465776,0.477978,-0.744708,-0.945378,0.228466,-0.232514,-0.918419,0.378655,-0.114574,-0.430284,0.688152,-0.584212,
-0.430284,0.688152,-0.584212,-0.918419,0.378655,-0.114574,-0.869466,0.492896,0.032890,-0.364163,0.849335,-0.382121,
-0.364163,0.849335,-0.382121,-0.869466,0.492896,0.032890,-0.802007,0.563057,0.199377,-0.272110,0.950053,-0.152828,
-0.272110,0.950053,-0.152828,-0.802007,0.563057,0.199377,-0.720844,0.584140,0.373047,-0.160674,0.983136,0.087341,
-0.160674,0.983136,0.087341,-0.720844,0.584140,0.373047,-0.673625,0.579819,0.458300,-0.096522,0.974053,0.204707,
-0.939592,-0.047591,-0.338971,-0.455077,0.093109,-0.885571,-0.402713,-0.185815,-0.896267,-0.902950,-0.248874,-0.350347,
-0.902950,-0.248874,-0.350347,-0.402713,-0.185815,-0.896267,-0.315687,-0.455185,-0.832555,-0.841201,-0.444829,-0.307422,
-0.841201,-0.444829,-0.307422,-0.315687,-0.455185,-0.832555,-0.202070,-0.685992,-0.698986,-0.759886,-0.614000,-0.213488,
-0.759886,-0.614000,-0.213488,-0.202070,-0.685992,-0.698986,-0.071474,-0.859162,-0.506688,-0.665835,-0.742173,-0.076446,
-0.665835,-0.742173,-0.076446,-0.071474,-0.859162,-0.506688,0.065118,-0.960145,-0.271812,-0.566951,-0.818576,0.092192,
-0.566951,-0.818576,0.092192,0.065118,-0.960145,-0.271812,0.127839,-0.981442,-0.142929,-0.515653,-0.837323,0.181638,
-0.899113,-0.162041,0.406619,-0.939592,-0.047591,-0.338971,-0.902950,-0.248874,-0.350347,-0.900297,-0.170689,0.400414,
-0.900297,-0.170689,0.400414,-0.902950,-0.248874,-0.350347,-0.841201,-0.444829,-0.307422,-0.899222,-0.182064,0.397810,
-0.899222,-0.182064,0.397810,-0.841201,-0.444829,-0.307422,-0.759886,-0.614000,-0.213488,-0.896637,-0.193483,0.398254,
-0.896637,-0.193483,0.398254,-0.759886,-0.614000,-0.213488,-0.665835,-0.742173,-0.076446,-0.892761,-0.203987,0.401704,
-0.892761,-0.203987,0.401704,-0.665835,-0.742173,-0.076446,-0.566951,-0.818576,0.092192,-0.887921,-0.212697,0.407868,
-0.887921,-0.212697,0.407868,-0.566951,-0.818576,0.092192,-0.515653,-0.837323,0.181638,-0.884626,-0.219397,0.411464,
-0.326567,-0.183785,0.927134,-0.899113,-0.162041,0.406619,-0.900297,-0.170689,0.400414,-0.365701,0.008978,0.930689,
-0.365701,0.008978,0.930689,-0.900297,-0.170689,0.400414,-0.899222,-0.182064,0.397810,-0.427114,0.192895,0.883383,
-0.427114,0.192895,0.883383,-0.899222,-0.182064,0.397810,-0.896637,-0.193483,0.398254,-0.506379,0.349470,0.788322,
-0.506379,0.349470,0.788322,-0.896637,-0.193483,0.398254,-0.892761,-0.203987,0.401704,-0.596835,0.465547,0.653493,
-0.596835,0.465547,0.653493,-0.892761,-0.203987,0.401704,-0.887921,-0.212697,0.407868,-0.690886,0.531371,0.490225,
-0.690886,0.531371,0.490225,-0.887921,-0.212697,0.407868,-0.884626,-0.219397,0.411464,-0.736573,0.543454,0.402640,
0.455776,-0.094370,0.885078,-0.326567,-0.183785,0.927134,-0.365701,0.008978,0.930689,0.403209,0.184390,0.896339,
0.403209,0.184390,0.896339,-0.365701,0.008978,0.930689,-0.427114,0.192895,0.883383,0.316306,0.453612,0.833178,
0.316306,0.453612,0.833178,-0.427114,0.192895,0.883383,-0.506379,0.349470,0.788322,0.202827,0.684720,0.700014,
0.202827,0.684720,0.700014,-0.506379,0.349470,0.788322,-0.596835,0.465547,0.653493,0.072315,0.858298,0.508030,
0.072315,0.858298,0.508030,-0.596835,0.465547,0.653493,-0.690886,0.531371,0.490225,-0.064277,0.959761,0.273364,
-0.064277,0.959761,0.273364,-0.690886,0.531371,0.490225,-0.736573,0.543454,0.402640,-0.135620,0.979693,0.147676,
0.954513,0.054082,0.293224,0.455776,-0.094370,0.885078,0.403209,0.184390,0.896339,0.920628,0.245575,0.303540,
0.920628,0.245575,0.303540,0.403209,0.184390,0.896339,0.316306,0.453612,0.833178,0.862313,0.432301,0.263691,
0.862313,0.432301,0.263691,0.316306,0.453612,0.833178,0.202827,0.684720,0.700014,0.785276,0.593834,0.175222,
0.785276,0.593834,0.175222,0.202827,0.684720,0.700014,0.072315,0.858298,0.508030,0.695985,0.716609,0.045573,
0.695985,0.716609,0.045573,0.072315,0.858298,0.508030,-0.064277,0.959761,0.273364,0.601942,0.790308,-0.114361,
0.601942,0.790308,-0.114361,-0.064277,0.959761,0.273364,-0.135620,0.979693,0.147676,0.550545,0.810651,-0.199363,
0.868153,0.168622,-0.466773,0.954513,0.054082,0.293224,0.920628,0.245575,0.303540,0.871631,0.158188,-0.463935,
0.871631,0.158188,-0.463935,0.920628,0.245575,0.303540,0.862313,0.432301,0.263691,0.876649,0.150449,-0.457004,
0.876649,0.150449,-0.457004,0.862313,0.432301,0.263691,0.785276,0.593834,0.175222,0.882054,0.145408,-0.448149,
0.882054,0.145408,-0.448149,0.785276,0.593834,0.175222,0.695985,0.716609,0.045573,0.887396,0.143497,-0.438106,
0.887396,0.143497,-0.438106,0.695985,0.716609,0.045573,0.601942,0.790308,-0.114361,0.892226,0.144879,-0.427718,
0.892226,0.144879,-0.427718,0.601942,0.790308,-0.114361,0.550545,0.810651,-0.199363,0.894876,0.143803,-0.422513,
0.281315,0.182629,-0.942077,0.868153,0.168622,-0.466773,0.871631,0.158188,-0.463935,0.319715,-0.019957,-0.947304,
0.319715,-0.019957,-0.947304,0.871631,0.158188,-0.463935,0.876649,0.150449,-0.457004,0.383988,-0.213617,-0.898288,
0.383988,-0.213617,-0.898288,0.876649,0.150449,-0.457004,0.882054,0.145408,-0.448149,0.467124,-0.378730,-0.798974,
0.467124,-0.378730,-0.798974,0.882054,0.145408,-0.448149,0.887396,0.143497,-0.438106,0.562121,-0.501436,-0.657710,
0.562121,-0.501436,-0.657710,0.887396,0.143497,-0.438106,0.892226,0.144879,-0.427718,0.661008,-0.571421,-0.486360,
0.661008,-0.571421,-0.486360,0.892226,0.144879,-0.427718,0.894876,0.143803,-0.422513,0.703843,-0.593076,-0.390981,
-0.455077,0.093109,-0.885571,0.281315,0.182629,-0.942077,0.319715,-0.019957,-0.947304,-0.402713,-0.185815,-0.896267,
-0.402713,-0.185815,-0.896267,0.319715,-0.019957,-0.947304,0.383988,-0.213617,-0.898288,-0.315687,-0.455185,-0.832555,
-0.315687,-0.455185,-0.832555,0.383988,-0.213617,-0.898288,0.467124,-0.378730,-0.798974,-0.202070,-0.685992,-0.698986,
-0.202070,-0.685992,-0.698986,0.467124,-0.378730,-0.798974,0.562121,-0.501436,-0.657710,-0.071474,-0.859162,-0.506688,
-0.071474,-0.859162,-0.506688,0.562121,-0.501436,-0.657710,0.661008,-0.571421,-0.486360,0.065118,-0.960145,-0.271812,
0.065118,-0.960145,-0.271812,0.661008,-0.571421,-0.486360,0.703843,-0.593076,-0.390981,0.127839,-0.981442,-0.142929,
0.281315,0.182629,-0.942077,-0.455077,0.093109,-0.885571,-0.471202,0.353752,-0.807978,0.269057,0.372555,-0.888150,
0.868153,0.168622,-0.466773,0.281315,0.182629,-0.942077,0.269057,0.372555,-0.888150,0.866037,0.179334,-0.466711,
0.954513,0.054082,0.293224,0.868153,0.168622,-0.466773,0.866037,0.179334,-0.466711,0.963306,-0.124390,0.237841,
0.455776,-0.094370,0.885078,0.954513,0.054082,0.293224,0.963306,-0.124390,0.237841,0.471191,-0.355347,0.807284,
-0.326567,-0.183785,0.927134,0.455776,-0.094370,0.885078,0.471191,-0.355347,0.807284,-0.313093,-0.365445,0.876597,
-0.899113,-0.162041,0.406619,-0.326567,-0.183785,0.927134,-0.313093,-0.365445,0.876597,-0.896712,-0.155714,0.414319,
-0.939592,-0.047591,-0.338971,-0.899113,-0.162041,0.406619,-0.896712,-0.155714,0.414319,-0.950008,0.139319,-0.279419,
-0.455077,0.093109,-0.885571,-0.939592,-0.047591,-0.338971,-0.950008,0.139319,-0.279419,-0.471202,0.353752,-0.807978,
0.426394,0.083056,0.900717,0.426383,0.083059,0.900721,0.426381,0.083058,0.900722,0.426406,0.083054,0.900711,
0.426392,0.083051,0.900718,0.426396,0.083056,0.900715,0.426396,0.083056,0.900715,0.426394,0.083056,0.900717,
0.426406,0.083054,0.900711,0.426370,0.083062,0.900727,0.426390,0.083066,0.900717,0.426381,0.083058,0.900722,
0.426381,0.083058,0.900722,0.426383,0.083059,0.900721,0.426370,0.083062,0.900727,0.426383,0.083059,0.900721,
0.426394,0.083056,0.900717,0.426396,0.083056,0.900715,0.469323,-0.257017,0.844795,0.469324,-0.257021,0.844793,
0.469322,-0.257010,0.844798,0.469321,-0.257011,0.844798,0.469280,-0.257018,0.844818,0.469323,-0.257017,0.844795,
0.469323,-0.257017,0.844795,0.469320,-0.257007,0.844799,0.469321,-0.257011,0.844798,0.469306,-0.257013,0.844806,
0.469348,-0.257005,0.844784,0.469322,-0.257010,0.844798,0.469322,-0.257010,0.844798,0.469324,-0.257021,0.844793,
0.469306,-0.257013,0.844806,0.469322,-0.257010,0.844798,0.469320,-0.257007,0.844799,0.469323,-0.257017,0.844795
}
LayerElementUV: 0 {
Version: 101
Name: "UVMap"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: 0.375200,0.034499,0.972211,0.431501,0.996084,0.402271,0.964252,0.575320,0.993395,0.217332,0.992104,0.519188,
0.968232,0.548416,0.977779,0.296531,0.989491,0.270132,0.029493,0.188499,0.984147,0.629130,0.021805,0.162506,
0.966066,0.270132,0.973875,0.270132,0.969971,0.270132,0.973875,0.296531,0.966066,0.138134,0.992104,0.575320,
0.997300,0.085334,0.993395,0.270132,0.964252,0.519188,0.985587,0.085334,0.977779,0.217332,0.968232,0.373042,
0.969971,0.190932,0.984147,0.431501,0.006429,0.084526,0.010273,0.110520,0.025649,0.292471,0.006429,0.188499,
0.006429,0.318464,0.006429,0.344457,0.006429,0.370450,0.006429,0.266477,0.006429,0.292471,0.006429,0.240484,
0.980168,0.682938,0.976189,0.602224,0.977779,0.085334,0.972211,0.548416,0.969971,0.296531,0.973875,0.164534,
0.989491,0.190932,0.981683,0.190932,0.969971,0.243731,0.017961,0.058533,0.984147,0.489958,0.964252,0.682938,
0.996084,0.602224,0.996084,0.629130,0.973875,0.085334,0.976189,0.575320,0.972211,0.656034,0.964252,0.460729,
0.386900,0.034600,0.014117,0.032540,0.049300,0.868499,0.977779,0.270132,0.969971,0.164534,0.976189,0.402271,
0.021805,0.214491,0.029493,0.344457,0.029493,0.240484,0.033338,0.032540,0.029493,0.084526,0.029493,0.136513,
0.033338,0.240484,0.025649,0.136513,0.029493,0.292471,0.029493,0.318464,0.980168,0.602224,0.017961,0.292471,
0.976189,0.519188,0.984147,0.373042,0.984147,0.548416,0.989491,0.322931,0.972211,0.709842,0.992104,0.682938,
0.988125,0.602224,0.988125,0.629130,0.992104,0.460729,0.981683,0.270132,0.969971,0.032535,0.002584,0.292471,
0.002584,0.318464,0.002584,0.344457,0.002584,0.370450,0.021805,0.136513,0.992104,0.402271,0.997300,0.296531,
0.989491,0.164534,0.985587,0.296531,0.968232,0.431501,0.984147,0.602224,0.029493,0.266477,0.017961,0.110520,
0.988125,0.548416,0.996084,0.656034,0.972211,0.460729,0.014117,0.058533,0.033338,0.344457,0.025649,0.344457,
0.977779,0.322931,0.385300,0.030500,0.017961,0.214491,0.966066,0.058935,0.021805,0.318464,0.017961,0.136513,
0.980168,0.460729,0.989491,0.138134,0.984147,0.709842,0.988125,0.519188,0.996084,0.575320,0.976189,0.629130,
0.997300,0.217332,0.972211,0.373042,0.964252,0.402271,0.029493,0.058533,0.377000,0.030400,0.969971,0.217332,
0.964252,0.709842,0.992104,0.656034,0.973875,0.138134,0.980168,0.489958,0.993395,0.322931,0.968232,0.629130,
0.966066,0.085334,0.981683,0.296531,0.385199,0.038699,0.010273,0.162506,0.006429,0.032540,0.010273,0.214491,
0.996084,0.682938,0.980168,0.575320,0.968232,0.709842,0.996084,0.460729,0.964252,0.629130,0.014117,0.162506,
0.014117,0.214491,0.984147,0.656034,0.973875,0.243731,0.989491,0.032535,0.981683,0.032535,0.976189,0.656034,
0.021805,0.292471,0.981683,0.217332,0.014117,0.266477,0.017961,0.344457,0.985587,0.217332,0.993395,0.190932,
0.977779,0.164534,0.972211,0.402271,0.996084,0.431501,0.033338,0.266477,0.033338,0.188499,0.025649,0.188499,
0.017961,0.162506,0.033338,0.292471,0.021805,0.110520,0.033338,0.318464,0.033338,0.370450,0.025649,0.318464,
0.025649,0.370450,0.969971,0.058935,0.989491,0.111735,0.981683,0.322931,0.996084,0.489958,0.976189,0.709842,
0.988125,0.373042,0.972211,0.519188,0.997300,0.243731,0.985587,0.243731,0.977779,0.032535,0.988125,0.402271,
0.993395,0.296531,0.025649,0.032540,0.025649,0.084526,0.973875,0.111735,0.997300,0.058935,0.985587,0.058935,
0.017961,0.032540,0.969971,0.085334,0.988125,0.709842,0.981683,0.138134,0.976189,0.373042,0.984147,0.519188,
0.976189,0.548416,0.966066,0.217332,0.972211,0.629130,0.968232,0.489958,0.980168,0.431501,0.966066,0.111735,
0.997300,0.111735,0.993395,0.111735,0.985587,0.111735,0.989491,0.243731,0.981683,0.243731,0.033338,0.058533,
0.989491,0.058935,0.025649,0.058533,0.981683,0.058935,0.996084,0.709842,0.997300,0.322931,0.984147,0.575320,
0.988125,0.656034,0.985587,0.322931,0.976189,0.489958,0.968232,0.682938,0.968232,0.460729,0.997300,0.164534,
0.989491,0.296531,0.985587,0.164534,0.992104,0.431501,0.968232,0.402271,0.010273,0.032540,0.006429,0.162506,
0.006429,0.214491,0.977779,0.111735,0.381000,0.040399,0.964252,0.548416,0.992104,0.489958,0.973875,0.322931,
0.993395,0.138134,0.980168,0.656034,0.968232,0.519188,0.964252,0.373042,0.014117,0.110520,0.051699,0.857900,
0.985587,0.032535,0.977779,0.243731,0.997300,0.032535,0.997300,0.190932,0.985587,0.190932,0.964252,0.431501,
0.029493,0.162506,0.021805,0.188499,0.025649,0.110520,0.021805,0.266477,0.021805,0.344457,0.029493,0.214491,
0.021805,0.084526,0.021805,0.240484,0.033338,0.110520,0.033338,0.136513,0.981683,0.111735,0.977779,0.058935,
0.976189,0.682938,0.964252,0.489958,0.984147,0.460729,0.992104,0.373042,0.984147,0.682938,0.977779,0.138134,
0.989491,0.085334,0.992104,0.548416,0.980168,0.709842,0.966066,0.032535,0.025649,0.240484,0.993395,0.243731,
0.976189,0.460729,0.984147,0.402271,0.973875,0.190932,0.010273,0.058533,0.966066,0.243731,0.966066,0.164534,
0.966066,0.190932,0.966066,0.296531,0.964252,0.602224,0.006429,0.136513,0.968232,0.602224,0.972211,0.602224,
0.968232,0.575320,0.964252,0.656034,0.993395,0.058935,0.017961,0.240484,0.381199,0.028699,0.992104,0.709842,
0.980168,0.373042,0.980168,0.548416,0.972211,0.682938,0.976189,0.431501,0.021805,0.058533,0.054099,0.861699,
0.025649,0.266477,0.042599,0.863600,0.043600,0.859300,0.973875,0.058935,0.993395,0.085334,0.997300,0.270132,
0.972211,0.489958,0.996084,0.519188,0.985587,0.270132,0.966066,0.322931,0.988125,0.575320,0.973875,0.032535,
0.053100,0.866100,0.033338,0.162506,0.993395,0.164534,0.977779,0.190932,0.988125,0.431501,0.006429,0.110520,
0.010273,0.084526,0.010273,0.136513,0.010273,0.240484,0.010273,0.188499,0.010273,0.318464,0.010273,0.344457,
0.010273,0.370450,0.010273,0.266477,0.010273,0.292471,0.969971,0.111735,0.376899,0.038600,0.997300,0.138134,
0.989491,0.217332,0.985587,0.138134,0.996084,0.373042,0.988125,0.489958,0.996084,0.548416,0.972211,0.575320,
0.014117,0.318464,0.014117,0.370450,0.014117,0.292471,0.014117,0.084526,0.014117,0.136513,0.014117,0.240484,
0.029493,0.032540,0.014117,0.344457,0.014117,0.188499,0.993395,0.032535,0.980168,0.402271,0.033338,0.214491,
0.025649,0.214491,0.017961,0.084526,0.025649,0.162506,0.017961,0.188499,0.017961,0.266477,0.021805,0.032540,
0.017961,0.318464,0.017961,0.370450,0.029493,0.110520,0.981683,0.085334,0.980168,0.519188,0.988125,0.460729,
0.969971,0.138134,0.973875,0.217332,0.992104,0.602224,0.992104,0.629130,0.988125,0.682938,0.968232,0.656034,
0.044900,0.867399,0.969971,0.322931,0.047400,0.856899,0.981683,0.164534,0.029493,0.370450,0.006429,0.058533,
0.033338,0.084526,0.002584,0.032540,0.002584,0.058533,0.002584,0.084526,0.002584,0.110520,0.002584,0.136513,
0.002584,0.162506,0.002584,0.188499,0.002584,0.214491,0.002584,0.240484,0.002584,0.266477,0.021805,0.370450,
0.980168,0.629130
UVIndex: 270,317,269,268,268,269,188,125,125,188,52,347,347,52,278,207,207,278,76,134,82,293,285,163,163,285,50,181,181,50,177,309,309,177,122,342,342,122,41,58,58,41,260,24,24,260,343,119,119,343,140,44,44,140,13,14,14,13,15,40,40,15,221,349,
130,214,261,353,353,261,300,26,26,300,27,299,299,27,301,267,267,301,129,215,215,129,303,29,29,303,131,216,216,131,302,35,35,302,307,33,33,307,308,34,34,308,304,30,30,304,305,31,31,305,306,32,3,270,268,266,266,268,125,136,136,125,347,271,
271,347,207,47,47,207,134,120,255,82,163,105,105,163,181,126,126,181,309,191,191,309,342,16,16,342,58,263,263,58,24,264,264,24,119,187,187,119,44,262,262,44,14,12,12,14,40,265,265,40,349,291,355,130,353,356,356,353,26,357,357,26,299,358,
358,299,267,359,359,267,215,360,360,215,29,361,361,29,216,362,362,216,35,363,363,35,33,364,364,33,34,83,83,34,30,84,84,30,31,85,85,31,32,86,17,112,48,344,344,48,49,345,345,49,97,121,121,97,132,77,77,132,201,275,327,230,178,272,
272,178,18,286,286,18,192,193,193,192,311,222,222,311,209,296,296,209,231,149,149,231,114,4,4,114,170,257,257,170,287,19,19,287,89,174,174,89,202,124,324,63,197,117,117,197,354,64,64,354,242,338,338,242,243,65,65,243,295,234,234,295,154,9,
9,154,329,239,239,329,66,62,62,66,153,94,94,153,157,68,68,157,159,69,69,159,100,61,61,100,160,352,292,17,344,78,78,344,345,79,79,345,121,204,204,121,77,346,346,77,275,182,141,327,272,198,198,272,286,252,252,286,193,164,164,193,222,109,
109,222,296,90,90,296,149,42,42,149,4,312,312,4,257,195,195,257,19,8,8,19,174,210,210,174,124,75,175,324,117,199,199,117,64,176,176,64,338,236,236,338,65,67,67,65,234,332,332,234,9,155,155,9,239,330,330,239,62,256,256,62,94,282,
282,94,68,28,28,68,69,161,161,69,61,101,101,61,352,162,203,292,78,93,93,78,79,10,10,79,204,139,139,204,346,250,250,346,182,110,228,141,198,179,179,198,252,21,21,252,164,194,194,164,109,313,313,109,90,211,211,90,42,232,232,42,312,148,
148,312,195,171,171,195,8,290,290,8,210,91,91,210,75,205,335,175,199,280,280,199,176,240,240,176,236,158,158,236,67,87,87,67,332,11,11,332,155,235,235,155,330,60,60,330,256,241,241,256,282,237,237,282,28,144,144,28,161,106,106,161,101,238,
238,101,162,365,133,203,93,70,70,93,10,366,366,10,139,223,223,139,250,36,36,250,110,254,142,228,179,200,200,179,21,339,339,21,194,244,244,194,313,183,183,313,211,351,351,211,232,43,43,232,148,145,145,148,171,196,196,171,290,81,81,290,91,127,
127,91,205,165,180,335,280,45,45,280,240,331,331,240,158,95,95,158,87,107,107,87,11,156,156,11,235,333,333,235,60,104,104,60,241,273,273,241,237,334,334,237,144,71,71,144,106,336,336,106,238,147,147,238,365,337,51,133,70,37,37,70,366,113,
113,366,223,143,143,223,36,246,246,36,254,167,172,142,200,245,245,200,339,38,38,339,244,217,217,244,183,251,251,183,351,150,150,351,43,297,297,43,145,22,22,145,196,229,229,196,81,57,57,81,127,7,7,127,165,102,55,180,45,99,99,45,331,321,
321,331,95,226,226,95,107,322,322,107,156,137,137,156,333,326,326,333,104,138,138,104,273,323,323,273,334,146,146,334,71,320,320,71,336,318,318,336,147,325,325,147,337,319,317,51,37,269,269,37,113,188,188,113,143,52,52,143,246,278,278,246,167,76,
293,172,245,285,285,245,38,50,50,38,217,177,177,217,251,122,122,251,150,41,41,150,297,260,260,297,22,343,343,22,229,140,140,229,57,13,13,57,7,15,15,7,102,221,214,55,99,261,261,99,321,300,300,321,226,27,27,226,322,301,301,322,137,129,
129,137,326,303,303,326,138,131,131,138,323,302,302,323,146,307,307,146,320,308,308,320,318,304,304,318,325,305,305,325,319,306,186,39,169,72,72,169,288,206,206,288,98,258,258,98,1,279,279,1,151,59,59,151,115,184,277,186,72,340,340,72,206,123,
123,206,258,108,108,258,279,190,190,279,59,328,328,59,184,276,74,277,340,185,185,340,123,46,46,123,108,248,248,108,190,25,25,190,328,259,259,328,276,73,96,74,185,111,111,185,46,315,315,46,248,341,341,248,25,298,298,25,259,173,173,259,73,168,
253,96,111,5,5,111,315,220,220,315,341,80,80,341,298,212,212,298,173,88,88,173,168,249,316,253,5,289,289,5,220,166,166,220,80,135,135,80,212,152,152,212,88,2,2,88,249,314,6,219,20,224,224,20,247,189,189,247,53,208,208,53,233,92,
92,233,116,213,213,116,225,23,39,6,224,169,169,224,189,288,288,189,208,98,98,208,92,1,1,92,213,151,151,213,23,115,6,39,317,270,219,6,270,3,253,316,112,17,96,253,17,292,74,96,292,203,277,74,203,133,186,277,133,51,39,186,51,317,
54,0,103,128,218,310,310,54,128,118,274,103,103,0,118,0,54,310,281,294,283,350,227,281,281,284,350,56,348,283,283,294,56,283,284,281
}
LayerElementTexture: 0 {
Version: 101
Name: ""
MappingInformationType: "NoMappingInformation"
ReferenceInformationType: "IndexToDirect"
BlendMode: "Translucent"
TextureAlpha: 1
TextureId:
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: 0
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementTexture"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
}
}
Model: "Model::m61_body", "Mesh" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",1.271010875701904,1.102776527404785,-0.686053872108459
Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
Property: "RotationOffset", "Vector3D", "",0,0,0
Property: "RotationPivot", "Vector3D", "",0,0,0
Property: "ScalingOffset", "Vector3D", "",0,0,0
Property: "ScalingPivot", "Vector3D", "",0,0,0
Property: "TranslationActive", "bool", "",0
Property: "TranslationMin", "Vector3D", "",0,0,0
Property: "TranslationMax", "Vector3D", "",0,0,0
Property: "TranslationMinX", "bool", "",0
Property: "TranslationMinY", "bool", "",0
Property: "TranslationMinZ", "bool", "",0
Property: "TranslationMaxX", "bool", "",0
Property: "TranslationMaxY", "bool", "",0
Property: "TranslationMaxZ", "bool", "",0
Property: "RotationOrder", "enum", "",0
Property: "RotationSpaceForLimitOnly", "bool", "",0
Property: "AxisLen", "double", "",10
Property: "PreRotation", "Vector3D", "",0,0,0
Property: "PostRotation", "Vector3D", "",0,0,0
Property: "RotationActive", "bool", "",0
Property: "RotationMin", "Vector3D", "",0,0,0
Property: "RotationMax", "Vector3D", "",0,0,0
Property: "RotationMinX", "bool", "",0
Property: "RotationMinY", "bool", "",0
Property: "RotationMinZ", "bool", "",0
Property: "RotationMaxX", "bool", "",0
Property: "RotationMaxY", "bool", "",0
Property: "RotationMaxZ", "bool", "",0
Property: "RotationStiffnessX", "double", "",0
Property: "RotationStiffnessY", "double", "",0
Property: "RotationStiffnessZ", "double", "",0
Property: "MinDampRangeX", "double", "",0
Property: "MinDampRangeY", "double", "",0
Property: "MinDampRangeZ", "double", "",0
Property: "MaxDampRangeX", "double", "",0
Property: "MaxDampRangeY", "double", "",0
Property: "MaxDampRangeZ", "double", "",0
Property: "MinDampStrengthX", "double", "",0
Property: "MinDampStrengthY", "double", "",0
Property: "MinDampStrengthZ", "double", "",0
Property: "MaxDampStrengthX", "double", "",0
Property: "MaxDampStrengthY", "double", "",0
Property: "MaxDampStrengthZ", "double", "",0
Property: "PreferedAngleX", "double", "",0
Property: "PreferedAngleY", "double", "",0
Property: "PreferedAngleZ", "double", "",0
Property: "InheritType", "enum", "",0
Property: "ScalingActive", "bool", "",0
Property: "ScalingMin", "Vector3D", "",1,1,1
Property: "ScalingMax", "Vector3D", "",1,1,1
Property: "ScalingMinX", "bool", "",0
Property: "ScalingMinY", "bool", "",0
Property: "ScalingMinZ", "bool", "",0
Property: "ScalingMaxX", "bool", "",0
Property: "ScalingMaxY", "bool", "",0
Property: "ScalingMaxZ", "bool", "",0
Property: "GeometricTranslation", "Vector3D", "",0,0,0
Property: "GeometricRotation", "Vector3D", "",0,0,0
Property: "GeometricScaling", "Vector3D", "",1,1,1
Property: "LookAtProperty", "object", ""
Property: "UpVectorProperty", "object", ""
Property: "Show", "bool", "",1
Property: "NegativePercentShapeSupport", "bool", "",1
Property: "DefaultAttributeIndex", "int", "",0
Property: "Color", "Color", "A",0.8,0.8,0.8
Property: "Size", "double", "",100
Property: "Look", "enum", "",1
}
MultiLayer: 0
MultiTake: 1
Shading: Y
Culling: "CullingOff"
Vertices: -1.006138,-0.386689,3.384958,-1.006138,-0.595895,3.138230,-1.006137,-1.774058,4.003156,-1.006138,0.659182,2.960488,
-1.006138,0.589069,3.138230,-1.006138,0.785383,3.338380,-1.006138,0.778098,2.962672,-1.006138,0.379863,3.384958,
-1.006138,0.785383,4.925021,-1.006138,0.190105,3.510855,-1.006138,-0.196933,3.510855,-1.006137,-1.412673,4.925021,
-1.006137,-1.758328,2.970025,-1.006137,-1.933476,2.306184,-1.006137,-2.315015,2.310519,-1.006137,-2.115479,3.036880,
-1.006138,-0.666008,2.960488,-1.006138,-0.014158,3.534181,-0.853180,0.778427,3.124665,-0.787600,0.778427,3.286658,
-0.898924,0.778427,2.962672,-0.549184,0.785383,3.396447,-0.549184,0.785383,4.925021,-0.546382,1.095626,2.962672,
-0.549184,1.011580,2.962672,-0.549184,0.977562,3.124665,-0.549184,1.095626,4.324112,-0.549184,0.919900,3.286658,
-0.549184,1.207190,4.676752,-0.549184,1.141666,4.766935,-0.549184,1.207190,4.968596,-0.549184,1.141666,4.878411,
-0.549184,1.313210,4.642302,-0.549184,1.419229,4.676752,-0.704842,0.910886,3.124665,-0.677181,0.876624,3.286658,
-0.727715,0.927896,2.962672,-1.158205,-0.450798,2.960488,-1.176716,-0.387474,3.138230,-1.107988,-0.244190,3.387902,
-1.153050,-0.098019,3.388254,-1.269473,-0.097805,3.138230,-1.165654,0.423265,2.960488,-1.183066,0.361980,3.138230,
-1.111754,0.229855,3.387944,-1.155688,0.070211,3.388278,-1.271007,0.069751,3.138230,-1.271555,-0.097784,2.960488,
-1.272958,0.069690,2.960488,0.814121,0.423265,2.960488,0.921426,0.069691,2.960488,0.197652,1.011580,2.962672,
0.376182,0.927897,2.962672,0.920022,-0.097783,2.960488,0.806675,-0.450797,2.960488,0.654606,-0.666007,2.960488,
0.654607,-1.758327,2.970025,0.654606,0.778099,2.962672,0.654606,0.659182,2.960488,0.547391,0.778428,2.962672,
-0.175766,1.142036,2.962672,0.194849,1.095626,2.962672,-0.175766,1.142036,4.324112,-1.079971,1.207190,4.968596,
-1.079971,1.141666,4.878411,-1.079971,1.141666,4.766935,-1.079972,1.313210,4.642302,-1.079972,1.419229,4.676752,
-1.079971,1.207190,4.676752,0.197652,1.095627,4.324112,0.728439,1.207190,4.968596,0.197652,1.207190,4.968596,
0.197652,1.141667,4.878411,0.728439,1.141667,4.878411,0.197652,1.141667,4.766935,0.728439,1.141667,4.766935,
0.728439,1.313210,4.642302,0.197651,1.313210,4.642302,0.197651,1.419229,4.676752,0.728439,1.419229,4.676752,
0.728439,1.207190,4.676752,0.197652,1.207190,4.676752,0.197652,0.785383,4.925021,0.654606,-1.412672,4.925021,
0.654606,0.785383,4.925021,0.728439,1.484752,4.878410,0.728439,1.484752,4.766934,-1.079972,1.484752,4.766934,
-1.079972,1.484752,4.878410,0.728439,1.419230,4.968596,-1.079972,1.419229,4.968596,0.728439,1.313210,5.003042,
-1.079972,1.313210,5.003042,0.917941,-0.097804,3.138230,0.825185,-0.387473,3.138230,0.654606,-0.595894,3.138230,
0.801519,-0.098018,3.388254,0.756456,-0.244190,3.387902,0.654606,0.589070,3.138230,0.831533,0.361981,3.138230,
0.654606,0.379864,3.384958,0.760222,0.229856,3.387944,0.919475,0.069751,3.138230,0.804156,0.070211,3.388278,
0.654606,-0.386689,3.384958,0.654606,0.190106,3.510855,0.654606,-0.196933,3.510855,0.654606,-0.014158,3.534181,
0.654607,-1.774057,4.003156,0.654606,0.785383,3.338380,0.654607,-2.115478,3.036880,0.654607,-2.315014,2.310519,
0.654607,-1.933475,2.306184,0.501648,0.778428,3.124665,0.436067,0.778428,3.286658,0.197652,0.785383,3.396447,
0.197652,0.977562,3.124665,0.197652,0.919901,3.286658,0.325649,0.876624,3.286658,0.353310,0.910886,3.124665,
0.831520,1.006264,2.960488,1.057904,0.711236,2.960488,1.324315,0.865049,2.630295,1.049046,1.223788,2.630295,
-0.175766,-1.425542,2.960489,-0.544460,-1.377003,2.960489,-0.624078,-1.674146,2.630295,-0.175765,-1.733167,2.630295,
0.536494,-1.234692,2.960489,0.192926,-1.377003,2.960489,0.272547,-1.674146,2.630295,0.690307,-1.501103,2.630295,
-1.551745,0.367670,2.960488,-1.409436,0.711237,2.960488,-1.675848,0.865048,2.630295,-1.848889,0.447288,2.630295,
0.536493,1.232647,2.960488,0.690306,1.499058,2.630295,0.831521,-1.008309,2.960489,1.049047,-1.225833,2.630295,
-1.600284,-0.001022,2.960488,-1.907909,-0.001022,2.630295,0.192926,1.374959,2.960488,0.272546,1.672101,2.630295,
1.057904,-0.713283,2.960488,1.324315,-0.867094,2.630295,-1.551745,-0.369715,2.960488,-1.848888,-0.449335,2.630295,
-0.175766,1.423497,2.960488,-0.175767,1.731122,2.630295,1.200214,-0.369716,2.960488,1.497357,-0.449334,2.630295,
-1.409435,-0.713281,2.960488,-1.675847,-0.867095,2.630295,-0.544459,1.374958,2.960488,-0.624077,1.672100,2.630295,
1.248752,-0.001023,2.960488,1.556377,-0.001023,2.630295,-1.183053,-1.008309,2.960489,-1.400578,-1.225834,2.630295,
-0.888026,1.232648,2.960488,-1.041837,1.499057,2.630295,1.200213,0.367671,2.960488,1.497357,0.447289,2.630295,
-0.888025,-1.234692,2.960489,-1.041838,-1.501103,2.630295,-1.183053,1.006265,2.960488,-1.400576,1.223787,2.630295,
1.914448,-0.001023,1.981309,1.843226,0.539964,1.981309,-1.653771,-1.479026,1.981310,-1.220875,-1.811201,1.981310,
-1.220874,1.809155,1.981309,-1.653770,1.476982,1.981309,1.634413,1.044083,1.981309,-0.716753,-2.020016,1.981310,
-0.175765,-2.091238,1.981310,0.365223,-2.020016,1.981310,-1.985944,1.044085,1.981309,1.302240,1.476983,1.981309,
0.869342,-1.811201,1.981310,-2.194758,0.539965,1.981309,0.869340,1.809156,1.981309,1.302239,-1.479027,1.981310,
-2.265980,-0.001023,1.981309,0.365221,2.017968,1.981309,1.634414,-1.046129,1.981310,-2.194758,-0.542011,1.981310,
-0.175767,2.089190,1.981309,1.843226,-0.542009,1.981310,-1.985945,-1.046130,1.981310,-0.716753,2.017970,1.981309,
1.019092,2.068531,1.332324,0.442739,2.307265,1.332324,1.514018,-1.690807,1.332324,1.893789,-1.195880,1.332324,
-2.565482,-0.001023,1.332324,-2.484054,-0.619526,1.332324,-0.175767,2.388692,1.332324,2.132523,-0.619527,1.332324,
-2.245320,-1.195880,1.332324,-0.794270,2.307264,1.332324,2.213950,-0.001023,1.332324,-1.865550,-1.690805,1.332324,
-1.370623,2.068530,1.332324,2.132523,0.617480,1.332324,-1.370624,-2.070577,1.332324,-1.865550,1.688761,1.332324,
1.893788,1.193836,1.332324,-0.794271,-2.309311,1.332324,-0.175765,-2.390738,1.332324,0.442738,-2.309310,1.332324,
-2.245319,1.193834,1.332324,1.514019,1.688762,1.332324,1.019091,-2.070576,1.332324,-2.484052,0.617481,1.332324,
-2.007600,-1.832855,0.683341,-1.471069,-2.244551,0.683341,-1.471068,2.242506,0.683341,-2.007598,1.830810,0.683341,
2.326564,0.669475,0.683341,2.067762,1.294278,0.683341,-0.846264,-2.503353,0.683341,-0.175765,-2.591627,0.683341,
0.494731,-2.503355,0.683341,-2.419295,1.294279,0.683341,1.656068,1.830811,0.683341,1.119536,-2.244552,0.683341,
-2.678097,0.669473,0.683341,1.119535,2.242504,0.683341,1.656067,-1.832856,0.683341,-2.766369,-0.001023,0.683341,
0.494732,2.501307,0.683341,2.067763,-1.296323,0.683341,-2.678096,-0.671519,0.683341,-0.175767,2.589579,0.683341,
2.326565,-0.671520,0.683341,-2.419294,-1.296324,0.683341,-0.846263,2.501306,0.683341,2.414837,-0.001023,0.683341,
1.177813,2.343442,0.034353,0.524899,2.613890,0.034353,1.738483,-1.915272,0.034354,2.168700,-1.354601,0.034354,
-2.882922,-0.001023,0.034354,-2.790678,-0.701687,0.034354,-0.175767,2.706132,0.034353,2.439147,-0.701687,0.034354,
-2.520233,-1.354600,0.034354,-0.876428,2.613890,0.034353,2.531390,-0.001023,0.034354,-2.090016,-1.915271,0.034354,
-1.529344,2.343443,0.034353,2.439146,0.699640,0.034354,-1.529345,-2.345491,0.034354,-2.090015,1.913225,0.034353,
2.168700,1.352556,0.034354,-0.876431,-2.615937,0.034354,-0.175765,-2.708181,0.034354,0.524899,-2.615936,0.034354,
-2.520232,1.352557,0.034354,1.738484,1.913227,0.034353,1.177814,-2.345490,0.034354,-2.790678,0.699641,0.034354,
-1.546527,2.373205,-0.618027,-2.114314,1.937527,-0.618027,2.472340,0.708536,-0.618027,2.198461,1.369739,-0.618027,
-1.546527,-2.375250,-0.618026,-0.885324,-2.649131,-0.618026,-0.175765,-2.742547,-0.618026,0.533792,-2.649130,-0.618026,
-2.549994,1.369737,-0.618027,1.762783,1.937526,-0.618027,1.194995,-2.375251,-0.618026,-2.823872,0.708534,-0.618027,
1.194995,2.373204,-0.618027,1.762784,-1.939571,-0.618026,-2.917288,-0.001023,-0.618027,0.533792,2.647082,-0.618027,
2.198462,-1.371784,-0.618026,-2.823872,-0.710580,-0.618027,-0.175767,2.740499,-0.618027,2.472341,-0.710581,-0.618027,
-2.549995,-1.371783,-0.618026,-0.885324,2.647084,-0.618027,2.565757,-0.001024,-0.618027,-2.114314,-1.939572,-0.618026,
1.815424,-1.992211,-0.721002,2.262933,-1.409006,-0.721003,-2.991734,-0.001023,-0.721003,-2.895782,-0.729850,-0.721003,
0.553059,2.718992,-0.721003,-0.175767,2.814941,-0.721003,2.544250,-0.729848,-0.721003,-2.614466,-1.409006,-0.721003,
-0.904591,2.718991,-0.721003,2.640202,-0.001024,-0.721003,-2.166955,-1.992213,-0.721002,-1.583750,2.437676,-0.721003,
2.544249,0.727803,-0.721003,-1.583750,-2.439723,-0.721002,-2.166954,1.990167,-0.721003,2.262932,1.406959,-0.721003,
-0.904593,-2.721038,-0.721002,-0.175765,-2.816992,-0.721002,0.553061,-2.721038,-0.721002,-2.614465,1.406960,-0.721003,
1.815423,1.990166,-0.721003,1.232218,-2.439722,-0.721002,-2.895779,0.727803,-0.721003,1.232218,2.437674,-0.721003,
-1.583750,2.437675,-1.077128,-2.166954,1.990167,-1.077128,2.544249,0.727803,-1.077127,2.262932,1.406959,-1.077127,
-1.583750,-2.439723,-1.077127,-0.904593,-2.721038,-1.077127,-0.175765,-2.816992,-1.077127,0.553061,-2.721038,-1.077127,
-2.614465,1.406960,-1.077127,1.815423,1.990166,-1.077128,1.232218,-2.439723,-1.077127,-2.895779,0.727803,-1.077127,
1.232218,2.437674,-1.077128,1.815424,-1.992211,-1.077127,-2.991734,-0.001023,-1.077127,0.553059,2.718991,-1.077128,
2.262933,-1.409006,-1.077127,-2.895782,-0.729850,-1.077127,-0.175767,2.814941,-1.077128,2.544250,-0.729848,-1.077127,
-2.614466,-1.409006,-1.077127,-0.904591,2.718991,-1.077128,2.640202,-0.001024,-1.077127,-2.166955,-1.992213,-1.077127,
1.766945,-1.943735,-1.180103,2.203561,-1.374728,-1.180103,-2.923174,-0.001023,-1.180104,-2.829560,-0.712104,-1.180104,
0.535316,2.652770,-1.180104,-0.175767,2.746384,-1.180104,2.478028,-0.712105,-1.180104,-2.555091,-1.374727,-1.180103,
-0.886848,2.652769,-1.180104,2.571644,-0.001024,-1.180104,-2.118478,-1.943734,-1.180103,-1.549471,2.378303,-1.180104,
2.478028,0.710059,-1.180104,-1.549471,-2.380351,-1.180103,-2.118477,1.941688,-1.180104,2.203560,1.372680,-1.180104,
-0.886848,-2.654816,-1.180103,-0.175765,-2.748434,-1.180103,0.535316,-2.654818,-1.180103,-2.555092,1.372681,-1.180104,
1.766946,1.941689,-1.180104,1.197939,-2.380350,-1.180103,-2.829558,0.710058,-1.180104,1.197939,2.378302,-1.180104,
2.291780,0.660154,-2.054039,2.036576,1.276272,-2.054039,-1.453063,-2.213366,-2.054039,-0.836943,-2.468571,-2.054039,
-0.175765,-2.555617,-2.054039,0.485413,-2.468570,-2.054039,-1.982136,1.805347,-2.054039,-2.388107,1.276272,-2.054039,
1.630604,1.805345,-2.054039,1.101531,-2.213365,-2.054039,-2.643312,0.660153,-2.054039,1.101529,2.211319,-2.054040,
1.630605,-1.807392,-2.054039,-2.730358,-0.001023,-2.054039,0.485411,2.466524,-2.054040,2.036577,-1.278320,-2.054039,
-2.643312,-0.662200,-2.054039,-0.175767,2.553568,-2.054040,2.291780,-0.662200,-2.054039,-2.388108,-1.278319,-2.054039,
-0.836943,2.466523,-2.054040,2.378826,-0.001024,-2.054039,-1.982135,-1.807393,-2.054039,-1.453062,2.211318,-2.054040,
-2.510766,-0.001023,-2.791022,-2.431202,-0.605367,-2.791022,0.428576,2.254411,-2.791022,-0.175767,2.333973,-2.791022,
1.846403,-1.168522,-2.791021,2.079670,-0.605365,-2.791022,-2.197934,-1.168524,-2.791021,-0.780108,2.254411,-2.791022,
2.159234,-0.001024,-2.791022,-1.826860,-1.652118,-2.791021,-1.343264,2.021144,-2.791022,2.079670,0.603319,-2.791022,
-1.343265,-2.023194,-2.791021,-1.826859,1.650070,-2.791022,1.846403,1.166476,-2.791022,-0.780108,-2.256461,-2.791021,
-0.175765,-2.336025,-2.791021,0.428578,-2.256460,-2.791021,-2.197935,1.166477,-2.791022,1.475329,1.650071,-2.791022,
0.991735,-2.023193,-2.791021,-2.431202,0.603318,-2.791022,0.991734,2.021144,-2.791022,1.475328,-1.652117,-2.791021,
1.736979,0.511495,-3.577689,1.539157,0.989086,-3.577689,-1.165876,-1.715946,-3.577688,-0.688285,-1.913770,-3.577688,
-0.175765,-1.981245,-3.577688,0.336754,-1.913770,-3.577688,-1.575993,1.399203,-3.577689,-1.890687,0.989087,-3.577689,
1.224462,1.399204,-3.577689,0.814345,-1.715945,-3.577688,-2.088512,0.511496,-3.577689,0.814344,1.713898,-3.577689,
1.224463,-1.401251,-3.577688,-2.155986,-0.001023,-3.577689,0.336753,1.911723,-3.577689,1.539157,-0.991135,-3.577688,
-2.088511,-0.513543,-3.577689,-0.175767,1.979196,-3.577689,1.736979,-0.513542,-3.577689,-1.890688,-0.991134,-3.577688,
-0.688284,1.911723,-3.577689,1.804455,-0.001024,-3.577689,-1.575994,-1.401251,-3.577688,-1.165877,1.713897,-3.577689,
0.226645,1.500793,-4.165619,-0.175766,1.553771,-4.165619,1.170727,-0.778421,-4.165618,1.326050,-0.403434,-4.165618,
-1.677581,-0.403434,-4.165618,-1.522258,-0.778422,-4.165618,-0.578175,1.500792,-4.165619,1.379029,-0.001024,-4.165618,
-1.275172,-1.100430,-4.165618,-0.953163,1.345467,-4.165618,1.326049,0.401387,-4.165618,-0.953164,-1.347516,-4.165618,
-1.275171,1.098381,-4.165618,1.170727,0.776375,-4.165618,-0.578177,-1.502841,-4.165618,-0.175765,-1.555820,-4.165618,
0.226646,-1.502840,-4.165618,-1.522257,0.776374,-4.165618,0.923640,1.098382,-4.165618,0.601631,-1.347515,-4.165618,
-1.677581,0.401386,-4.165618,0.601632,1.345468,-4.165618,0.923641,-1.100429,-4.165618,-1.730561,-0.001023,-4.165618,
-0.720424,-0.944401,-4.538250,-0.457703,-1.053223,-4.538250,-0.175766,-1.090341,-4.538250,0.106170,-1.053223,-4.538250,
-0.946028,0.769239,-4.538250,-1.119142,0.543635,-4.538250,0.767610,0.543635,-4.538250,0.594498,0.769240,-4.538250,
0.368892,-0.944401,-4.538250,-1.227966,0.280912,-4.538250,0.368892,0.942351,-4.538250,0.594499,-0.771287,-4.538250,
-1.265082,-0.001023,-4.538250,0.106171,1.051175,-4.538250,0.767610,-0.545683,-4.538250,-1.227966,-0.282961,-4.538250,
-0.175766,1.088291,-4.538250,0.876434,-0.282960,-4.538250,-1.119142,-0.545681,-4.538250,-0.457702,1.051174,-4.538250,
0.913550,-0.001025,-4.538250,-0.946030,-0.771288,-4.538250,-0.720424,0.942351,-4.538250,0.876433,0.280913,-4.538250,
0.136551,1.164553,-4.694015,-0.175766,1.205669,-4.694015,0.869262,-0.604371,-4.694015,0.989813,-0.313340,-4.694015,
-1.341342,-0.313341,-4.694015,-1.220794,-0.604372,-4.694015,-0.488081,1.164553,-4.694015,1.030928,-0.001025,-4.694015,
-1.029029,-0.854287,-4.694015,-0.779112,1.044005,-4.694015,0.989813,0.311293,-4.694015,-0.779114,-1.046053,-4.694015,
-1.029028,0.852238,-4.694015,0.869262,0.602323,-4.694015,-0.488083,-1.166602,-4.694015,-0.175766,-1.207719,-4.694015,
0.136550,-1.166602,-4.694015,-1.220794,0.602322,-4.694015,0.677497,0.852239,-4.694015,0.427582,-1.046053,-4.694015,
-1.341342,0.311292,-4.694015,0.427582,1.044005,-4.694015,0.677496,-0.854286,-4.694015,-1.382460,-0.001023,-4.694015,
-0.175766,-1.314180,-4.694015,0.164104,-1.269434,-4.694015,-1.104306,0.927516,-4.694015,-1.312991,0.655554,-4.694015,
0.961459,0.655553,-4.694015,0.752775,0.927517,-4.694015,-0.515635,-1.269434,-4.694015,0.480812,-1.138250,-4.694015,
-1.444175,0.338846,-4.694015,0.480811,1.136202,-4.694015,0.752775,-0.929564,-4.694015,-1.488921,-0.001023,-4.694015,
0.164103,1.267386,-4.694015,0.961459,-0.657600,-4.694015,-1.444174,-0.340893,-4.694015,-0.175766,1.312130,-4.694015,
1.092646,-0.340892,-4.694015,-1.312990,-0.657601,-4.694015,-0.515636,1.267386,-4.694015,1.137389,-0.001025,-4.694015,
-1.104307,-0.929565,-4.694015,-0.832344,1.136201,-4.694015,1.092645,0.338845,-4.694015,-0.832343,-1.138250,-4.694015,
0.961459,-0.657600,-4.868652,1.092646,-0.340892,-4.868652,-1.444174,-0.340893,-4.868652,-1.312990,-0.657601,-4.868652,
-0.175766,1.312130,-4.868652,-0.515636,1.267386,-4.868652,1.137389,-0.001025,-4.868652,-1.104307,-0.929565,-4.868652,
-0.832344,1.136201,-4.868652,1.092645,0.338845,-4.868652,-0.832343,-1.138250,-4.868652,-1.104306,0.927516,-4.868652,
0.961459,0.655553,-4.868652,-0.515635,-1.269434,-4.868652,-0.175766,-1.314180,-4.868652,0.164104,-1.269434,-4.868652,
-1.312991,0.655554,-4.868652,0.752775,0.927517,-4.868652,0.480812,-1.138250,-4.868652,-1.444175,0.338846,-4.868652,
0.480811,1.136202,-4.868652,0.752775,-0.929564,-4.868652,-1.488921,-0.001023,-4.868652,0.164103,1.267386,-4.868652
PolygonVertexIndex: 0,1,-3,3,4,5,-7,5,4,-8,8,5,-8,8,7,-10,10,0,-12,8,10,-12,12,13,14,-16,0,2,-12,12,15,-3,
1,16,12,-3,17,10,-9,8,9,-18,18,5,-20,20,6,5,-19,19,5,-22,22,21,5,-9,23,24,-26,26,27,-22,26,23,
25,-28,28,26,-30,22,30,-32,32,33,-27,22,31,-30,28,32,-27,26,22,-30,21,22,-27,25,34,35,-28,34,18,19,-36,36,
20,18,-35,24,36,34,-26,35,19,-22,27,35,-22,37,16,1,-39,38,39,40,-42,42,43,4,-4,4,43,44,-8,1,0,39,
-39,7,44,-10,0,10,-40,44,45,17,-10,43,46,45,-45,47,37,38,-42,45,40,-18,41,40,45,-47,47,41,46,-49,48,46,
43,-43,17,40,39,-11,49,50,48,-43,51,52,36,-25,53,54,37,-48,55,56,12,-17,54,55,16,-38,6,20,-4,57,58,-60,
58,49,42,-4,59,58,3,-21,52,59,20,-37,51,24,-61,23,60,-25,61,51,-61,48,50,53,-48,26,62,60,-24,63,64,31,
-31,64,65,29,-32,66,67,33,-33,68,66,32,-29,65,68,28,-30,22,8,-12,69,61,60,-63,70,71,72,-74,73,72,74,-76,
76,77,78,-80,80,81,77,-77,75,74,81,-81,82,83,-85,30,22,82,-72,85,86,87,-89,33,62,-27,62,33,-79,78,69,-63,
83,82,22,-12,89,85,88,-91,91,89,90,-93,63,30,-93,70,91,-72,92,30,71,-92,67,87,-34,79,78,-87,78,33,87,-87,
53,93,94,-55,54,94,95,-56,94,93,96,-98,49,58,98,-100,98,100,101,-100,50,49,99,-103,99,101,103,-103,95,94,97,-105,
100,105,-102,104,97,-107,102,103,96,-94,50,102,93,-54,101,105,107,-104,107,106,97,-97,96,103,-108,104,108,-96,58,57,109,-99,
109,100,-99,107,84,-107,84,100,-110,84,105,-101,106,83,-105,84,107,-106,84,83,-107,56,110,111,-113,104,83,-109,56,108,-111,56,
55,95,-109,113,114,-110,59,113,109,-58,114,115,-110,82,84,109,-116,61,116,-52,69,115,-118,69,117,116,-62,81,74,-70,82,72,
-72,77,69,-79,82,74,-73,81,69,-78,69,74,-83,115,69,-83,116,117,118,-120,119,118,114,-114,52,119,113,-60,51,116,119,-53,
118,115,-115,117,115,-119,63,92,90,-89,64,63,88,-88,65,64,87,-68,68,65,67,-67,108,83,11,-3,110,108,2,-16,111,110,
15,-15,112,111,14,-14,56,112,13,-13,89,91,70,-74,85,89,73,-76,86,85,75,-81,79,86,80,-77,120,121,122,-124,124,125,
126,-128,128,129,130,-132,132,133,134,-136,136,120,123,-138,138,128,131,-140,140,132,135,-142,142,136,137,-144,144,138,139,-146,146,140,
141,-148,148,142,143,-150,150,144,145,-152,152,146,147,-154,154,148,149,-156,156,150,151,-158,158,152,153,-160,160,154,155,-162,162,156,
157,-164,164,158,159,-166,166,160,161,-168,121,162,163,-123,125,164,165,-127,129,124,127,-131,133,166,167,-135,163,157,168,-170,165,159,
170,-172,167,161,172,-174,122,163,169,-175,126,165,171,-176,130,127,176,-178,134,167,173,-179,123,122,174,-180,127,126,175,-177,131,130,
177,-181,135,134,178,-182,137,123,179,-183,139,131,180,-184,141,135,181,-185,143,137,182,-186,145,139,183,-187,147,141,184,-188,149,143,
185,-189,151,145,186,-190,153,147,187,-191,155,149,188,-192,157,151,189,-169,159,153,190,-171,161,155,191,-173,185,182,192,-194,186,183,
194,-196,187,184,196,-198,188,185,193,-199,189,186,195,-200,190,187,197,-201,191,188,198,-202,168,189,199,-203,170,190,200,-204,172,191,
201,-205,169,168,202,-206,171,170,203,-207,173,172,204,-208,174,169,205,-209,175,171,206,-210,177,176,210,-212,178,173,207,-213,179,174,
208,-214,176,175,209,-211,180,177,211,-215,181,178,212,-216,182,179,213,-193,183,180,214,-195,184,181,215,-197,206,203,216,-218,207,204,
218,-220,208,205,220,-222,209,206,217,-223,211,210,223,-225,212,207,219,-226,213,208,221,-227,210,209,222,-224,214,211,224,-228,215,212,
225,-229,192,213,226,-230,194,214,227,-231,196,215,228,-232,193,192,229,-233,195,194,230,-234,197,196,231,-235,198,193,232,-236,199,195,
233,-237,200,197,234,-238,201,198,235,-239,202,199,236,-240,203,200,237,-217,204,201,238,-219,205,202,239,-221,232,229,240,-242,233,230,
242,-244,234,231,244,-246,235,232,241,-247,236,233,243,-248,237,234,245,-249,238,235,246,-250,239,236,247,-251,216,237,248,-252,218,238,
249,-253,220,239,250,-254,217,216,251,-255,219,218,252,-256,221,220,253,-257,222,217,254,-258,224,223,258,-260,225,219,255,-261,226,221,
256,-262,223,222,257,-259,227,224,259,-263,228,225,260,-264,229,226,261,-241,230,227,262,-243,231,228,263,-245,255,252,264,-266,256,253,
266,-268,257,254,268,-270,259,258,270,-272,260,255,265,-273,261,256,267,-274,258,257,269,-271,262,259,271,-275,263,260,272,-276,240,261,
273,-277,242,262,274,-278,244,263,275,-279,241,240,276,-280,243,242,277,-281,245,244,278,-282,246,241,279,-283,247,243,280,-284,248,245,
281,-285,249,246,282,-286,250,247,283,-287,251,248,284,-288,252,249,285,-265,253,250,286,-267,254,251,287,-269,280,277,288,-290,281,278,
290,-292,282,279,292,-294,283,280,289,-295,284,281,291,-296,285,282,293,-297,286,283,294,-298,287,284,295,-299,264,285,296,-300,266,286,
297,-301,268,287,298,-302,265,264,299,-303,267,266,300,-304,269,268,301,-305,271,270,305,-307,272,265,302,-308,273,267,303,-309,270,269,
304,-306,274,271,306,-310,275,272,307,-311,276,273,308,-312,277,274,309,-289,278,275,310,-291,279,276,311,-293,302,299,312,-314,303,300,
314,-316,304,301,316,-318,306,305,318,-320,307,302,313,-321,308,303,315,-322,305,304,317,-319,309,306,319,-323,310,307,320,-324,311,308,
321,-325,288,309,322,-326,290,310,323,-327,292,311,324,-328,289,288,325,-329,291,290,326,-330,293,292,327,-331,294,289,328,-332,295,291,
329,-333,296,293,330,-334,297,294,331,-335,298,295,332,-336,299,296,333,-313,300,297,334,-315,301,298,335,-317,328,325,336,-338,329,326,
338,-340,330,327,340,-342,331,328,337,-343,332,329,339,-344,333,330,341,-345,334,331,342,-346,335,332,343,-347,312,333,344,-348,314,334,
345,-349,316,335,346,-350,313,312,347,-351,315,314,348,-352,317,316,349,-353,319,318,353,-355,320,313,350,-356,321,315,351,-357,318,317,
352,-354,322,319,354,-358,323,320,355,-359,324,321,356,-360,325,322,357,-337,326,323,358,-339,327,324,359,-341,351,348,360,-362,352,349,
362,-364,354,353,364,-366,355,350,366,-368,356,351,361,-369,353,352,363,-365,357,354,365,-370,358,355,367,-371,359,356,368,-372,336,357,
369,-373,338,358,370,-374,340,359,371,-375,337,336,372,-376,339,338,373,-377,341,340,374,-378,342,337,375,-379,343,339,376,-380,344,341,
377,-381,345,342,378,-382,346,343,379,-383,347,344,380,-384,348,345,381,-361,349,346,382,-363,350,347,383,-367,376,373,384,-386,377,374,
386,-388,378,375,388,-390,379,376,385,-391,380,377,387,-392,381,378,389,-393,382,379,390,-394,383,380,391,-395,360,381,392,-396,362,382,
393,-397,366,383,394,-398,361,360,395,-399,363,362,396,-400,365,364,400,-402,367,366,397,-403,368,361,398,-404,364,363,399,-401,369,365,
401,-405,370,367,402,-406,371,368,403,-407,372,369,404,-408,373,370,405,-385,374,371,406,-387,375,372,407,-389,398,395,408,-410,399,396,
410,-412,401,400,412,-414,402,397,414,-416,403,398,409,-417,400,399,411,-413,404,401,413,-418,405,402,415,-419,406,403,416,-420,407,404,
417,-421,384,405,418,-422,386,406,419,-423,388,407,420,-424,385,384,421,-425,387,386,422,-426,389,388,423,-427,390,385,424,-428,391,387,
425,-429,392,389,426,-430,393,390,427,-431,394,391,428,-432,395,392,429,-409,396,393,430,-411,397,394,431,-415,425,422,432,-434,426,423,
434,-436,427,424,436,-438,428,425,433,-439,429,426,435,-440,430,427,437,-441,431,428,438,-442,408,429,439,-443,410,430,440,-444,414,431,
441,-445,409,408,442,-446,411,410,443,-447,413,412,447,-449,415,414,444,-450,416,409,445,-451,412,411,446,-448,417,413,448,-452,418,415,
449,-453,419,416,450,-454,420,417,451,-455,421,418,452,-456,422,419,453,-433,423,420,454,-435,424,421,455,-437,446,443,456,-458,448,447,
458,-460,449,444,460,-462,450,445,462,-464,447,446,457,-459,451,448,459,-465,452,449,461,-466,453,450,463,-467,454,451,464,-468,455,452,
465,-469,432,453,466,-470,434,454,467,-471,436,455,468,-472,433,432,469,-473,435,434,470,-474,437,436,471,-475,438,433,472,-476,439,435,
473,-477,440,437,474,-478,441,438,475,-479,442,439,476,-480,443,440,477,-457,444,441,478,-461,445,442,479,-463,472,469,480,-482,473,470,
482,-484,474,471,484,-486,475,472,481,-487,476,473,483,-488,477,474,485,-489,478,475,486,-490,479,476,487,-491,456,477,488,-492,460,478,
489,-493,462,479,490,-494,457,456,491,-495,459,458,495,-497,461,460,492,-498,463,462,493,-499,458,457,494,-496,464,459,496,-500,465,461,
497,-501,466,463,498,-502,467,464,499,-503,468,465,500,-504,469,466,501,-481,470,467,502,-483,471,468,503,-485,496,495,504,-506,497,492,
506,-508,498,493,508,-510,495,494,510,-505,499,496,505,-512,500,497,507,-513,501,498,509,-514,502,499,511,-515,503,500,512,-516,480,501,
513,-517,482,502,514,-518,484,503,515,-519,481,480,516,-520,483,482,517,-521,485,484,518,-522,486,481,519,-523,487,483,520,-524,488,485,
521,-525,489,486,522,-526,490,487,523,-527,491,488,524,-528,492,489,525,-507,493,490,526,-509,494,491,527,-511,520,517,528,-530,521,518,
530,-532,522,519,532,-534,523,520,529,-535,524,521,531,-536,525,522,533,-537,526,523,534,-538,527,524,535,-539,506,525,536,-540,508,526,
537,-541,510,527,538,-542,505,504,542,-544,507,506,539,-545,509,508,540,-546,504,510,541,-543,511,505,543,-547,512,507,544,-548,513,509,
545,-549,514,511,546,-550,515,512,547,-551,516,513,548,-552,517,514,549,-529,518,515,550,-531,519,516,551,-533,534,529,528,-550,537,534,
549,-547,540,537,546,-544,545,540,543,-543,548,545,542,-542,551,548,541,-539,532,551,538,-536,533,532,535,-532,536,533,531,-531,539,536,
530,-551,544,539,550,-548,152,158,164,-126,146,152,125,-125,140,146,124,-130,132,140,129,-129,133,132,128,-139,166,133,138,-145,160,166,
144,-151,154,160,150,-157,148,154,156,-163,142,148,162,-122,136,142,121,-121
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: -1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,0.018239,0.999739,-0.013777,0.010545,0.999823,-0.015577,
0.017628,0.998059,-0.059727,0.013402,0.999802,-0.014684,0.013402,0.999802,-0.014684,0.010545,0.999823,-0.015577,
0.018239,0.999739,-0.013777,0.017628,0.998059,-0.059727,0.010545,0.999823,-0.015577,0.001516,0.999914,-0.013043,
-0.000000,1.000000,-0.000000,0.001516,0.999914,-0.013043,0.010545,0.999823,-0.015577,-0.000000,1.000000,-0.000000,
-0.999671,0.025371,0.003659,-0.999420,0.033319,0.006998,-0.999871,0.016055,-0.000253,-1.000000,0.000583,-0.000057,
-0.999956,0.009319,-0.000588,-1.000000,-0.000000,0.000000,-1.000000,0.000583,-0.000057,-0.999671,0.025371,0.003659,
-0.999871,0.016055,-0.000253,-0.999956,0.009319,-0.000588,-1.000000,-0.000001,-0.000000,-1.000000,0.000583,-0.000057,
-1.000000,-0.000001,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000001,-0.000000,-1.000000,-0.000001,-0.000000,
-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000583,-0.000057,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000001,-0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,-0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000583,-0.000057,-1.000000,0.000583,-0.000057,-1.000000,-0.000000,-0.000000,-1.000000,-0.000001,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,0.000583,-0.000057,-0.378228,0.898393,0.223234,
-0.517787,0.825469,0.224719,-0.438533,0.711996,0.548407,-0.298052,0.805149,0.512738,-0.517787,0.825469,0.224719,
-0.648055,0.731395,0.212335,-0.594289,0.667018,0.449342,-0.438533,0.711996,0.548407,-0.538356,0.824260,0.175412,
-0.651181,0.738074,0.176663,-0.648055,0.731395,0.212335,-0.517787,0.825469,0.224719,-0.404330,0.898659,0.170087,
-0.538356,0.824260,0.175412,-0.517787,0.825469,0.224719,-0.378228,0.898393,0.223234,-0.438533,0.711996,0.548407,
-0.594289,0.667018,0.449342,-0.289509,0.542646,0.788492,-0.298052,0.805149,0.512738,-0.438533,0.711996,0.548407,
-0.289509,0.542646,0.788492,-0.863137,-0.491056,0.117722,-0.782126,-0.595682,0.182872,-0.758095,-0.582550,0.293135,
-0.855849,-0.443057,0.266878,-0.855849,-0.443057,0.266878,-0.745920,-0.348012,0.567883,-0.815221,-0.124209,0.565674,
-0.964850,-0.152608,0.213952,-0.874035,0.472946,0.111290,-0.866134,0.427002,0.259771,-0.772635,0.568532,0.282499,
-0.796504,0.578779,0.174919,-0.772635,0.568532,0.282499,-0.866134,0.427002,0.259771,-0.754112,0.335555,0.564551,
-0.682204,0.509938,0.523985,-0.758095,-0.582550,0.293135,-0.669549,-0.516307,0.533976,-0.745920,-0.348012,0.567883,
-0.855849,-0.443057,0.266878,-0.682204,0.509938,0.523985,-0.754112,0.335555,0.564551,-0.669433,0.233603,0.705187,
-0.669549,-0.516307,0.533976,-0.669101,-0.239488,0.703526,-0.745920,-0.348012,0.567883,-0.754112,0.335555,0.564551,
-0.817982,0.103772,0.565806,-0.697310,-0.008375,0.716720,-0.669433,0.233603,0.705187,-0.866134,0.427002,0.259771,
-0.968100,0.133553,0.212003,-0.817982,0.103772,0.565806,-0.754112,0.335555,0.564551,-0.987269,-0.158679,0.010982,
-0.863137,-0.491056,0.117722,-0.855849,-0.443057,0.266878,-0.964850,-0.152608,0.213952,-0.817982,0.103772,0.565806,
-0.815221,-0.124209,0.565674,-0.697310,-0.008375,0.716720,-0.964850,-0.152608,0.213952,-0.815221,-0.124209,0.565674,
-0.817982,0.103772,0.565806,-0.968100,0.133553,0.212003,-0.987269,-0.158679,0.010982,-0.964850,-0.152608,0.213952,
-0.968100,0.133553,0.212003,-0.989854,0.141746,0.009890,-0.989854,0.141746,0.009890,-0.968100,0.133553,0.212003,
-0.866134,0.427002,0.259771,-0.874035,0.472946,0.111290,-0.697310,-0.008375,0.716720,-0.815221,-0.124209,0.565674,
-0.745920,-0.348012,0.567883,-0.669101,-0.239488,0.703526,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,-0.003650,-0.999993,0.000000,-0.008730,-0.999962,
0.000000,-0.008730,-0.999962,0.000000,-0.003650,-0.999993,0.000000,0.000000,-1.000000,0.000000,-0.003650,-0.999993,
0.000000,-0.003650,-0.999993,0.000000,0.000000,-1.000000,-0.000056,0.018358,-0.999831,-0.000012,0.014911,-0.999889,
-0.000011,0.007707,-0.999970,0.000056,0.018358,-0.999831,0.000011,0.007707,-0.999970,0.000012,0.014911,-0.999889,
0.000011,0.007707,-0.999970,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000011,0.007707,-0.999970,
0.000012,0.014911,-0.999889,0.000011,0.007707,-0.999970,-0.000011,0.007707,-0.999970,-0.000012,0.014911,-0.999889,
-0.000000,0.000000,-1.000000,0.000012,0.014911,-0.999889,-0.000012,0.014911,-0.999889,-0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000002,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,-0.115720,0.929040,-0.351417,-0.000000,0.934023,-0.357213,-0.000000,1.000000,-0.000129,
-0.123793,0.992308,-0.000128,0.000000,-0.587777,0.809023,0.000000,-0.951056,0.309018,0.000000,-0.951056,0.309018,
0.000000,-0.401977,0.915650,0.000000,-0.951056,0.309018,0.000000,-0.951054,-0.309024,0.000000,-0.951054,-0.309024,
0.000000,-0.951056,0.309018,0.000000,0.000001,-1.000000,0.000000,0.587790,-0.809013,-0.010486,0.696785,-0.717204,
0.000000,0.000001,-1.000000,0.000000,-0.587789,-0.809015,0.000000,0.000001,-1.000000,0.000000,0.000001,-1.000000,
0.000000,-0.587789,-0.809015,0.000000,-0.951054,-0.309024,0.000000,-0.587789,-0.809015,0.000000,-0.587789,-0.809015,
0.000000,-0.951054,-0.309024,0.000000,-0.034293,0.999412,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
0.115720,0.929040,-0.351417,0.123792,0.992308,-0.000128,-0.000000,1.000000,-0.000129,-0.000000,0.934023,-0.357213,
0.000000,-0.587776,0.809023,0.000000,-0.401977,0.915650,0.000000,-0.951056,0.309019,0.000000,-0.951056,0.309018,
0.000000,-0.951056,0.309018,0.000000,-0.951056,0.309019,0.000000,-0.951054,-0.309024,0.000000,-0.951054,-0.309024,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.010485,0.696785,-0.717204,0.000000,0.587790,-0.809013,
0.000000,-0.587788,-0.809015,0.000000,-0.587788,-0.809015,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,-0.951054,-0.309024,0.000000,-0.951054,-0.309024,0.000000,-0.587788,-0.809015,0.000000,-0.587788,-0.809015,
-0.000000,-0.034293,0.999412,0.000000,0.000000,1.000000,-0.000002,0.000000,1.000000,0.000000,-0.401977,0.915650,
0.000000,-0.034293,0.999412,-0.000000,-0.034293,0.999412,0.000000,-0.401977,0.915650,-0.000000,0.951058,0.309013,
-0.000000,0.951055,-0.309023,-0.000000,0.951055,-0.309023,-0.000000,0.951058,0.309013,-0.010486,0.696785,-0.717204,
-0.000000,0.934023,-0.357213,-0.115720,0.929040,-0.351417,-0.000000,0.934023,-0.357213,-0.010486,0.696785,-0.717204,
0.010485,0.696785,-0.717204,0.010485,0.696785,-0.717204,0.115720,0.929040,-0.351417,-0.000000,0.934023,-0.357213,
0.000000,0.000000,1.000000,-0.000000,-0.034293,0.999412,0.000000,-0.034293,0.999412,0.000000,0.000000,1.000000,
-0.000000,0.587781,0.809020,-0.000000,0.951058,0.309013,-0.000000,0.951058,0.309013,-0.000000,0.587781,0.809020,
0.000000,0.000001,1.000000,-0.000000,0.587781,0.809020,-0.000000,0.587781,0.809020,0.000000,0.000001,1.000000,
0.000000,-0.587777,0.809023,0.000000,-0.401977,0.915650,0.000000,0.000001,1.000000,0.000000,-0.587776,0.809023,
0.000000,0.000001,1.000000,0.000000,-0.401977,0.915650,0.000000,0.000001,1.000000,0.000000,-0.401977,0.915650,
0.000000,-0.401977,0.915650,0.000000,0.000001,1.000000,0.000000,0.587790,-0.809013,-0.000000,0.951055,-0.309023,
-0.010486,0.696785,-0.717204,0.000000,0.587790,-0.809013,0.010485,0.696785,-0.717204,-0.000000,0.951055,-0.309023,
0.010485,0.696785,-0.717204,-0.010486,0.696785,-0.717204,-0.000000,0.951055,-0.309023,-0.000000,0.951055,-0.309023,
0.987269,-0.158678,0.010984,0.964850,-0.152607,0.213953,0.855848,-0.443056,0.266881,0.863137,-0.491055,0.117726,
0.863137,-0.491055,0.117726,0.855848,-0.443056,0.266881,0.758093,-0.582551,0.293138,0.782124,-0.595683,0.182876,
0.855848,-0.443056,0.266881,0.964850,-0.152607,0.213953,0.815221,-0.124209,0.565674,0.745920,-0.348011,0.567883,
0.874035,0.472946,0.111291,0.796504,0.578779,0.174919,0.772636,0.568532,0.282499,0.866134,0.427002,0.259771,
0.772636,0.568532,0.282499,0.682204,0.509939,0.523985,0.754112,0.335555,0.564551,0.866134,0.427002,0.259771,
0.989854,0.141746,0.009891,0.874035,0.472946,0.111291,0.866134,0.427002,0.259771,0.968100,0.133554,0.212003,
0.866134,0.427002,0.259771,0.754112,0.335555,0.564551,0.817982,0.103773,0.565807,0.968100,0.133554,0.212003,
0.758093,-0.582551,0.293138,0.855848,-0.443056,0.266881,0.745920,-0.348011,0.567883,0.669549,-0.516307,0.533977,
0.682204,0.509939,0.523985,0.669432,0.233604,0.705188,0.754112,0.335555,0.564551,0.669549,-0.516307,0.533977,
0.745920,-0.348011,0.567883,0.669102,-0.239487,0.703526,0.968100,0.133554,0.212003,0.817982,0.103773,0.565807,
0.815221,-0.124209,0.565674,0.964850,-0.152607,0.213953,0.989854,0.141746,0.009891,0.968100,0.133554,0.212003,
0.964850,-0.152607,0.213953,0.987269,-0.158678,0.010984,0.754112,0.335555,0.564551,0.669432,0.233604,0.705188,
0.697310,-0.008374,0.716721,0.817982,0.103773,0.565807,0.697310,-0.008374,0.716721,0.669102,-0.239487,0.703526,
0.745920,-0.348011,0.567883,0.815221,-0.124209,0.565674,0.815221,-0.124209,0.565674,0.817982,0.103773,0.565807,
0.697310,-0.008374,0.716721,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,-0.000000,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,
1.000000,-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.018240,0.999739,-0.013777,
-0.017629,0.998059,-0.059728,-0.010545,0.999823,-0.015577,-0.013403,0.999802,-0.014684,-0.018240,0.999739,-0.013777,
-0.010545,0.999823,-0.015577,-0.013403,0.999802,-0.014684,-0.017629,0.998059,-0.059728,-0.001516,0.999914,-0.013043,
-0.010545,0.999823,-0.015577,-0.000000,1.000000,-0.000000,-0.000000,1.000000,-0.000000,-0.010545,0.999823,-0.015577,
-0.001516,0.999914,-0.013043,0.999671,0.025372,0.003659,0.999871,0.016056,-0.000253,0.999420,0.033321,0.006997,
1.000000,0.000583,-0.000057,1.000000,0.000000,0.000000,0.999956,0.009320,-0.000588,1.000000,0.000583,-0.000057,
0.999956,0.009320,-0.000588,0.999871,0.016056,-0.000253,0.999671,0.025372,0.003659,1.000000,0.000000,-0.000000,
1.000000,0.000000,0.000000,1.000000,0.000583,-0.000057,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000583,-0.000057,1.000000,0.000000,0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000583,-0.000057,1.000000,0.000000,0.000000,1.000000,0.000583,-0.000057,1.000000,0.000000,0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000583,-0.000057,1.000000,0.000000,-0.000000,
0.378228,0.898393,0.223234,0.298051,0.805149,0.512738,0.438532,0.711997,0.548407,0.517786,0.825469,0.224719,
0.517786,0.825469,0.224719,0.438532,0.711997,0.548407,0.594289,0.667018,0.449342,0.648054,0.731395,0.212335,
0.538355,0.824260,0.175412,0.517786,0.825469,0.224719,0.648054,0.731395,0.212335,0.651181,0.738074,0.176664,
0.404329,0.898659,0.170088,0.378228,0.898393,0.223234,0.517786,0.825469,0.224719,0.538355,0.824260,0.175412,
0.438532,0.711997,0.548407,0.289508,0.542647,0.788492,0.594289,0.667018,0.449342,0.298051,0.805149,0.512738,
0.289508,0.542647,0.788492,0.438532,0.711997,0.548407,-1.000000,-0.000000,-0.000000,-1.000000,0.000000,-0.000001,
-1.000000,0.000000,-0.000001,-1.000000,-0.000000,-0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,
-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,
-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,0.000000,-0.937081,0.349113,0.000000,-0.931018,0.364973,
0.000000,-0.931018,0.364973,0.000000,-0.937081,0.349113,0.000000,-0.954186,0.299214,0.000000,-0.937081,0.349113,
0.000000,-0.937081,0.349113,0.000000,-0.954186,0.299214,0.000000,-0.964278,0.264893,0.000000,-0.954186,0.299214,
0.000000,-0.954186,0.299214,0.000000,-0.964278,0.264893,-0.000000,-0.011360,-0.999936,-0.000000,-0.011360,-0.999936,
-0.000000,-0.011360,-0.999936,-0.000000,-0.011360,-0.999936,-0.000000,0.966912,-0.255110,-0.000000,0.966912,-0.255110,
-0.000000,0.966912,-0.255110,-0.000000,0.966912,-0.255110,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.517367,0.517367,0.681661,0.633643,0.365834,0.681661,
0.704240,0.406593,0.582004,0.575009,0.575009,0.582004,0.000000,-0.731669,0.681660,-0.189371,-0.706738,0.681660,
-0.210468,-0.785477,0.582004,0.000000,-0.813186,0.582004,0.365835,-0.633643,0.681661,0.189370,-0.706738,0.681661,
0.210469,-0.785477,0.582004,0.406594,-0.704239,0.582004,-0.706738,0.189369,0.681660,-0.633644,0.365835,0.681659,
-0.704240,0.406593,0.582003,-0.785478,0.210467,0.582004,0.365835,0.633643,0.681661,0.517367,0.517367,0.681661,
0.575009,0.575009,0.582004,0.406593,0.704240,0.582004,0.517367,-0.517368,0.681661,0.365835,-0.633643,0.681661,
0.406594,-0.704239,0.582004,0.575009,-0.575009,0.582004,-0.731669,-0.000000,0.681660,-0.706738,0.189369,0.681660,
-0.785478,0.210467,0.582004,-0.813186,-0.000000,0.582004,0.189370,0.706738,0.681660,0.365835,0.633643,0.681661,
0.406593,0.704240,0.582004,0.210468,0.785478,0.582003,0.633644,-0.365834,0.681660,0.517367,-0.517368,0.681661,
0.575009,-0.575009,0.582004,0.704241,-0.406592,0.582003,-0.706738,-0.189369,0.681661,-0.731669,-0.000000,0.681660,
-0.813186,-0.000000,0.582004,-0.785478,-0.210467,0.582004,-0.000000,0.731670,0.681659,0.189370,0.706738,0.681660,
0.210468,0.785478,0.582003,0.000000,0.813187,0.582002,0.706739,-0.189369,0.681660,0.633644,-0.365834,0.681660,
0.704241,-0.406592,0.582003,0.785478,-0.210467,0.582003,-0.633643,-0.365833,0.681662,-0.706738,-0.189369,0.681661,
-0.785478,-0.210467,0.582004,-0.704240,-0.406592,0.582004,-0.189371,0.706739,0.681659,-0.000000,0.731670,0.681659,
0.000000,0.813187,0.582002,-0.210468,0.785478,0.582003,0.731669,0.000000,0.681660,0.706739,-0.189369,0.681660,
0.785478,-0.210467,0.582003,0.813186,0.000000,0.582004,-0.517367,-0.517367,0.681662,-0.633643,-0.365833,0.681662,
-0.704240,-0.406592,0.582004,-0.575009,-0.575009,0.582004,-0.365836,0.633645,0.681658,-0.189371,0.706739,0.681659,
-0.210468,0.785478,0.582003,-0.406594,0.704240,0.582003,0.706738,0.189370,0.681660,0.731669,0.000000,0.681660,
0.813186,0.000000,0.582004,0.785478,0.210468,0.582004,-0.365835,-0.633643,0.681661,-0.517367,-0.517367,0.681662,
-0.575009,-0.575009,0.582004,-0.406594,-0.704239,0.582004,-0.517369,0.517370,0.681658,-0.365836,0.633645,0.681658,
-0.406594,0.704240,0.582003,-0.575010,0.575010,0.582003,0.633643,0.365834,0.681661,0.706738,0.189370,0.681660,
0.785478,0.210468,0.582004,0.704240,0.406593,0.582004,-0.189371,-0.706738,0.681660,-0.365835,-0.633643,0.681661,
-0.406594,-0.704239,0.582004,-0.210468,-0.785477,0.582004,0.189370,-0.706738,0.681661,0.000000,-0.731669,0.681660,
0.000000,-0.813186,0.582004,0.210469,-0.785477,0.582004,-0.633644,0.365835,0.681659,-0.517369,0.517370,0.681658,
-0.575010,0.575010,0.582003,-0.704240,0.406593,0.582003,0.785478,0.210468,0.582004,0.813186,0.000000,0.582004,
0.892954,0.000000,0.450149,0.862527,0.231113,0.450148,-0.406594,-0.704239,0.582004,-0.575009,-0.575009,0.582004,
-0.631414,-0.631414,0.450147,-0.446478,-0.773320,0.450148,-0.575010,0.575010,0.582003,-0.406594,0.704240,0.582003,
-0.446478,0.773320,0.450148,-0.631414,0.631414,0.450148,0.704240,0.406593,0.582004,0.785478,0.210468,0.582004,
0.862527,0.231113,0.450148,0.773321,0.446476,0.450148,-0.210468,-0.785477,0.582004,-0.406594,-0.704239,0.582004,
-0.446478,-0.773320,0.450148,-0.231114,-0.862527,0.450148,0.210469,-0.785477,0.582004,0.000000,-0.813186,0.582004,
0.000000,-0.892954,0.450148,0.231115,-0.862527,0.450148,-0.704240,0.406593,0.582003,-0.575010,0.575010,0.582003,
-0.631414,0.631414,0.450148,-0.773321,0.446478,0.450147,0.575009,0.575009,0.582004,0.704240,0.406593,0.582004,
0.773321,0.446476,0.450148,0.631414,0.631414,0.450148,0.000000,-0.813186,0.582004,-0.210468,-0.785477,0.582004,
-0.231114,-0.862527,0.450148,0.000000,-0.892954,0.450148,0.406594,-0.704239,0.582004,0.210469,-0.785477,0.582004,
0.231115,-0.862527,0.450148,0.446478,-0.773321,0.450147,-0.785478,0.210467,0.582004,-0.704240,0.406593,0.582003,
-0.773321,0.446478,0.450147,-0.862527,0.231114,0.450148,0.406593,0.704240,0.582004,0.575009,0.575009,0.582004,
0.631414,0.631414,0.450148,0.446476,0.773322,0.450148,0.575009,-0.575009,0.582004,0.406594,-0.704239,0.582004,
0.446478,-0.773321,0.450147,0.631414,-0.631414,0.450148,-0.813186,-0.000000,0.582004,-0.785478,0.210467,0.582004,
-0.862527,0.231114,0.450148,-0.892954,0.000000,0.450148,0.210468,0.785478,0.582003,0.406593,0.704240,0.582004,
0.446476,0.773322,0.450148,0.231113,0.862528,0.450148,0.704241,-0.406592,0.582003,0.575009,-0.575009,0.582004,
0.631414,-0.631414,0.450148,0.773321,-0.446477,0.450148,-0.785478,-0.210467,0.582004,-0.813186,-0.000000,0.582004,
-0.892954,0.000000,0.450148,-0.862527,-0.231113,0.450148,0.000000,0.813187,0.582002,0.210468,0.785478,0.582003,
0.231113,0.862528,0.450148,0.000000,0.892954,0.450147,0.785478,-0.210467,0.582003,0.704241,-0.406592,0.582003,
0.773321,-0.446477,0.450148,0.862527,-0.231113,0.450149,-0.704240,-0.406592,0.582004,-0.785478,-0.210467,0.582004,
-0.862527,-0.231113,0.450148,-0.773321,-0.446477,0.450147,-0.210468,0.785478,0.582003,0.000000,0.813187,0.582002,
0.000000,0.892954,0.450147,-0.231114,0.862527,0.450148,0.813186,0.000000,0.582004,0.785478,-0.210467,0.582003,
0.862527,-0.231113,0.450149,0.892954,0.000000,0.450149,-0.575009,-0.575009,0.582004,-0.704240,-0.406592,0.582004,
-0.773321,-0.446477,0.450147,-0.631414,-0.631414,0.450147,-0.406594,0.704240,0.582003,-0.210468,0.785478,0.582003,
-0.231114,0.862527,0.450148,-0.446478,0.773320,0.450148,0.231113,0.862528,0.450148,0.446476,0.773322,0.450148,
0.467181,0.809183,0.356320,0.241831,0.902526,0.356320,0.773321,-0.446477,0.450148,0.631414,-0.631414,0.450148,
0.660695,-0.660695,0.356321,0.809183,-0.467182,0.356320,-0.862527,-0.231113,0.450148,-0.892954,0.000000,0.450148,
-0.934364,0.000001,0.356320,-0.902526,-0.241832,0.356320,0.000000,0.892954,0.450147,0.231113,0.862528,0.450148,
0.241831,0.902526,0.356320,-0.000000,0.934364,0.356320,0.862527,-0.231113,0.450149,0.773321,-0.446477,0.450148,
0.809183,-0.467182,0.356320,0.902526,-0.241831,0.356321,-0.773321,-0.446477,0.450147,-0.862527,-0.231113,0.450148,
-0.902526,-0.241832,0.356320,-0.809183,-0.467182,0.356320,-0.231114,0.862527,0.450148,0.000000,0.892954,0.450147,
-0.000000,0.934364,0.356320,-0.241831,0.902526,0.356320,0.892954,0.000000,0.450149,0.862527,-0.231113,0.450149,
0.902526,-0.241831,0.356321,0.934364,0.000000,0.356321,-0.631414,-0.631414,0.450147,-0.773321,-0.446477,0.450147,
-0.809183,-0.467182,0.356320,-0.660696,-0.660694,0.356320,-0.446478,0.773320,0.450148,-0.231114,0.862527,0.450148,
-0.241831,0.902526,0.356320,-0.467182,0.809183,0.356320,0.862527,0.231113,0.450148,0.892954,0.000000,0.450149,
0.934364,0.000000,0.356321,0.902526,0.241831,0.356320,-0.446478,-0.773320,0.450148,-0.631414,-0.631414,0.450147,
-0.660696,-0.660694,0.356320,-0.467183,-0.809182,0.356320,-0.631414,0.631414,0.450148,-0.446478,0.773320,0.450148,
-0.467182,0.809183,0.356320,-0.660695,0.660695,0.356321,0.773321,0.446476,0.450148,0.862527,0.231113,0.450148,
0.902526,0.241831,0.356320,0.809183,0.467182,0.356320,-0.231114,-0.862527,0.450148,-0.446478,-0.773320,0.450148,
-0.467183,-0.809182,0.356320,-0.241831,-0.902526,0.356320,0.231115,-0.862527,0.450148,0.000000,-0.892954,0.450148,
0.000000,-0.934364,0.356321,0.241832,-0.902526,0.356321,-0.773321,0.446478,0.450147,-0.631414,0.631414,0.450148,
-0.660695,0.660695,0.356321,-0.809183,0.467182,0.356321,0.631414,0.631414,0.450148,0.773321,0.446476,0.450148,
0.809183,0.467182,0.356320,0.660695,0.660695,0.356320,0.000000,-0.892954,0.450148,-0.231114,-0.862527,0.450148,
-0.241831,-0.902526,0.356320,0.000000,-0.934364,0.356321,0.446478,-0.773321,0.450147,0.231115,-0.862527,0.450148,
0.241832,-0.902526,0.356321,0.467182,-0.809182,0.356321,-0.862527,0.231114,0.450148,-0.773321,0.446478,0.450147,
-0.809183,0.467182,0.356321,-0.902526,0.241832,0.356320,0.446476,0.773322,0.450148,0.631414,0.631414,0.450148,
0.660695,0.660695,0.356320,0.467181,0.809183,0.356320,0.631414,-0.631414,0.450148,0.446478,-0.773321,0.450147,
0.467182,-0.809182,0.356321,0.660695,-0.660695,0.356321,-0.892954,0.000000,0.450148,-0.862527,0.231114,0.450148,
-0.902526,0.241832,0.356320,-0.934364,0.000001,0.356320,-0.467183,-0.809182,0.356320,-0.660696,-0.660694,0.356320,
-0.687217,-0.687216,0.235516,-0.485936,-0.841664,0.235516,-0.660695,0.660695,0.356321,-0.467182,0.809183,0.356320,
-0.485935,0.841665,0.235515,-0.687216,0.687217,0.235515,0.809183,0.467182,0.356320,0.902526,0.241831,0.356320,
0.938755,0.251539,0.235514,0.841665,0.485935,0.235514,-0.241831,-0.902526,0.356320,-0.467183,-0.809182,0.356320,
-0.485936,-0.841664,0.235516,-0.251539,-0.938755,0.235516,0.241832,-0.902526,0.356321,0.000000,-0.934364,0.356321,
-0.000000,-0.971871,0.235516,0.251539,-0.938755,0.235516,-0.809183,0.467182,0.356321,-0.660695,0.660695,0.356321,
-0.687216,0.687217,0.235515,-0.841665,0.485935,0.235516,0.660695,0.660695,0.356320,0.809183,0.467182,0.356320,
0.841665,0.485935,0.235514,0.687216,0.687217,0.235515,0.000000,-0.934364,0.356321,-0.241831,-0.902526,0.356320,
-0.251539,-0.938755,0.235516,-0.000000,-0.971871,0.235516,0.467182,-0.809182,0.356321,0.241832,-0.902526,0.356321,
0.251539,-0.938755,0.235516,0.485936,-0.841664,0.235516,-0.902526,0.241832,0.356320,-0.809183,0.467182,0.356321,
-0.841665,0.485935,0.235516,-0.938755,0.251538,0.235515,0.467181,0.809183,0.356320,0.660695,0.660695,0.356320,
0.687216,0.687217,0.235515,0.485935,0.841665,0.235515,0.660695,-0.660695,0.356321,0.467182,-0.809182,0.356321,
0.485936,-0.841664,0.235516,0.687217,-0.687216,0.235515,-0.934364,0.000001,0.356320,-0.902526,0.241832,0.356320,
-0.938755,0.251538,0.235515,-0.971871,-0.000000,0.235514,0.241831,0.902526,0.356320,0.467181,0.809183,0.356320,
0.485935,0.841665,0.235515,0.251538,0.938755,0.235515,0.809183,-0.467182,0.356320,0.660695,-0.660695,0.356321,
0.687217,-0.687216,0.235515,0.841665,-0.485935,0.235515,-0.902526,-0.241832,0.356320,-0.934364,0.000001,0.356320,
-0.971871,-0.000000,0.235514,-0.938755,-0.251539,0.235514,-0.000000,0.934364,0.356320,0.241831,0.902526,0.356320,
0.251538,0.938755,0.235515,-0.000001,0.971871,0.235515,0.902526,-0.241831,0.356321,0.809183,-0.467182,0.356320,
0.841665,-0.485935,0.235515,0.938755,-0.251539,0.235514,-0.809183,-0.467182,0.356320,-0.902526,-0.241832,0.356320,
-0.938755,-0.251539,0.235514,-0.841665,-0.485935,0.235515,-0.241831,0.902526,0.356320,-0.000000,0.934364,0.356320,
-0.000001,0.971871,0.235515,-0.251538,0.938755,0.235515,0.934364,0.000000,0.356321,0.902526,-0.241831,0.356321,
0.938755,-0.251539,0.235514,0.971871,0.000000,0.235514,-0.660696,-0.660694,0.356320,-0.809183,-0.467182,0.356320,
-0.841665,-0.485935,0.235515,-0.687217,-0.687216,0.235516,-0.467182,0.809183,0.356320,-0.241831,0.902526,0.356320,
-0.251538,0.938755,0.235515,-0.485935,0.841665,0.235515,0.902526,0.241831,0.356320,0.934364,0.000000,0.356321,
0.971871,0.000000,0.235514,0.938755,0.251539,0.235514,0.251538,0.938755,0.235515,0.485935,0.841665,0.235515,
0.496722,0.860348,0.114321,0.257122,0.959593,0.114321,0.841665,-0.485935,0.235515,0.687217,-0.687216,0.235515,
0.702472,-0.702470,0.114321,0.860348,-0.496722,0.114321,-0.938755,-0.251539,0.235514,-0.971871,-0.000000,0.235514,
-0.993444,-0.000000,0.114321,-0.959593,-0.257122,0.114321,-0.000001,0.971871,0.235515,0.251538,0.938755,0.235515,
0.257122,0.959593,0.114321,-0.000000,0.993444,0.114321,0.938755,-0.251539,0.235514,0.841665,-0.485935,0.235515,
0.860348,-0.496722,0.114321,0.959593,-0.257123,0.114321,-0.841665,-0.485935,0.235515,-0.938755,-0.251539,0.235514,
-0.959593,-0.257122,0.114321,-0.860348,-0.496721,0.114321,-0.251538,0.938755,0.235515,-0.000001,0.971871,0.235515,
-0.000000,0.993444,0.114321,-0.257121,0.959593,0.114321,0.971871,0.000000,0.235514,0.938755,-0.251539,0.235514,
0.959593,-0.257123,0.114321,0.993444,0.000000,0.114321,-0.687217,-0.687216,0.235516,-0.841665,-0.485935,0.235515,
-0.860348,-0.496721,0.114321,-0.702471,-0.702470,0.114321,-0.485935,0.841665,0.235515,-0.251538,0.938755,0.235515,
-0.257121,0.959593,0.114321,-0.496722,0.860348,0.114321,0.938755,0.251539,0.235514,0.971871,0.000000,0.235514,
0.993444,0.000000,0.114321,0.959593,0.257123,0.114321,-0.485936,-0.841664,0.235516,-0.687217,-0.687216,0.235516,
-0.702471,-0.702470,0.114321,-0.496722,-0.860347,0.114321,-0.687216,0.687217,0.235515,-0.485935,0.841665,0.235515,
-0.496722,0.860348,0.114321,-0.702471,0.702471,0.114321,0.841665,0.485935,0.235514,0.938755,0.251539,0.235514,
0.959593,0.257123,0.114321,0.860348,0.496721,0.114321,-0.251539,-0.938755,0.235516,-0.485936,-0.841664,0.235516,
-0.496722,-0.860347,0.114321,-0.257123,-0.959593,0.114321,0.251539,-0.938755,0.235516,-0.000000,-0.971871,0.235516,
0.000000,-0.993444,0.114321,0.257123,-0.959593,0.114320,-0.841665,0.485935,0.235516,-0.687216,0.687217,0.235515,
-0.702471,0.702471,0.114321,-0.860348,0.496722,0.114320,0.687216,0.687217,0.235515,0.841665,0.485935,0.235514,
0.860348,0.496721,0.114321,0.702471,0.702471,0.114321,-0.000000,-0.971871,0.235516,-0.251539,-0.938755,0.235516,
-0.257123,-0.959593,0.114321,0.000000,-0.993444,0.114321,0.485936,-0.841664,0.235516,0.251539,-0.938755,0.235516,
0.257123,-0.959593,0.114320,0.496723,-0.860347,0.114320,-0.938755,0.251538,0.235515,-0.841665,0.485935,0.235516,
-0.860348,0.496722,0.114320,-0.959593,0.257122,0.114320,0.485935,0.841665,0.235515,0.687216,0.687217,0.235515,
0.702471,0.702471,0.114321,0.496722,0.860348,0.114321,0.687217,-0.687216,0.235515,0.485936,-0.841664,0.235516,
0.496723,-0.860347,0.114320,0.702472,-0.702470,0.114321,-0.971871,-0.000000,0.235514,-0.938755,0.251538,0.235515,
-0.959593,0.257122,0.114320,-0.993444,-0.000000,0.114321,-0.702471,0.702471,0.114321,-0.496722,0.860348,0.114321,
-0.470134,0.814298,0.340430,-0.664871,0.664871,0.340431,0.860348,0.496721,0.114321,0.959593,0.257123,0.114321,
0.908230,0.243361,0.340432,0.814298,0.470135,0.340429,-0.257123,-0.959593,0.114321,-0.496722,-0.860347,0.114321,
-0.470135,-0.814296,0.340433,-0.243360,-0.908230,0.340432,0.257123,-0.959593,0.114320,0.000000,-0.993444,0.114321,
0.000000,-0.940269,0.340432,0.243360,-0.908230,0.340431,-0.860348,0.496722,0.114320,-0.702471,0.702471,0.114321,
-0.664871,0.664871,0.340431,-0.814298,0.470134,0.340430,0.702471,0.702471,0.114321,0.860348,0.496721,0.114321,
0.814298,0.470135,0.340429,0.664871,0.664872,0.340429,0.000000,-0.993444,0.114321,-0.257123,-0.959593,0.114321,
-0.243360,-0.908230,0.340432,0.000000,-0.940269,0.340432,0.496723,-0.860347,0.114320,0.257123,-0.959593,0.114320,
0.243360,-0.908230,0.340431,0.470135,-0.814297,0.340431,-0.959593,0.257122,0.114320,-0.860348,0.496722,0.114320,
-0.814298,0.470134,0.340430,-0.908231,0.243359,0.340430,0.496722,0.860348,0.114321,0.702471,0.702471,0.114321,
0.664871,0.664872,0.340429,0.470134,0.814298,0.340430,0.702472,-0.702470,0.114321,0.496723,-0.860347,0.114320,
0.470135,-0.814297,0.340431,0.664872,-0.664871,0.340430,-0.993444,-0.000000,0.114321,-0.959593,0.257122,0.114320,
-0.908231,0.243359,0.340430,-0.940269,0.000000,0.340433,0.257122,0.959593,0.114321,0.496722,0.860348,0.114321,
0.470134,0.814298,0.340430,0.243360,0.908231,0.340429,0.860348,-0.496722,0.114321,0.702472,-0.702470,0.114321,
0.664872,-0.664871,0.340430,0.814297,-0.470134,0.340431,-0.959593,-0.257122,0.114321,-0.993444,-0.000000,0.114321,
-0.940269,0.000000,0.340433,-0.908230,-0.243359,0.340435,-0.000000,0.993444,0.114321,0.257122,0.959593,0.114321,
0.243360,0.908231,0.340429,-0.000000,0.940271,0.340428,0.959593,-0.257123,0.114321,0.860348,-0.496722,0.114321,
0.814297,-0.470134,0.340431,0.908230,-0.243360,0.340432,-0.860348,-0.496721,0.114321,-0.959593,-0.257122,0.114321,
-0.908230,-0.243359,0.340435,-0.814297,-0.470134,0.340433,-0.257121,0.959593,0.114321,-0.000000,0.993444,0.114321,
-0.000000,0.940271,0.340428,-0.243359,0.908232,0.340428,0.993444,0.000000,0.114321,0.959593,-0.257123,0.114321,
0.908230,-0.243360,0.340432,0.940269,0.000000,0.340433,-0.702471,-0.702470,0.114321,-0.860348,-0.496721,0.114321,
-0.814297,-0.470134,0.340433,-0.664871,-0.664871,0.340432,-0.496722,0.860348,0.114321,-0.257121,0.959593,0.114321,
-0.243359,0.908232,0.340428,-0.470134,0.814298,0.340430,0.959593,0.257123,0.114321,0.993444,0.000000,0.114321,
0.940269,0.000000,0.340433,0.908230,0.243361,0.340432,-0.496722,-0.860347,0.114321,-0.702471,-0.702470,0.114321,
-0.664871,-0.664871,0.340432,-0.470135,-0.814296,0.340433,0.814297,-0.470134,0.340431,0.664872,-0.664871,0.340430,
0.674394,-0.674393,0.300644,0.825960,-0.476868,0.300645,-0.908230,-0.243359,0.340435,-0.940269,0.000000,0.340433,
-0.953736,0.000001,0.300647,-0.921404,-0.246408,0.300496,-0.000000,0.940271,0.340428,0.243360,0.908231,0.340429,
0.246844,0.921239,0.300643,-0.000000,0.953737,0.300642,0.908230,-0.243360,0.340432,0.814297,-0.470134,0.340431,
0.825960,-0.476868,0.300645,0.921238,-0.246845,0.300646,-0.814297,-0.470134,0.340433,-0.908230,-0.243359,0.340435,
-0.921404,-0.246408,0.300496,-0.825959,-0.476868,0.300646,-0.243359,0.908232,0.340428,-0.000000,0.940271,0.340428,
-0.000000,0.953737,0.300642,-0.246844,0.921240,0.300641,0.940269,0.000000,0.340433,0.908230,-0.243360,0.340432,
0.921238,-0.246845,0.300646,0.953736,0.000000,0.300646,-0.664871,-0.664871,0.340432,-0.814297,-0.470134,0.340433,
-0.825959,-0.476868,0.300646,-0.674393,-0.674393,0.300646,-0.470134,0.814298,0.340430,-0.243359,0.908232,0.340428,
-0.246844,0.921240,0.300641,-0.476868,0.825960,0.300643,0.908230,0.243361,0.340432,0.940269,0.000000,0.340433,
0.953736,0.000000,0.300646,0.921238,0.246846,0.300645,-0.470135,-0.814296,0.340433,-0.664871,-0.664871,0.340432,
-0.674393,-0.674393,0.300646,-0.476868,-0.825959,0.300648,-0.664871,0.664871,0.340431,-0.470134,0.814298,0.340430,
-0.476868,0.825960,0.300643,-0.674393,0.674393,0.300644,0.814298,0.470135,0.340429,0.908230,0.243361,0.340432,
0.921238,0.246846,0.300645,0.825960,0.476868,0.300644,-0.243360,-0.908230,0.340432,-0.470135,-0.814296,0.340433,
-0.476868,-0.825959,0.300648,-0.246846,-0.921238,0.300647,0.243360,-0.908230,0.340431,0.000000,-0.940269,0.340432,
0.000000,-0.953736,0.300645,0.246403,-0.921401,0.300510,-0.814298,0.470134,0.340430,-0.664871,0.664871,0.340431,
-0.674393,0.674393,0.300644,-0.825960,0.476867,0.300645,0.664871,0.664872,0.340429,0.814298,0.470135,0.340429,
0.825960,0.476868,0.300644,0.674394,0.674393,0.300643,0.000000,-0.940269,0.340432,-0.243360,-0.908230,0.340432,
-0.246846,-0.921238,0.300647,0.000000,-0.953736,0.300645,0.470135,-0.814297,0.340431,0.243360,-0.908230,0.340431,
0.246403,-0.921401,0.300510,0.476868,-0.825960,0.300645,-0.908231,0.243359,0.340430,-0.814298,0.470134,0.340430,
-0.825960,0.476867,0.300645,-0.921238,0.246846,0.300645,0.470134,0.814298,0.340430,0.664871,0.664872,0.340429,
0.674394,0.674393,0.300643,0.476868,0.825960,0.300644,0.664872,-0.664871,0.340430,0.470135,-0.814297,0.340431,
0.476868,-0.825960,0.300645,0.674394,-0.674393,0.300644,-0.940269,0.000000,0.340433,-0.908231,0.243359,0.340430,
-0.921238,0.246846,0.300645,-0.953736,0.000001,0.300647,0.243360,0.908231,0.340429,0.470134,0.814298,0.340430,
0.476868,0.825960,0.300644,0.246844,0.921239,0.300643,-0.674393,0.674393,0.300644,-0.476868,0.825960,0.300643,
-0.479555,0.830615,-0.283028,-0.678194,0.678194,-0.283029,0.825960,0.476868,0.300644,0.921238,0.246846,0.300645,
0.926430,0.248238,-0.283028,0.830615,0.479556,-0.283027,-0.246846,-0.921238,0.300647,-0.476868,-0.825959,0.300648,
-0.479556,-0.830615,-0.283030,-0.248237,-0.926430,-0.283030,0.246403,-0.921401,0.300510,0.000000,-0.953736,0.300645,
0.000000,-0.959111,-0.283028,0.248238,-0.926431,-0.283027,-0.825960,0.476867,0.300645,-0.674393,0.674393,0.300644,
-0.678194,0.678194,-0.283029,-0.830615,0.479555,-0.283030,0.674394,0.674393,0.300643,0.825960,0.476868,0.300644,
0.830615,0.479556,-0.283027,0.678195,0.678194,-0.283027,0.000000,-0.953736,0.300645,-0.246846,-0.921238,0.300647,
-0.248237,-0.926430,-0.283030,0.000000,-0.959111,-0.283028,0.476868,-0.825960,0.300645,0.246403,-0.921401,0.300510,
0.248238,-0.926431,-0.283027,0.479556,-0.830615,-0.283027,-0.921238,0.246846,0.300645,-0.825960,0.476867,0.300645,
-0.830615,0.479555,-0.283030,-0.926430,0.248237,-0.283031,0.476868,0.825960,0.300644,0.674394,0.674393,0.300643,
0.678195,0.678194,-0.283027,0.479556,0.830615,-0.283027,0.674394,-0.674393,0.300644,0.476868,-0.825960,0.300645,
0.479556,-0.830615,-0.283027,0.678195,-0.678194,-0.283028,-0.953736,0.000001,0.300647,-0.921238,0.246846,0.300645,
-0.926430,0.248237,-0.283031,-0.959110,0.000001,-0.283032,0.246844,0.921239,0.300643,0.476868,0.825960,0.300644,
0.479556,0.830615,-0.283027,0.248235,0.926431,-0.283028,0.825960,-0.476868,0.300645,0.674394,-0.674393,0.300644,
0.678195,-0.678194,-0.283028,0.830615,-0.479556,-0.283028,-0.921404,-0.246408,0.300496,-0.953736,0.000001,0.300647,
-0.959110,0.000001,-0.283032,-0.926429,-0.248237,-0.283033,-0.000000,0.953737,0.300642,0.246844,0.921239,0.300643,
0.248235,0.926431,-0.283028,-0.000001,0.959112,-0.283028,0.921238,-0.246845,0.300646,0.825960,-0.476868,0.300645,
0.830615,-0.479556,-0.283028,0.926431,-0.248237,-0.283028,-0.825959,-0.476868,0.300646,-0.921404,-0.246408,0.300496,
-0.926429,-0.248237,-0.283033,-0.830614,-0.479555,-0.283032,-0.246844,0.921240,0.300641,-0.000000,0.953737,0.300642,
-0.000001,0.959112,-0.283028,-0.248235,0.926431,-0.283028,0.953736,0.000000,0.300646,0.921238,-0.246845,0.300646,
0.926431,-0.248237,-0.283028,0.959111,0.000000,-0.283029,-0.674393,-0.674393,0.300646,-0.825959,-0.476868,0.300646,
-0.830614,-0.479555,-0.283032,-0.678194,-0.678194,-0.283030,-0.476868,0.825960,0.300643,-0.246844,0.921240,0.300641,
-0.248235,0.926431,-0.283028,-0.479555,0.830615,-0.283028,0.921238,0.246846,0.300645,0.953736,0.000000,0.300646,
0.959111,0.000000,-0.283029,0.926430,0.248238,-0.283028,-0.476868,-0.825959,0.300648,-0.674393,-0.674393,0.300646,
-0.678194,-0.678194,-0.283030,-0.479556,-0.830615,-0.283030,0.830615,-0.479556,-0.283028,0.678195,-0.678194,-0.283028,
0.648958,-0.648959,-0.397123,0.794808,-0.458883,-0.397123,-0.926429,-0.248237,-0.283033,-0.959110,0.000001,-0.283032,
-0.917764,0.000001,-0.397127,-0.886491,-0.237534,-0.397128,-0.000001,0.959112,-0.283028,0.248235,0.926431,-0.283028,
0.237535,0.886494,-0.397122,-0.000001,0.917766,-0.397122,0.926431,-0.248237,-0.283028,0.830615,-0.479556,-0.283028,
0.794808,-0.458883,-0.397123,0.886493,-0.237535,-0.397123,-0.830614,-0.479555,-0.283032,-0.926429,-0.248237,-0.283033,
-0.886491,-0.237534,-0.397128,-0.794807,-0.458882,-0.397126,-0.248235,0.926431,-0.283028,-0.000001,0.959112,-0.283028,
-0.000001,0.917766,-0.397122,-0.237534,0.886494,-0.397121,0.959111,0.000000,-0.283029,0.926431,-0.248237,-0.283028,
0.886493,-0.237535,-0.397123,0.917765,0.000000,-0.397124,-0.678194,-0.678194,-0.283030,-0.830614,-0.479555,-0.283032,
-0.794807,-0.458882,-0.397126,-0.648959,-0.648956,-0.397125,-0.479555,0.830615,-0.283028,-0.248235,0.926431,-0.283028,
-0.237534,0.886494,-0.397121,-0.458882,0.794809,-0.397123,0.926430,0.248238,-0.283028,0.959111,0.000000,-0.283029,
0.917765,0.000000,-0.397124,0.886493,0.237536,-0.397123,-0.479556,-0.830615,-0.283030,-0.678194,-0.678194,-0.283030,
-0.648959,-0.648956,-0.397125,-0.458883,-0.794807,-0.397125,-0.678194,0.678194,-0.283029,-0.479555,0.830615,-0.283028,
-0.458882,0.794809,-0.397123,-0.648959,0.648957,-0.397124,0.830615,0.479556,-0.283027,0.926430,0.248238,-0.283028,
0.886493,0.237536,-0.397123,0.794809,0.458883,-0.397122,-0.248237,-0.926430,-0.283030,-0.479556,-0.830615,-0.283030,
-0.458883,-0.794807,-0.397125,-0.237535,-0.886493,-0.397125,0.248238,-0.926431,-0.283027,0.000000,-0.959111,-0.283028,
-0.000000,-0.917765,-0.397124,0.237536,-0.886494,-0.397122,-0.830615,0.479555,-0.283030,-0.678194,0.678194,-0.283029,
-0.648959,0.648957,-0.397124,-0.794808,0.458882,-0.397124,0.678195,0.678194,-0.283027,0.830615,0.479556,-0.283027,
0.794809,0.458883,-0.397122,0.648959,0.648958,-0.397122,0.000000,-0.959111,-0.283028,-0.248237,-0.926430,-0.283030,
-0.237535,-0.886493,-0.397125,-0.000000,-0.917765,-0.397124,0.479556,-0.830615,-0.283027,0.248238,-0.926431,-0.283027,
0.237536,-0.886494,-0.397122,0.458884,-0.794808,-0.397122,-0.926430,0.248237,-0.283031,-0.830615,0.479555,-0.283030,
-0.794808,0.458882,-0.397124,-0.886492,0.237535,-0.397125,0.479556,0.830615,-0.283027,0.678195,0.678194,-0.283027,
0.648959,0.648958,-0.397122,0.458883,0.794809,-0.397121,0.678195,-0.678194,-0.283028,0.479556,-0.830615,-0.283027,
0.458884,-0.794808,-0.397122,0.648958,-0.648959,-0.397123,-0.959110,0.000001,-0.283032,-0.926430,0.248237,-0.283031,
-0.886492,0.237535,-0.397125,-0.917764,0.000001,-0.397127,0.248235,0.926431,-0.283028,0.479556,0.830615,-0.283027,
0.458883,0.794809,-0.397121,0.237535,0.886494,-0.397122,0.794809,0.458883,-0.397122,0.886493,0.237536,-0.397123,
0.935269,0.250605,-0.249940,0.838539,0.484130,-0.249939,-0.237535,-0.886493,-0.397125,-0.458883,-0.794807,-0.397125,
-0.484131,-0.838539,-0.249939,-0.250605,-0.935269,-0.249939,0.237536,-0.886494,-0.397122,-0.000000,-0.917765,-0.397124,
0.000000,-0.968261,-0.249939,0.250606,-0.935269,-0.249939,-0.794808,0.458882,-0.397124,-0.648959,0.648957,-0.397124,
-0.684664,0.684664,-0.249940,-0.838539,0.484130,-0.249939,0.648959,0.648958,-0.397122,0.794809,0.458883,-0.397122,
0.838539,0.484130,-0.249939,0.684664,0.684664,-0.249939,-0.000000,-0.917765,-0.397124,-0.237535,-0.886493,-0.397125,
-0.250605,-0.935269,-0.249939,0.000000,-0.968261,-0.249939,0.458884,-0.794808,-0.397122,0.237536,-0.886494,-0.397122,
0.250606,-0.935269,-0.249939,0.484132,-0.838539,-0.249939,-0.886492,0.237535,-0.397125,-0.794808,0.458882,-0.397124,
-0.838539,0.484130,-0.249939,-0.935269,0.250604,-0.249939,0.458883,0.794809,-0.397121,0.648959,0.648958,-0.397122,
0.684664,0.684664,-0.249939,0.484130,0.838539,-0.249940,0.648958,-0.648959,-0.397123,0.458884,-0.794808,-0.397122,
0.484132,-0.838539,-0.249939,0.684664,-0.684664,-0.249939,-0.917764,0.000001,-0.397127,-0.886492,0.237535,-0.397125,
-0.935269,0.250604,-0.249939,-0.968262,0.000000,-0.249939,0.237535,0.886494,-0.397122,0.458883,0.794809,-0.397121,
0.484130,0.838539,-0.249940,0.250603,0.935269,-0.249940,0.794808,-0.458883,-0.397123,0.648958,-0.648959,-0.397123,
0.684664,-0.684664,-0.249939,0.838539,-0.484131,-0.249940,-0.886491,-0.237534,-0.397128,-0.917764,0.000001,-0.397127,
-0.968262,0.000000,-0.249939,-0.935269,-0.250604,-0.249939,-0.000001,0.917766,-0.397122,0.237535,0.886494,-0.397122,
0.250603,0.935269,-0.249940,-0.000001,0.968261,-0.249940,0.886493,-0.237535,-0.397123,0.794808,-0.458883,-0.397123,
0.838539,-0.484131,-0.249940,0.935269,-0.250604,-0.249940,-0.794807,-0.458882,-0.397126,-0.886491,-0.237534,-0.397128,
-0.935269,-0.250604,-0.249939,-0.838539,-0.484130,-0.249939,-0.237534,0.886494,-0.397121,-0.000001,0.917766,-0.397122,
-0.000001,0.968261,-0.249940,-0.250604,0.935269,-0.249941,0.917765,0.000000,-0.397124,0.886493,-0.237535,-0.397123,
0.935269,-0.250604,-0.249940,0.968261,0.000000,-0.249940,-0.648959,-0.648956,-0.397125,-0.794807,-0.458882,-0.397126,
-0.838539,-0.484130,-0.249939,-0.684665,-0.684664,-0.249939,-0.458882,0.794809,-0.397123,-0.237534,0.886494,-0.397121,
-0.250604,0.935269,-0.249941,-0.484130,0.838539,-0.249941,0.886493,0.237536,-0.397123,0.917765,0.000000,-0.397124,
0.968261,0.000000,-0.249940,0.935269,0.250605,-0.249940,-0.458883,-0.794807,-0.397125,-0.648959,-0.648956,-0.397125,
-0.684665,-0.684664,-0.249939,-0.484131,-0.838539,-0.249939,-0.648959,0.648957,-0.397124,-0.458882,0.794809,-0.397123,
-0.484130,0.838539,-0.249941,-0.684664,0.684664,-0.249940,-0.935269,-0.250604,-0.249939,-0.968262,0.000000,-0.249939,
-0.937750,-0.000000,-0.347311,-0.905797,-0.242708,-0.347311,-0.000001,0.968261,-0.249940,0.250603,0.935269,-0.249940,
0.242707,0.905797,-0.347311,-0.000001,0.937750,-0.347311,0.935269,-0.250604,-0.249940,0.838539,-0.484131,-0.249940,
0.812116,-0.468875,-0.347311,0.905797,-0.242707,-0.347311,-0.838539,-0.484130,-0.249939,-0.935269,-0.250604,-0.249939,
-0.905797,-0.242708,-0.347311,-0.812116,-0.468875,-0.347311,-0.250604,0.935269,-0.249941,-0.000001,0.968261,-0.249940,
-0.000001,0.937750,-0.347311,-0.242707,0.905797,-0.347311,0.968261,0.000000,-0.249940,0.935269,-0.250604,-0.249940,
0.905797,-0.242707,-0.347311,0.937750,0.000000,-0.347311,-0.684665,-0.684664,-0.249939,-0.838539,-0.484130,-0.249939,
-0.812116,-0.468875,-0.347311,-0.663090,-0.663089,-0.347311,-0.484130,0.838539,-0.249941,-0.250604,0.935269,-0.249941,
-0.242707,0.905797,-0.347311,-0.468875,0.812115,-0.347312,0.935269,0.250605,-0.249940,0.968261,0.000000,-0.249940,
0.937750,0.000000,-0.347311,0.905797,0.242708,-0.347311,-0.484131,-0.838539,-0.249939,-0.684665,-0.684664,-0.249939,
-0.663090,-0.663089,-0.347311,-0.468875,-0.812115,-0.347311,-0.684664,0.684664,-0.249940,-0.484130,0.838539,-0.249941,
-0.468875,0.812115,-0.347312,-0.663089,0.663090,-0.347311,0.838539,0.484130,-0.249939,0.935269,0.250605,-0.249940,
0.905797,0.242708,-0.347311,0.812116,0.468874,-0.347311,-0.250605,-0.935269,-0.249939,-0.484131,-0.838539,-0.249939,
-0.468875,-0.812115,-0.347311,-0.242708,-0.905797,-0.347311,0.250606,-0.935269,-0.249939,0.000000,-0.968261,-0.249939,
0.000000,-0.937750,-0.347311,0.242708,-0.905797,-0.347311,-0.838539,0.484130,-0.249939,-0.684664,0.684664,-0.249940,
-0.663089,0.663090,-0.347311,-0.812115,0.468875,-0.347311,0.684664,0.684664,-0.249939,0.838539,0.484130,-0.249939,
0.812116,0.468874,-0.347311,0.663089,0.663090,-0.347311,0.000000,-0.968261,-0.249939,-0.250605,-0.935269,-0.249939,
-0.242708,-0.905797,-0.347311,0.000000,-0.937750,-0.347311,0.484132,-0.838539,-0.249939,0.250606,-0.935269,-0.249939,
0.242708,-0.905797,-0.347311,0.468876,-0.812115,-0.347310,-0.935269,0.250604,-0.249939,-0.838539,0.484130,-0.249939,
-0.812115,0.468875,-0.347311,-0.905797,0.242707,-0.347311,0.484130,0.838539,-0.249940,0.684664,0.684664,-0.249939,
0.663089,0.663090,-0.347311,0.468875,0.812116,-0.347311,0.684664,-0.684664,-0.249939,0.484132,-0.838539,-0.249939,
0.468876,-0.812115,-0.347310,0.663090,-0.663089,-0.347311,-0.968262,0.000000,-0.249939,-0.935269,0.250604,-0.249939,
-0.905797,0.242707,-0.347311,-0.937750,-0.000000,-0.347311,0.250603,0.935269,-0.249940,0.484130,0.838539,-0.249940,
0.468875,0.812116,-0.347311,0.242707,0.905797,-0.347311,0.838539,-0.484131,-0.249940,0.684664,-0.684664,-0.249939,
0.663090,-0.663089,-0.347311,0.812116,-0.468875,-0.347311,0.812116,0.468874,-0.347311,0.905797,0.242708,-0.347311,
0.837836,0.224497,-0.497627,0.751184,0.433695,-0.497627,-0.242708,-0.905797,-0.347311,-0.468875,-0.812115,-0.347311,
-0.433695,-0.751183,-0.497627,-0.224498,-0.837835,-0.497627,0.242708,-0.905797,-0.347311,0.000000,-0.937750,-0.347311,
0.000000,-0.867391,-0.497627,0.224498,-0.837835,-0.497627,-0.812115,0.468875,-0.347311,-0.663089,0.663090,-0.347311,
-0.613338,0.613338,-0.497627,-0.751182,0.433696,-0.497627,0.663089,0.663090,-0.347311,0.812116,0.468874,-0.347311,
0.751184,0.433695,-0.497627,0.613338,0.613339,-0.497627,0.000000,-0.937750,-0.347311,-0.242708,-0.905797,-0.347311,
-0.224498,-0.837835,-0.497627,0.000000,-0.867391,-0.497627,0.468876,-0.812115,-0.347310,0.242708,-0.905797,-0.347311,
0.224498,-0.837835,-0.497627,0.433696,-0.751183,-0.497627,-0.905797,0.242707,-0.347311,-0.812115,0.468875,-0.347311,
-0.751182,0.433696,-0.497627,-0.837835,0.224498,-0.497627,0.468875,0.812116,-0.347311,0.663089,0.663090,-0.347311,
0.613338,0.613339,-0.497627,0.433696,0.751183,-0.497626,0.663090,-0.663089,-0.347311,0.468876,-0.812115,-0.347310,
0.433696,-0.751183,-0.497627,0.613338,-0.613338,-0.497626,-0.937750,-0.000000,-0.347311,-0.905797,0.242707,-0.347311,
-0.837835,0.224498,-0.497627,-0.867391,-0.000000,-0.497627,0.242707,0.905797,-0.347311,0.468875,0.812116,-0.347311,
0.433696,0.751183,-0.497626,0.224497,0.837836,-0.497626,0.812116,-0.468875,-0.347311,0.663090,-0.663089,-0.347311,
0.613338,-0.613338,-0.497626,0.751184,-0.433695,-0.497626,-0.905797,-0.242708,-0.347311,-0.937750,-0.000000,-0.347311,
-0.867391,-0.000000,-0.497627,-0.837836,-0.224497,-0.497627,-0.000001,0.937750,-0.347311,0.242707,0.905797,-0.347311,
0.224497,0.837836,-0.497626,-0.000001,0.867392,-0.497626,0.905797,-0.242707,-0.347311,0.812116,-0.468875,-0.347311,
0.751184,-0.433695,-0.497626,0.837836,-0.224497,-0.497627,-0.812116,-0.468875,-0.347311,-0.905797,-0.242708,-0.347311,
-0.837836,-0.224497,-0.497627,-0.751184,-0.433695,-0.497626,-0.242707,0.905797,-0.347311,-0.000001,0.937750,-0.347311,
-0.000001,0.867392,-0.497626,-0.224497,0.837836,-0.497626,0.937750,0.000000,-0.347311,0.905797,-0.242707,-0.347311,
0.837836,-0.224497,-0.497627,0.867391,0.000000,-0.497627,-0.663090,-0.663089,-0.347311,-0.812116,-0.468875,-0.347311,
-0.751184,-0.433695,-0.497626,-0.613338,-0.613338,-0.497626,-0.468875,0.812115,-0.347312,-0.242707,0.905797,-0.347311,
-0.224497,0.837836,-0.497626,-0.433696,0.751183,-0.497626,0.905797,0.242708,-0.347311,0.937750,0.000000,-0.347311,
0.867391,0.000000,-0.497627,0.837836,0.224497,-0.497627,-0.468875,-0.812115,-0.347311,-0.663090,-0.663089,-0.347311,
-0.613338,-0.613338,-0.497626,-0.433695,-0.751183,-0.497627,-0.663089,0.663090,-0.347311,-0.468875,0.812115,-0.347312,
-0.433696,0.751183,-0.497626,-0.613338,0.613338,-0.497627,-0.000001,0.867392,-0.497626,0.224497,0.837836,-0.497626,
0.188765,0.704484,-0.684156,-0.000000,0.729336,-0.684156,0.837836,-0.224497,-0.497627,0.751184,-0.433695,-0.497626,
0.631624,-0.364667,-0.684155,0.704485,-0.188765,-0.684155,-0.751184,-0.433695,-0.497626,-0.837836,-0.224497,-0.497627,
-0.704485,-0.188766,-0.684155,-0.631624,-0.364667,-0.684155,-0.224497,0.837836,-0.497626,-0.000001,0.867392,-0.497626,
-0.000000,0.729336,-0.684156,-0.188766,0.704484,-0.684156,0.867391,0.000000,-0.497627,0.837836,-0.224497,-0.497627,
0.704485,-0.188765,-0.684155,0.729336,-0.000000,-0.684155,-0.613338,-0.613338,-0.497626,-0.751184,-0.433695,-0.497626,
-0.631624,-0.364667,-0.684155,-0.515719,-0.515718,-0.684155,-0.433696,0.751183,-0.497626,-0.224497,0.837836,-0.497626,
-0.188766,0.704484,-0.684156,-0.364669,0.631623,-0.684156,0.837836,0.224497,-0.497627,0.867391,0.000000,-0.497627,
0.729336,-0.000000,-0.684155,0.704485,0.188765,-0.684156,-0.433695,-0.751183,-0.497627,-0.613338,-0.613338,-0.497626,
-0.515719,-0.515718,-0.684155,-0.364668,-0.631624,-0.684155,-0.613338,0.613338,-0.497627,-0.433696,0.751183,-0.497626,
-0.364669,0.631623,-0.684156,-0.515718,0.515719,-0.684156,0.751184,0.433695,-0.497627,0.837836,0.224497,-0.497627,
0.704485,0.188765,-0.684156,0.631624,0.364667,-0.684156,-0.224498,-0.837835,-0.497627,-0.433695,-0.751183,-0.497627,
-0.364668,-0.631624,-0.684155,-0.188766,-0.704485,-0.684155,0.224498,-0.837835,-0.497627,0.000000,-0.867391,-0.497627,
0.000000,-0.729336,-0.684156,0.188767,-0.704485,-0.684155,-0.751182,0.433696,-0.497627,-0.613338,0.613338,-0.497627,
-0.515718,0.515719,-0.684156,-0.631623,0.364669,-0.684156,0.613338,0.613339,-0.497627,0.751184,0.433695,-0.497627,
0.631624,0.364667,-0.684156,0.515718,0.515719,-0.684156,0.000000,-0.867391,-0.497627,-0.224498,-0.837835,-0.497627,
-0.188766,-0.704485,-0.684155,0.000000,-0.729336,-0.684156,0.433696,-0.751183,-0.497627,0.224498,-0.837835,-0.497627,
0.188767,-0.704485,-0.684155,0.364668,-0.631624,-0.684156,-0.837835,0.224498,-0.497627,-0.751182,0.433696,-0.497627,
-0.631623,0.364669,-0.684156,-0.704485,0.188766,-0.684156,0.433696,0.751183,-0.497626,0.613338,0.613339,-0.497627,
0.515718,0.515719,-0.684156,0.364668,0.631623,-0.684156,0.613338,-0.613338,-0.497626,0.433696,-0.751183,-0.497627,
0.364668,-0.631624,-0.684156,0.515718,-0.515719,-0.684155,-0.867391,-0.000000,-0.497627,-0.837835,0.224498,-0.497627,
-0.704485,0.188766,-0.684156,-0.729336,-0.000000,-0.684155,0.224497,0.837836,-0.497626,0.433696,0.751183,-0.497626,
0.364668,0.631623,-0.684156,0.188765,0.704484,-0.684156,0.751184,-0.433695,-0.497626,0.613338,-0.613338,-0.497626,
0.515718,-0.515719,-0.684155,0.631624,-0.364667,-0.684155,-0.837836,-0.224497,-0.497627,-0.867391,-0.000000,-0.497627,
-0.729336,-0.000000,-0.684155,-0.704485,-0.188766,-0.684155,-0.188766,-0.704485,-0.684155,-0.364668,-0.631624,-0.684155,
-0.312474,-0.541223,-0.780665,-0.161431,-0.603585,-0.780785,0.188767,-0.704485,-0.684155,0.000000,-0.729336,-0.684156,
0.000000,-0.624950,-0.780665,0.161749,-0.603655,-0.780665,-0.631623,0.364669,-0.684156,-0.515718,0.515719,-0.684156,
-0.441906,0.441907,-0.780665,-0.541223,0.312476,-0.780664,0.515718,0.515719,-0.684156,0.631624,0.364667,-0.684156,
0.541222,0.312475,-0.780665,0.441905,0.441907,-0.780665,0.000000,-0.729336,-0.684156,-0.188766,-0.704485,-0.684155,
-0.161431,-0.603585,-0.780785,0.000000,-0.624950,-0.780665,0.364668,-0.631624,-0.684156,0.188767,-0.704485,-0.684155,
0.161749,-0.603655,-0.780665,0.312474,-0.541223,-0.780665,-0.704485,0.188766,-0.684156,-0.631623,0.364669,-0.684156,
-0.541223,0.312476,-0.780664,-0.603656,0.161749,-0.780664,0.364668,0.631623,-0.684156,0.515718,0.515719,-0.684156,
0.441905,0.441907,-0.780665,0.312474,0.541222,-0.780666,0.515718,-0.515719,-0.684155,0.364668,-0.631624,-0.684156,
0.312474,-0.541223,-0.780665,0.441906,-0.441907,-0.780665,-0.729336,-0.000000,-0.684155,-0.704485,0.188766,-0.684156,
-0.603656,0.161749,-0.780664,-0.624950,-0.000000,-0.780665,0.188765,0.704484,-0.684156,0.364668,0.631623,-0.684156,
0.312474,0.541222,-0.780666,0.161748,0.603654,-0.780666,0.631624,-0.364667,-0.684155,0.515718,-0.515719,-0.684155,
0.441906,-0.441907,-0.780665,0.541223,-0.312474,-0.780665,-0.704485,-0.188766,-0.684155,-0.729336,-0.000000,-0.684155,
-0.624950,-0.000000,-0.780665,-0.603656,-0.161749,-0.780665,-0.000000,0.729336,-0.684156,0.188765,0.704484,-0.684156,
0.161748,0.603654,-0.780666,-0.000000,0.624948,-0.780666,0.704485,-0.188765,-0.684155,0.631624,-0.364667,-0.684155,
0.541223,-0.312474,-0.780665,0.603584,-0.161431,-0.780786,-0.631624,-0.364667,-0.684155,-0.704485,-0.188766,-0.684155,
-0.603656,-0.161749,-0.780665,-0.541223,-0.312474,-0.780665,-0.188766,0.704484,-0.684156,-0.000000,0.729336,-0.684156,
-0.000000,0.624948,-0.780666,-0.161430,0.603585,-0.780785,0.729336,-0.000000,-0.684155,0.704485,-0.188765,-0.684155,
0.603584,-0.161431,-0.780786,0.624950,-0.000000,-0.780665,-0.515719,-0.515718,-0.684155,-0.631624,-0.364667,-0.684155,
-0.541223,-0.312474,-0.780665,-0.441907,-0.441906,-0.780665,-0.364669,0.631623,-0.684156,-0.188766,0.704484,-0.684156,
-0.161430,0.603585,-0.780785,-0.312475,0.541222,-0.780665,0.704485,0.188765,-0.684156,0.729336,-0.000000,-0.684155,
0.624950,-0.000000,-0.780665,0.603583,0.161432,-0.780787,-0.364668,-0.631624,-0.684155,-0.515719,-0.515718,-0.684155,
-0.441907,-0.441906,-0.780665,-0.312474,-0.541223,-0.780665,-0.515718,0.515719,-0.684156,-0.364669,0.631623,-0.684156,
-0.312475,0.541222,-0.780665,-0.441906,0.441907,-0.780665,0.631624,0.364667,-0.684156,0.704485,0.188765,-0.684156,
0.603583,0.161432,-0.780787,0.541222,0.312475,-0.780665,-0.000001,0.798634,0.601817,0.206699,0.771420,0.601819,
0.107528,0.401304,0.909611,-0.000000,0.415463,0.909610,0.771419,-0.206701,0.601819,0.691637,-0.399318,0.601817,
0.359801,-0.207732,0.909610,0.401303,-0.107529,0.909612,-0.691639,-0.399315,0.601817,-0.771423,-0.206702,0.601816,
-0.401307,-0.107530,0.909610,-0.359801,-0.207730,0.909610,-0.206700,0.771420,0.601819,-0.000001,0.798634,0.601817,
-0.000000,0.415463,0.909610,-0.107528,0.401305,0.909611,0.798632,-0.000000,0.601819,0.771419,-0.206701,0.601819,
0.401303,-0.107529,0.909612,0.415462,-0.000000,0.909611,-0.564720,-0.564717,0.601820,-0.691639,-0.399315,0.601817,
-0.359801,-0.207730,0.909610,-0.293775,-0.293774,0.909612,-0.399316,0.691635,0.601820,-0.206700,0.771420,0.601819,
-0.107528,0.401305,0.909611,-0.207730,0.359799,0.909611,0.771420,0.206701,0.601819,0.798632,-0.000000,0.601819,
0.415462,-0.000000,0.909611,0.401303,0.107529,0.909612,-0.399315,-0.691636,0.601819,-0.564720,-0.564717,0.601820,
-0.293775,-0.293774,0.909612,-0.207729,-0.359800,0.909611,-0.564717,0.564719,0.601819,-0.399316,0.691635,0.601820,
-0.207730,0.359799,0.909611,-0.293775,0.293775,0.909611,0.691637,0.399317,0.601817,0.771420,0.206701,0.601819,
0.401303,0.107529,0.909612,0.359803,0.207731,0.909610,-0.206701,-0.771420,0.601818,-0.399315,-0.691636,0.601819,
-0.207729,-0.359800,0.909611,-0.107528,-0.401305,0.909611,0.206701,-0.771420,0.601818,0.000001,-0.798633,0.601818,
0.000001,-0.415461,0.909611,0.107529,-0.401305,0.909611,-0.691638,0.399318,0.601815,-0.564717,0.564719,0.601819,
-0.293775,0.293775,0.909611,-0.359801,0.207731,0.909610,0.564718,0.564718,0.601820,0.691637,0.399317,0.601817,
0.359803,0.207731,0.909610,0.293775,0.293774,0.909612,0.000001,-0.798633,0.601818,-0.206701,-0.771420,0.601818,
-0.107528,-0.401305,0.909611,0.000001,-0.415461,0.909611,0.399317,-0.691637,0.601818,0.206701,-0.771420,0.601818,
0.107529,-0.401305,0.909611,0.207731,-0.359799,0.909611,-0.771424,0.206701,0.601814,-0.691638,0.399318,0.601815,
-0.359801,0.207731,0.909610,-0.401308,0.107530,0.909609,0.399313,0.691636,0.601822,0.564718,0.564718,0.601820,
0.293775,0.293774,0.909612,0.207728,0.359799,0.909612,0.564722,-0.564718,0.601816,0.399317,-0.691637,0.601818,
0.207731,-0.359799,0.909611,0.293777,-0.293776,0.909610,-0.798635,0.000000,0.601815,-0.771424,0.206701,0.601814,
-0.401308,0.107530,0.909609,-0.415463,0.000000,0.909610,0.206699,0.771420,0.601819,0.399313,0.691636,0.601822,
0.207728,0.359799,0.909612,0.107528,0.401304,0.909611,0.691637,-0.399318,0.601817,0.564722,-0.564718,0.601816,
0.293777,-0.293776,0.909610,0.359801,-0.207732,0.909610,-0.771423,-0.206702,0.601816,-0.798635,0.000000,0.601815,
-0.415463,0.000000,0.909610,-0.401307,-0.107530,0.909610,0.107529,-0.401305,0.909611,0.000001,-0.415461,0.909611,
0.000001,0.000000,1.000000,0.000000,0.000000,1.000000,-0.359801,0.207731,0.909610,-0.293775,0.293775,0.909611,
-0.000001,0.000000,1.000000,0.000000,0.000000,1.000000,0.293775,0.293774,0.909612,0.359803,0.207731,0.909610,
0.000002,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,-0.415461,0.909611,-0.107528,-0.401305,0.909611,
0.000002,0.000000,1.000000,0.000001,0.000000,1.000000,0.207731,-0.359799,0.909611,0.107529,-0.401305,0.909611,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.401308,0.107530,0.909609,-0.359801,0.207731,0.909610,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.207728,0.359799,0.909612,0.293775,0.293774,0.909612,
0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,0.293777,-0.293776,0.909610,0.207731,-0.359799,0.909611,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.415463,0.000000,0.909610,-0.401308,0.107530,0.909609,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.107528,0.401304,0.909611,0.207728,0.359799,0.909612,
-0.000001,0.000000,1.000000,0.000000,0.000000,1.000000,0.359801,-0.207732,0.909610,0.293777,-0.293776,0.909610,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.401307,-0.107530,0.909610,-0.415463,0.000000,0.909610,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.415463,0.909610,0.107528,0.401304,0.909611,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.401303,-0.107529,0.909612,0.359801,-0.207732,0.909610,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.359801,-0.207730,0.909610,-0.401307,-0.107530,0.909610,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.107528,0.401305,0.909611,-0.000000,0.415463,0.909610,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.415462,-0.000000,0.909611,0.401303,-0.107529,0.909612,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.293775,-0.293774,0.909612,-0.359801,-0.207730,0.909610,
0.000000,0.000000,1.000000,0.000001,0.000000,1.000000,-0.207730,0.359799,0.909611,-0.107528,0.401305,0.909611,
0.000000,0.000000,1.000000,-0.000001,0.000000,1.000000,0.401303,0.107529,0.909612,0.415462,-0.000000,0.909611,
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.207729,-0.359800,0.909611,-0.293775,-0.293774,0.909612,
0.000001,0.000000,1.000000,0.000002,0.000000,1.000000,-0.293775,0.293775,0.909611,-0.207730,0.359799,0.909611,
-0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,0.359803,0.207731,0.909610,0.401303,0.107529,0.909612,
0.000000,0.000000,1.000000,0.000002,0.000000,1.000000,-0.107528,-0.401305,0.909611,-0.207729,-0.359800,0.909611,
0.000002,0.000000,1.000000,0.000002,0.000000,1.000000,0.965926,-0.258820,0.000000,0.866025,-0.500001,0.000000,
0.866025,-0.500001,0.000000,0.965926,-0.258820,0.000000,-0.866027,-0.499998,0.000000,-0.965925,-0.258821,0.000000,
-0.965925,-0.258821,0.000000,-0.866027,-0.499998,0.000000,-0.258818,0.965926,-0.000001,-0.000000,1.000000,-0.000000,
-0.000000,1.000000,-0.000000,-0.258818,0.965926,-0.000001,1.000000,0.000000,0.000000,0.965926,-0.258820,0.000000,
0.965926,-0.258820,0.000000,1.000000,-0.000000,0.000000,-0.707108,-0.707105,0.000000,-0.866027,-0.499998,0.000000,
-0.866027,-0.499998,0.000000,-0.707108,-0.707105,0.000000,-0.500002,0.866024,-0.000001,-0.258818,0.965926,-0.000001,
-0.258818,0.965926,-0.000001,-0.500002,0.866024,-0.000001,0.965926,0.258820,-0.000000,1.000000,0.000000,0.000000,
1.000000,-0.000000,0.000000,0.965926,0.258820,-0.000000,-0.500000,-0.866026,0.000001,-0.707108,-0.707105,0.000000,
-0.707108,-0.707105,0.000000,-0.500000,-0.866026,0.000001,-0.707107,0.707106,0.000000,-0.500002,0.866024,-0.000001,
-0.500002,0.866024,-0.000001,-0.707107,0.707106,0.000000,0.866025,0.500001,0.000000,0.965926,0.258820,-0.000000,
0.965926,0.258820,-0.000000,0.866025,0.500001,0.000000,-0.258820,-0.965926,0.000001,-0.500000,-0.866026,0.000001,
-0.500000,-0.866026,0.000001,-0.258820,-0.965926,0.000001,0.258821,-0.965925,0.000001,0.000000,-1.000000,0.000001,
0.000000,-1.000000,0.000001,0.258821,-0.965925,0.000001,-0.866025,0.500000,-0.000000,-0.707107,0.707106,0.000000,
-0.707107,0.707106,0.000000,-0.866025,0.500000,-0.000000,0.707108,0.707106,0.000000,0.866025,0.500001,0.000000,
0.866025,0.500001,0.000000,0.707108,0.707106,0.000000,0.000000,-1.000000,0.000001,-0.258820,-0.965926,0.000001,
-0.258820,-0.965926,0.000001,0.000000,-1.000000,0.000001,0.500001,-0.866025,0.000001,0.258821,-0.965925,0.000001,
0.258821,-0.965925,0.000001,0.500001,-0.866025,0.000001,-0.965926,0.258820,-0.000000,-0.866025,0.500000,-0.000000,
-0.866025,0.500000,-0.000000,-0.965926,0.258820,-0.000000,0.500000,0.866026,-0.000001,0.707108,0.707106,0.000000,
0.707108,0.707106,0.000000,0.500000,0.866026,-0.000001,0.707108,-0.707105,0.000000,0.500001,-0.866025,0.000001,
0.500001,-0.866025,0.000001,0.707108,-0.707105,0.000000,-1.000000,-0.000000,-0.000000,-0.965926,0.258820,-0.000000,
-0.965926,0.258820,-0.000000,-1.000000,-0.000000,0.000000,0.258818,0.965926,-0.000001,0.500000,0.866026,-0.000001,
0.500000,0.866026,-0.000001,0.258818,0.965926,-0.000001,0.866025,-0.500001,0.000000,0.707108,-0.707105,0.000000,
0.707108,-0.707105,0.000000,0.866025,-0.500001,0.000000,-0.965925,-0.258821,0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,0.000000,-0.965925,-0.258821,0.000000,-0.000000,1.000000,-0.000000,0.258818,0.965926,-0.000001,
0.258818,0.965926,-0.000001,-0.000000,1.000000,-0.000000,-0.000000,0.000000,-1.000000,0.000002,0.000000,-1.000000,
0.000002,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000002,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
-0.000000,0.000000,-1.000000,-0.000002,0.000000,-1.000000,0.000001,0.000000,-1.000000,-0.000002,0.000000,-1.000000,
-0.000002,0.000000,-1.000000,0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,
0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,
-0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,0.000001,0.000000,-1.000000,0.000001,0.000000,-1.000000,
0.000001,0.000000,-1.000000,0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000001,0.000000,-1.000000,
0.000001,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,1.000000,0.000000,0.000001,1.000000,
0.000000,0.000001,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,
-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,
-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,
-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,
-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000001,0.000000,1.000000,-0.000000,0.000000,1.000000,
-0.000000,0.000000,1.000000,-0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,-0.000001,0.000000,1.000000,
-0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,
0.000001,0.000000,1.000000,0.000001,0.000000,1.000000,0.000002,0.000001,1.000000,0.000001,0.000000,1.000000,
0.000001,0.000000,1.000000,0.000002,0.000001,1.000000
}
LayerElementUV: 0 {
Version: 101
Name: "UVMap"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: 0.931504,0.419277,0.721810,0.261074,0.861353,0.298496,0.273994,0.353321,0.169150,0.015216,0.542726,0.750929,
0.333384,0.536030,0.255691,0.350908,0.662350,0.667409,0.632444,0.375455,0.618242,0.009488,0.638541,0.009488,
0.961411,0.419277,0.372799,0.290300,0.877799,0.170499,0.333384,0.956318,0.423102,0.658319,0.512821,0.592546,
0.303479,0.536030,0.930018,0.354481,0.692255,0.667409,0.854139,0.315919,0.309358,0.343853,0.435553,0.002607,
0.854700,0.198100,0.179100,0.933899,0.901597,0.901846,0.072099,0.000500,0.351500,0.279500,0.605300,0.273299,
0.412299,0.037799,0.516799,0.335000,0.553600,0.288700,0.516799,0.304100,0.642099,0.319599,0.391099,0.306199,
0.026599,0.702099,0.542726,0.901846,0.219799,0.861899,0.453008,0.375455,0.476151,0.022093,0.351839,0.002611,
0.811879,0.472609,0.512821,0.901846,0.363290,0.849316,0.572632,0.849316,0.781974,0.849316,0.811879,0.901846,
0.961411,0.799387,0.752068,0.693580,0.542726,0.693580,0.841786,0.667409,0.632444,0.667409,0.805274,0.013237,
0.243665,0.693580,0.791586,0.207547,0.662350,0.419277,0.412736,0.015216,0.810284,0.210017,0.393197,0.592546,
0.379200,0.297500,0.866299,0.292299,0.303479,0.658319,0.423102,0.536030,0.512821,0.419277,0.333384,0.472609,
0.273572,0.375455,0.482914,0.375455,0.885705,0.354481,0.719350,0.279771,0.764900,0.022199,0.781974,0.658319,
0.230047,0.022097,0.189449,0.022097,0.542726,0.472609,0.841786,0.989485,0.379200,0.322499,0.404599,0.099899,
0.228300,0.074199,0.963199,0.188600,0.718500,0.045000,0.781974,0.989485,0.393197,0.901846,0.227599,0.861899,
0.195999,0.892099,0.718500,0.026100,0.752068,0.750929,0.243665,0.419277,0.730610,0.365767,0.356499,0.279500,
0.952175,0.354481,0.632444,0.849316,0.841786,0.849316,0.372900,0.294299,0.642099,0.342700,0.605300,0.280999,
0.553600,0.296400,0.391000,0.086099,0.722162,0.989485,0.931504,0.989485,0.692255,0.901846,0.393197,0.750929,
0.781974,0.702918,0.849587,0.013237,0.827430,0.013237,0.694492,0.013237,0.672335,0.013237,0.871743,0.013237,
0.716648,0.013237,0.893900,0.013237,0.738805,0.013237,0.916056,0.013237,0.760961,0.013237,0.559700,0.170399,
0.662350,0.592546,0.169150,0.022097,0.243665,0.956318,0.662350,0.375455,0.662350,0.799387,0.243665,0.658319,
0.453008,0.658319,0.333384,0.901846,0.195999,0.997900,0.227599,0.997900,0.830799,0.140300,0.963199,0.292299,
0.482914,0.750929,0.273572,0.750929,0.303479,0.702918,0.797080,0.354481,0.721810,0.298470,0.738805,0.001951,
0.363290,0.592546,0.324010,0.332615,0.841786,0.702918,0.765200,0.061900,0.059300,0.851899,0.867799,0.036299,
0.707300,0.045099,0.363290,0.536030,0.752068,0.419277,0.832899,0.193599,0.794700,0.165900,0.492399,0.212400,
0.755466,0.217214,0.205696,0.300896,0.871692,0.750929,0.707400,0.026100,0.209748,0.015216,0.250346,0.002611,
0.363290,0.989485,0.514699,0.350300,0.642099,0.280999,0.642099,0.311899,0.572632,0.989485,0.961411,0.750929,
0.243665,0.702918,0.871692,0.693580,0.662350,0.693580,0.453008,0.693580,0.512821,0.750929,0.827430,0.001951,
0.931504,0.750929,0.781974,0.375455,0.849587,0.001951,0.672335,0.001951,0.694492,0.001951,0.015300,0.763199,
0.871743,0.001951,0.716648,0.001951,0.893900,0.001951,0.407299,0.294200,0.482914,0.693580,0.658840,0.009488,
0.417800,0.286599,0.202800,0.866999,0.642099,0.350400,0.303479,0.956318,0.553600,0.335000,0.386599,0.299899,
0.243665,0.901846,0.668299,0.061900,0.605300,0.296400,0.931504,0.956318,0.453008,0.901846,0.069799,0.899699,
0.727599,0.057700,0.362800,0.299899,0.811879,0.989485,0.542726,0.658319,0.781974,0.592546,0.618242,0.002607,
0.007400,0.702099,0.781974,0.536030,0.602538,0.702918,0.901597,0.472609,0.632444,0.989485,0.752068,0.799387,
0.393197,0.536030,0.632444,0.472609,0.229200,0.028699,0.516799,0.288700,0.775200,0.170699,0.866299,0.188600,
0.692255,0.956318,0.901597,0.956318,0.436100,0.263000,0.961411,0.849316,0.781974,0.799387,0.572632,0.799387,
0.363290,0.799387,0.512821,0.702918,0.335255,0.317967,0.901597,0.375455,0.476151,0.002607,0.632444,0.592546,
0.496450,0.002607,0.638541,0.002607,0.658840,0.002607,0.516749,0.002607,0.537047,0.002607,0.557345,0.002607,
0.577644,0.002607,0.901597,0.592546,0.216700,0.873099,0.224004,0.232570,0.292300,0.350914,0.512821,0.536030,
0.781974,0.472609,0.423102,0.901846,0.482914,0.799387,0.273572,0.799387,0.303479,0.592546,0.303479,0.419277,
0.740502,0.330860,0.238650,0.221327,0.309378,0.221326,0.662350,0.536030,0.712800,0.059500,0.741800,0.049699,
0.699500,0.057599,0.000500,0.679199,0.040100,0.865899,0.040100,0.858099,0.668299,0.084100,0.765200,0.084100,
0.189449,0.015216,0.230047,0.015216,0.190300,0.816299,0.243665,0.375455,0.602538,0.419277,0.755457,0.342345,
0.042599,0.000500,0.901597,0.536030,0.311241,0.015216,0.290943,0.015216,0.270645,0.015216,0.774923,0.365767,
0.842662,0.330882,0.542726,0.956318,0.605400,0.342700,0.516799,0.280999,0.522899,0.037799,0.516799,0.311899,
0.752068,0.956318,0.393197,0.849316,0.391099,0.313899,0.512821,0.989485,0.243665,0.799387,0.783118,0.013237,
0.010499,0.861899,0.811879,0.667409,0.632444,0.750929,0.901597,0.419277,0.189449,0.002611,0.542726,0.799387,
0.250346,0.015216,0.363290,0.472609,0.392437,0.002611,0.303479,0.901846,0.273572,0.989485,0.482914,0.989485,
0.333384,0.702918,0.423102,0.592546,0.482914,0.472609,0.273572,0.472609,0.512821,0.849316,0.423102,0.419277,
0.722162,0.375455,0.952175,0.365767,0.415254,0.002607,0.393197,0.693580,0.810284,0.349580,0.572632,0.702918,
0.680400,0.017500,0.028599,0.744400,0.662350,0.472609,0.227300,0.146200,0.205699,0.264281,0.392437,0.015216,
0.974331,0.365767,0.658840,0.022093,0.542726,0.375455,0.212760,0.317955,0.961411,0.989485,0.602538,0.956318,
0.572632,0.750929,0.363290,0.750929,0.781974,0.750929,0.393197,0.702918,0.841786,0.693580,0.632444,0.693580,
0.901597,0.667409,0.752068,0.667409,0.602538,0.375455,0.542726,0.592546,0.512821,0.658319,0.963199,0.349999,
0.752068,0.901846,0.779200,0.140300,0.542726,0.849316,0.412299,0.184200,0.669099,0.033500,0.376500,0.103200,
0.528199,0.034299,0.752068,0.989485,0.685400,0.049499,0.311241,0.002611,0.290943,0.002611,0.270645,0.002611,
0.333384,0.989485,0.605400,0.350400,0.605300,0.288700,0.553600,0.273299,0.516799,0.319599,0.036899,0.827499,
0.423102,0.849316,0.514699,0.286599,0.303479,0.750929,0.482914,0.702918,0.901597,0.658319,0.632444,0.536030,
0.393197,0.472609,0.760961,0.001951,0.692255,0.375455,0.854128,0.243680,0.021800,0.713900,0.065200,0.023399,
0.216000,0.028699,0.697099,0.046399,0.745500,0.017400,0.729600,0.046399,0.539600,0.045600,0.043000,0.899699,
0.841786,0.419277,0.363290,0.693580,0.212200,0.884400,0.428700,0.212400,0.442699,0.212400,0.404700,0.209900,
0.339199,0.238800,0.255708,0.214258,0.223996,0.332605,0.393197,0.658319,0.036800,0.733200,0.412736,0.002611,
0.453008,0.667409,0.752068,0.592546,0.811879,0.849316,0.781974,0.901846,0.363290,0.901846,0.453008,0.956318,
0.393197,0.989485,0.859799,0.165999,0.390100,0.296400,0.871692,0.956318,0.572632,0.901846,0.662350,0.956318,
0.811879,0.592546,0.542726,0.536030,0.572632,0.419277,0.863549,0.365767,0.819236,0.354481,0.938213,0.013237,
0.722162,0.658319,0.572632,0.536030,0.542726,0.419277,0.492399,0.184200,0.308800,0.086199,0.441000,0.238800,
0.393197,0.667409,0.729027,0.243651,0.203288,0.282588,0.351839,0.015216,0.455852,0.022093,0.342326,0.300909,
0.752068,0.375455,0.930018,0.365767,0.512821,0.472609,0.642099,0.273299,0.605400,0.335000,0.482914,0.849316,
0.273572,0.849316,0.423102,0.702918,0.273572,0.702918,0.333384,0.592546,0.333384,0.419277,0.974331,0.354481,
0.730610,0.354481,0.752767,0.365767,0.028799,0.690500,0.043800,0.011800,0.335266,0.247222,0.003299,0.690500,
0.536599,0.034400,0.961411,0.693580,0.811879,0.536030,0.342331,0.264287,0.169150,0.002611,0.871692,0.667409,
0.841786,0.375455,0.602538,0.667409,0.355399,0.297500,0.336499,0.111900,0.553600,0.280999,0.348100,0.320100,
0.343600,0.313899,0.364499,0.286500,0.722162,0.956318,0.415800,0.286500,0.243665,0.849316,0.393197,0.799387,
0.961411,0.702918,0.572632,0.592546,0.455852,0.002607,0.602538,0.693580,0.453008,0.536030,0.230047,0.002611,
0.243665,0.536030,0.841786,0.472609,0.363290,0.667409,0.209748,0.002611,0.602538,0.658319,0.423102,0.989485,
0.333384,0.849316,0.153999,0.997600,0.441100,0.246600,0.303479,0.799387,0.482914,0.592546,0.273572,0.592546,
0.423102,0.472609,0.482914,0.419277,0.273572,0.419277,0.907862,0.365767,0.916056,0.001951,0.512821,0.375455,
0.819236,0.365767,0.097499,0.873899,0.798399,0.198200,0.804899,0.108099,0.522800,0.184200,0.189600,0.029100,
0.024700,0.755599,0.326000,0.068700,0.840499,0.130199,0.528199,0.170399,0.871100,0.182099,0.056299,0.000500,
0.243665,0.592546,0.344399,0.222399,0.931504,0.693580,0.642099,0.296400,0.553600,0.342700,0.642099,0.327300,
0.572632,0.956318,0.871692,0.901846,0.371899,0.320100,0.781974,0.956318,0.662350,0.901846,0.362800,0.320100,
0.901597,0.799387,0.692255,0.658319,0.752068,0.658319,0.931504,0.592546,0.871692,0.536030,0.393197,0.375455,
0.692255,0.472609,0.781974,0.667409,0.722162,0.693580,0.961411,0.592546,0.303479,0.989485,0.273572,0.901846,
0.516799,0.273299,0.371899,0.299899,0.343600,0.306199,0.423102,0.799387,0.333384,0.750929,0.243665,0.750929,
0.303479,0.472609,0.841393,0.354481,0.783118,0.001951,0.811879,0.750929,0.841786,0.658319,0.344741,0.282601,
0.961411,0.536030,0.055500,0.011800,0.412736,0.022097,0.392437,0.022097,0.250346,0.022097,0.372138,0.022097,
0.692255,0.849316,0.453008,0.702918,0.209748,0.022097,0.351839,0.022097,0.331540,0.022097,0.843100,0.194999,
0.349200,0.113499,0.797080,0.365767,0.453008,0.750929,0.871692,0.375455,0.572632,0.667409,0.557345,0.022093,
0.496450,0.022093,0.931504,0.536030,0.841786,0.956318,0.877099,0.149800,0.428700,0.273999,0.386599,0.320100,
0.866299,0.349999,0.243665,0.989485,0.812500,0.206200,0.840600,0.206200,0.435799,0.222399,0.512821,0.799387,
0.901597,0.693580,0.863810,0.279800,0.602538,0.472609,0.871692,0.472609,0.963199,0.232500,0.229200,0.068700,
0.363290,0.375455,0.841393,0.365767,0.722162,0.472609,0.393197,0.419277,0.355399,0.322499,0.642099,0.335000,
0.553600,0.350400,0.642099,0.304100,0.423102,0.693580,0.303479,0.667409,0.333384,0.375455,0.752767,0.354481,
0.692255,0.693580,0.781974,0.419277,0.931504,0.658319,0.029999,0.679199,0.692255,0.702918,0.722162,0.849316,
0.871692,0.799387,0.577644,0.022093,0.516749,0.022093,0.537047,0.022093,0.274014,0.211847,0.351500,0.273999,
0.602538,0.799387,0.901597,0.750929,0.692255,0.750929,0.931504,0.702918,0.722162,0.702918,0.811879,0.693580,
0.512821,0.693580,0.243665,0.667409,0.363290,0.658319,0.841786,0.536030,0.363290,0.702918,0.632444,0.419277,
0.453008,0.472609,0.847800,0.152799,0.442699,0.184200,0.866299,0.232500,0.662350,0.750929,0.772881,0.349571,
0.871692,0.658319,0.303479,0.849316,0.333384,0.799387,0.423102,0.750929,0.996488,0.354481,0.938213,0.001951,
0.752068,0.536030,0.363290,0.419277,0.602538,0.750929,0.015300,0.873799,0.030999,0.733200,0.017100,0.690500,
0.363290,0.956318,0.482914,0.901846,0.632444,0.956318,0.961411,0.901846,0.348100,0.299899,0.046000,0.023399,
0.847899,0.132599,0.852400,0.138799,0.782000,0.182300,0.810599,0.194900,0.203600,0.079400,0.052000,0.849500,
0.961411,0.658319,0.722162,0.750929,0.572632,0.375455,0.453008,0.799387,0.597943,0.022093,0.331540,0.002611,
0.273572,0.693580,0.885705,0.365767,0.632444,0.901846,0.363400,0.111900,0.961411,0.956318,0.602538,0.989485,
0.516799,0.342700,0.841786,0.901846,0.417800,0.350300,0.367300,0.313899,0.827300,0.208000,0.901597,0.849316,
0.542726,0.667409,0.811879,0.799387,0.662350,0.702918,0.801100,0.177200,0.996488,0.365767,0.632444,0.799387,
0.752068,0.472609,0.740505,0.228692,0.692255,0.536030,0.331540,0.015216,0.372138,0.002611,0.476151,0.009488,
0.853200,0.177300,0.339100,0.246600,0.333384,0.693580,0.482914,0.536030,0.273572,0.536030,0.423102,0.375455,
0.907862,0.354481,0.597943,0.002607,0.692255,0.799387,0.722162,0.419277,0.082999,0.890999,0.404100,0.074199,
0.303999,0.074199,0.559700,0.064800,0.758199,0.033799,0.528199,0.060300,0.395900,0.074199,0.102399,0.861899,
0.016300,0.679199,0.863900,0.025100,0.841786,0.750929,0.811879,0.658319,0.863549,0.354481,0.453008,0.592546,
0.871692,0.419277,0.212766,0.247221,0.618242,0.022093,0.638541,0.022093,0.602538,0.536030,0.393197,0.956318,
0.855599,0.108199,0.344099,0.263000,0.662350,0.989485,0.871692,0.989485,0.453008,0.989485,0.832799,0.174600,
0.821600,0.174600,0.752068,0.849316,0.931504,0.799387,0.931504,0.375455,0.292320,0.214258,0.772889,0.210003,
0.901597,0.702918,0.961411,0.375455,0.722162,0.536030,0.423700,0.279500,0.642099,0.288700,0.516799,0.350400,
0.367300,0.306199,0.178000,0.861899,0.227599,0.887899,0.333384,0.667409,0.482914,0.658319,0.273572,0.658319,
0.303479,0.375455,0.805274,0.001951,0.722162,0.592546,0.069300,0.011800,0.855700,0.013899,0.861500,0.013899,
0.805499,0.013899,0.830799,0.013899,0.779200,0.013899,0.706700,0.013899,0.662400,0.021900,0.719299,0.013899,
0.015399,0.869099,0.779200,0.108099,0.252499,0.209900,0.722162,0.799387,0.781974,0.693580,0.871692,0.592546,
0.453008,0.419277,0.692255,0.419277,0.602538,0.592546,0.692255,0.989485,0.931504,0.901846,0.852400,0.146599,
0.833199,0.132599,0.722162,0.901846,0.833500,0.162400,0.901597,0.989485,0.602538,0.849316,0.752068,0.702918,
0.542726,0.702918,0.811879,0.419277,0.632444,0.658319,0.632444,0.702918,0.572632,0.658319,0.572632,0.693580,
0.238640,0.343844,0.516749,0.009488,0.537047,0.009488,0.821600,0.193499,0.423102,0.956318,0.482914,0.667409,
0.273572,0.667409,0.333384,0.658319,0.961411,0.472609,0.774923,0.354481,0.861345,0.261102,0.729026,0.315895,
0.044700,0.872099,0.017400,0.702099,0.326000,0.028699,0.050799,0.035199,0.544000,0.056899,0.044599,0.851899,
0.877099,0.043900,0.057100,0.901300,0.686900,0.028699,0.739099,0.028699,0.830799,0.108099,0.512821,0.667409,
0.692255,0.592546,0.311241,0.022097,0.290943,0.022097,0.270645,0.022097,0.372138,0.015216,0.931504,0.472609,
0.415254,0.022093,0.931504,0.667409,0.542726,0.989485,0.811879,0.956318,0.512821,0.956318,0.453008,0.849316,
0.820900,0.162400,0.516799,0.296400,0.516799,0.327300,0.662350,0.849316,0.871692,0.849316,0.841786,0.799387,
0.827704,0.342364,0.811879,0.375455,0.243665,0.472609,0.216700,0.816699,0.323399,0.103200,0.842653,0.228720,
0.961411,0.667409,0.931504,0.849316,0.722162,0.667409,0.811879,0.702918,0.496450,0.009488,0.407499,0.290300,
0.273572,0.956318,0.482914,0.956318,0.428700,0.279500,0.303479,0.693580,0.423102,0.667409,0.827700,0.217240,
0.791584,0.352039,0.871692,0.702918,0.557345,0.009488,0.841786,0.592546,0.577644,0.009488,0.002000,0.887700,
0.002000,0.861899,0.002000,0.997600,0.415254,0.009488,0.435553,0.009488,0.597943,0.009488,0.455852,0.009488,
0.029799,0.890900,0.055199,0.023399,0.351500,0.212400,0.324026,0.232570,0.435553,0.022093,0.572632,0.472609,
0.662350,0.658319,0.602538,0.901846
UVIndex: 646,457,25,270,591,791,792,791,591,798,793,791,798,793,798,353,185,646,445,793,185,445,685,248,771,175,646,25,445,685,175,25,457,653,685,25,745,185,793,793,353,745,224,686,356,38,83,686,224,356,686,84,122,84,686,123,694,695,655,666,137,744,666,694,
655,137,600,666,601,525,577,713,464,714,666,525,713,601,600,464,666,666,525,601,744,525,666,411,505,799,599,505,693,347,799,467,27,693,505,252,467,505,411,799,347,741,599,799,741,373,14,466,636,636,515,141,671,142,627,602,202,602,627,603,458,466,24,515,
636,458,603,530,24,531,515,603,729,622,530,627,672,729,603,716,373,636,671,729,141,622,671,141,729,672,716,671,672,762,762,672,627,142,622,141,515,531,667,637,446,206,13,427,429,779,360,469,532,389,337,151,620,174,469,800,357,532,782,681,526,28,563,89,
563,667,206,526,89,563,526,681,427,89,681,429,13,779,374,171,374,779,93,13,374,446,637,360,389,748,459,696,697,545,94,260,400,94,176,331,260,682,471,182,332,152,682,332,95,399,152,95,29,578,321,30,703,698,696,459,31,178,472,618,618,472,546,683,
201,32,96,763,261,424,32,201,492,333,424,261,387,262,460,358,578,387,143,263,33,547,153,124,459,748,459,124,319,319,703,459,262,387,578,30,334,263,153,34,764,334,34,473,545,400,473,31,764,178,473,400,178,764,471,547,182,763,96,33,96,182,547,33,
699,147,746,294,294,746,322,700,746,147,138,349,350,70,650,747,650,239,351,747,701,350,747,85,747,351,80,85,322,746,349,326,239,186,351,326,349,240,85,80,138,147,701,85,147,699,351,186,238,80,238,240,349,138,138,80,238,772,297,388,652,647,77,97,
77,323,97,516,359,423,359,323,77,359,615,323,423,704,772,359,516,615,359,704,423,78,604,461,348,772,704,297,78,297,604,78,648,388,297,352,742,651,414,352,651,324,742,649,651,113,465,651,649,364,295,592,335,167,462,335,462,295,364,743,243,335,702,242,
738,605,335,136,702,243,242,743,335,605,335,243,702,167,335,702,410,36,739,593,593,739,192,413,654,593,413,241,555,410,593,654,739,346,192,36,346,739,527,76,476,621,266,527,621,684,35,266,684,493,179,35,493,60,125,317,528,61,538,125,61,579,79,538,
579,203,135,245,244,181,539,200,740,463,479,544,425,426,621,479,426,494,684,621,494,598,187,684,598,422,267,281,781,760,304,99,183,616,490,280,780,177,325,98,428,264,758,267,760,259,330,490,177,15,81,325,264,477,154,758,259,474,150,330,15,594,188,81,
477,759,617,154,474,305,372,150,594,665,75,188,759,524,196,617,305,596,443,372,665,730,669,75,524,375,668,196,596,377,670,443,730,371,717,669,375,205,711,668,377,204,281,670,371,781,99,717,205,183,280,529,116,780,98,711,204,428,371,730,229,184,205,375,
475,26,204,377,478,100,781,371,184,595,183,205,26,712,780,116,180,491,428,204,100,715,760,781,595,43,616,183,712,597,177,780,491,279,264,428,715,318,259,760,43,37,15,177,279,121,477,264,318,369,474,259,37,376,594,15,121,370,759,477,369,47,305,474,
376,805,665,594,370,82,524,759,47,619,596,305,805,614,730,665,82,229,375,524,619,475,377,596,614,478,376,37,320,45,370,121,444,44,47,369,46,368,805,376,45,718,82,370,44,265,619,47,368,92,614,805,718,91,229,82,265,336,475,619,92,766,478,614,
91,765,184,229,336,761,26,475,766,623,100,478,765,510,595,184,761,401,712,26,623,775,491,180,430,402,715,100,510,557,43,595,401,286,597,712,775,207,279,491,402,583,318,715,557,673,37,43,286,320,121,279,583,444,369,318,673,46,623,766,558,480,510,765,
118,644,401,761,609,230,775,623,480,674,402,430,268,231,557,510,644,705,286,401,230,533,207,775,674,48,583,402,231,447,673,557,705,197,320,286,533,275,444,583,447,584,46,673,197,208,45,320,275,209,44,444,584,210,368,46,208,625,718,45,209,564,265,44,
210,431,92,368,625,767,91,718,564,629,336,265,431,495,766,92,767,558,765,91,629,118,761,336,495,609,209,275,5,306,210,584,496,307,625,208,308,501,564,209,306,590,431,210,307,101,767,625,501,656,629,564,590,272,495,431,101,585,558,767,656,146,118,629,
272,580,609,495,585,518,480,558,146,565,644,118,580,566,230,609,518,126,674,480,565,162,231,268,497,127,705,644,566,607,533,230,126,160,48,674,162,155,447,231,127,338,197,705,607,86,275,533,160,5,584,447,338,496,208,197,86,308,566,580,626,556,126,518,
511,339,162,565,678,567,127,497,156,404,607,566,556,568,160,126,339,211,155,162,567,432,338,127,404,128,86,607,568,719,5,160,211,720,496,338,128,282,308,86,719,102,306,5,720,293,307,496,282,574,501,308,102,777,590,306,293,194,101,307,574,309,656,501,
777,134,272,590,194,723,585,101,309,403,146,656,134,787,580,272,723,626,518,585,403,511,565,146,787,678,574,282,638,355,777,102,706,569,194,293,725,435,309,574,355,291,134,777,569,310,723,194,435,311,403,309,291,548,787,134,310,157,626,723,311,158,511,403,
548,159,678,787,157,534,556,626,158,552,339,511,159,172,567,678,534,470,404,156,54,612,568,556,552,488,211,339,172,570,432,567,470,415,128,404,612,783,719,568,488,49,720,211,570,50,282,128,783,638,102,719,49,706,293,720,50,725,552,158,8,20,172,159,
366,731,470,534,312,757,612,54,571,732,488,552,20,776,570,172,731,749,415,470,757,774,783,612,732,549,49,488,776,313,50,570,749,624,638,783,549,687,706,49,313,487,725,50,624,520,355,638,687,440,569,706,487,271,435,725,520,421,291,355,440,390,310,569,
271,51,311,435,421,52,548,291,390,784,157,310,51,419,158,311,52,8,159,548,784,366,534,157,419,312,440,687,733,572,271,487,71,657,421,520,724,442,390,440,572,363,51,271,657,502,52,421,442,722,784,390,363,16,419,51,502,582,8,52,722,804,366,784,
16,120,312,419,582,340,20,8,804,481,731,366,120,688,757,312,340,554,732,571,119,689,776,20,481,384,749,731,688,316,774,757,554,606,549,732,689,62,313,776,384,482,624,749,316,189,687,549,62,733,487,313,482,71,520,624,189,724,688,120,659,448,554,340,
223,483,689,119,468,449,384,481,750,692,316,688,448,17,606,554,483,489,62,689,449,232,482,384,692,367,189,316,17,315,733,62,232,405,71,482,367,190,724,189,315,433,572,733,405,132,657,71,190,378,442,724,433,710,363,572,132,59,502,657,378,789,722,442,
710,215,16,363,59,283,582,502,789,707,804,722,215,114,120,16,283,659,340,582,707,223,481,804,114,750,378,190,193,416,710,433,385,664,59,132,139,198,789,378,416,573,215,710,664,341,283,59,198,63,707,789,573,484,114,215,341,237,659,283,63,436,223,707,
484,253,750,114,237,632,448,659,436,639,483,223,253,523,449,468,438,640,692,750,632,680,17,448,639,227,489,483,523,504,232,449,640,18,367,692,680,588,315,17,227,379,405,232,18,6,190,367,588,193,433,315,379,385,132,405,6,139,639,436,576,284,523,253,
195,755,640,438,770,285,680,632,486,542,227,639,284,398,504,523,755,734,18,640,285,498,588,680,542,630,379,227,398,74,6,18,498,65,193,588,630,228,385,379,74,803,139,6,65,277,416,193,228,42,664,385,803,536,198,139,277,342,573,416,42,439,341,664,
536,199,63,198,342,450,484,573,439,537,237,341,199,296,436,63,450,576,253,484,537,195,632,237,296,486,536,803,380,250,342,277,589,543,439,42,721,354,199,536,250,575,450,342,543,287,537,439,354,660,296,199,575,56,576,450,287,708,195,537,660,273,486,296,
56,709,284,576,708,451,755,195,273,0,285,770,87,452,542,486,709,645,398,284,451,64,734,755,0,12,498,285,452,233,630,542,645,140,74,398,64,386,65,498,233,406,228,630,140,553,803,74,386,380,277,65,406,589,42,228,553,721,0,273,213,675,452,87,
249,66,645,709,344,288,64,451,67,455,12,0,675,679,233,452,66,690,140,645,288,396,386,64,455,302,406,233,690,550,553,140,396,163,380,386,302,608,589,406,550,540,721,553,163,769,250,380,608,314,543,589,540,485,354,721,769,420,575,250,314,9,287,543,
485,641,660,354,420,519,56,575,9,117,708,287,641,39,273,660,519,213,709,56,117,344,451,708,39,67,418,274,246,4,327,611,633,254,559,521,788,790,802,756,794,795,328,327,254,255,610,559,790,796,394,802,795,797,329,328,255,256,662,610,796,10,40,394,
797,635,149,329,256,276,663,662,10,11,278,365,57,299,522,40,635,778,437,149,276,247,301,663,11,173,634,278,299,754,560,522,778,727,441,437,247,148,41,634,754,393,561,560,727,728,274,441,148,246,611,41,393,633,521,561,728,788,299,57,506,507,778,635,
214,216,247,276,508,72,173,11,217,218,754,299,507,509,727,778,216,219,148,247,72,512,393,754,509,513,728,727,219,220,246,148,512,73,633,393,513,514,788,728,220,221,4,246,73,115,254,633,514,751,790,788,221,222,795,794,290,23,255,254,751,752,796,790,
222,643,797,795,23,434,256,255,752,753,10,796,643,191,635,797,434,214,276,256,753,508,11,10,191,217,68,642,453,613,103,104,161,164,105,106,165,166,658,68,613,381,107,103,164,168,108,105,166,169,499,658,381,541,109,107,168,170,110,108,169,131,382,499,
541,456,111,109,170,454,407,586,628,300,112,110,131,343,129,382,456,517,383,111,454,587,90,407,300,289,269,112,343,500,735,129,517,257,19,90,289,397,53,269,500,691,551,735,257,409,642,19,397,453,104,53,691,161,408,551,409,88,69,1,391,631,130,69,
631,144,737,130,144,677,234,737,677,55,251,234,55,58,581,251,58,785,786,581,785,773,292,786,773,345,768,292,345,736,258,768,736,535,21,258,535,2,661,225,235,361,298,661,361,562,392,298,562,676,145,392,676,236,303,145,236,801,362,303,801,412,726,362,
412,417,7,726,417,503,3,7,503,395,226,3,395,212,22,226,212,133
}
LayerElementTexture: 0 {
Version: 101
Name: ""
MappingInformationType: "NoMappingInformation"
ReferenceInformationType: "IndexToDirect"
BlendMode: "Translucent"
TextureAlpha: 1
TextureId:
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: 0
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementTexture"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
}
}
Model: "Model::m61_pin", "Mesh" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",0.087882995605469,5.224352359771729,0.657974720001221
Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
Property: "RotationOffset", "Vector3D", "",0,0,0
Property: "RotationPivot", "Vector3D", "",0,0,0
Property: "ScalingOffset", "Vector3D", "",0,0,0
Property: "ScalingPivot", "Vector3D", "",0,0,0
Property: "TranslationActive", "bool", "",0
Property: "TranslationMin", "Vector3D", "",0,0,0
Property: "TranslationMax", "Vector3D", "",0,0,0
Property: "TranslationMinX", "bool", "",0
Property: "TranslationMinY", "bool", "",0
Property: "TranslationMinZ", "bool", "",0
Property: "TranslationMaxX", "bool", "",0
Property: "TranslationMaxY", "bool", "",0
Property: "TranslationMaxZ", "bool", "",0
Property: "RotationOrder", "enum", "",0
Property: "RotationSpaceForLimitOnly", "bool", "",0
Property: "AxisLen", "double", "",10
Property: "PreRotation", "Vector3D", "",0,0,0
Property: "PostRotation", "Vector3D", "",0,0,0
Property: "RotationActive", "bool", "",0
Property: "RotationMin", "Vector3D", "",0,0,0
Property: "RotationMax", "Vector3D", "",0,0,0
Property: "RotationMinX", "bool", "",0
Property: "RotationMinY", "bool", "",0
Property: "RotationMinZ", "bool", "",0
Property: "RotationMaxX", "bool", "",0
Property: "RotationMaxY", "bool", "",0
Property: "RotationMaxZ", "bool", "",0
Property: "RotationStiffnessX", "double", "",0
Property: "RotationStiffnessY", "double", "",0
Property: "RotationStiffnessZ", "double", "",0
Property: "MinDampRangeX", "double", "",0
Property: "MinDampRangeY", "double", "",0
Property: "MinDampRangeZ", "double", "",0
Property: "MaxDampRangeX", "double", "",0
Property: "MaxDampRangeY", "double", "",0
Property: "MaxDampRangeZ", "double", "",0
Property: "MinDampStrengthX", "double", "",0
Property: "MinDampStrengthY", "double", "",0
Property: "MinDampStrengthZ", "double", "",0
Property: "MaxDampStrengthX", "double", "",0
Property: "MaxDampStrengthY", "double", "",0
Property: "MaxDampStrengthZ", "double", "",0
Property: "PreferedAngleX", "double", "",0
Property: "PreferedAngleY", "double", "",0
Property: "PreferedAngleZ", "double", "",0
Property: "InheritType", "enum", "",0
Property: "ScalingActive", "bool", "",0
Property: "ScalingMin", "Vector3D", "",1,1,1
Property: "ScalingMax", "Vector3D", "",1,1,1
Property: "ScalingMinX", "bool", "",0
Property: "ScalingMinY", "bool", "",0
Property: "ScalingMinZ", "bool", "",0
Property: "ScalingMaxX", "bool", "",0
Property: "ScalingMaxY", "bool", "",0
Property: "ScalingMaxZ", "bool", "",0
Property: "GeometricTranslation", "Vector3D", "",0,0,0
Property: "GeometricRotation", "Vector3D", "",0,0,0
Property: "GeometricScaling", "Vector3D", "",1,1,1
Property: "LookAtProperty", "object", ""
Property: "UpVectorProperty", "object", ""
Property: "Show", "bool", "",1
Property: "NegativePercentShapeSupport", "bool", "",1
Property: "DefaultAttributeIndex", "int", "",0
Property: "Color", "Color", "A",0.8,0.8,0.8
Property: "Size", "double", "",100
Property: "Look", "enum", "",1
}
MultiLayer: 0
MultiTake: 1
Shading: Y
Culling: "CullingOff"
Vertices: -0.134649,0.020007,0.087815,-0.108333,0.055164,0.078722,-0.123975,0.069758,0.016134,-0.154363,0.038381,0.008878,
-0.080789,0.006603,0.145767,-0.065596,0.044529,0.124709,-0.007214,0.001696,0.166981,-0.007214,0.040636,0.141540,
0.084698,0.005895,0.129657,0.071180,0.039634,0.110922,0.052798,0.047560,0.076665,-0.007214,0.050922,0.097073,
-0.007214,-0.098701,0.109311,-0.065596,-0.094808,0.092480,-0.044932,-0.085899,0.053969,-0.007214,-0.088417,0.064845,
-0.072542,0.060308,0.056488,-0.082650,0.069758,0.016134,-0.108333,-0.084172,0.046494,-0.072542,-0.079028,0.024260,
-0.044932,0.053436,0.086200,0.071180,-0.084320,0.082252,0.052798,-0.076396,0.047992,0.113214,-0.059199,0.008374,
0.129340,-0.066150,0.038429,0.085572,-0.060806,0.115944,-0.007214,-0.073349,0.151850,-0.081771,-0.068377,0.130354,
-0.136351,-0.054794,0.071627,-0.156328,-0.036174,-0.008368,-0.123975,-0.069579,-0.016096,0.141964,-0.045523,0.067986,
0.141197,0.012992,0.080017,0.129340,0.042590,0.063581,0.113214,0.049541,0.033526,1.884650,0.012992,0.080017,
1.884650,0.042591,0.063581,0.141964,-0.011045,-0.081073,1.884650,-0.011044,-0.081073,1.884650,-0.042556,-0.063575,
0.129340,-0.042557,-0.063575,1.884650,-0.059198,0.008374,1.884650,-0.066149,0.038429,1.884650,0.049542,0.033526,
1.884650,-0.045523,0.067986,1.912851,0.042260,0.065015,1.923564,0.048280,0.038986,1.904466,-0.045125,0.066268,
1.904976,0.013346,0.078489,1.923564,-0.060462,0.013834,1.912851,-0.066482,0.039863,1.922240,-0.047996,0.078680,
1.923123,0.010355,0.091425,1.936765,0.037397,0.086039,1.955318,0.040874,0.071011,1.955318,-0.067869,0.045861,
1.936765,-0.071345,0.060887,1.933209,-0.053367,0.101898,1.934229,0.004819,0.115355,1.949982,0.029305,0.121020,
1.971404,0.029305,0.121020,1.971404,-0.079435,0.095867,1.949982,-0.079435,0.095867,1.971404,-0.166055,0.470355,
1.949982,-0.166055,0.470355,1.933209,-0.139986,0.476383,1.934229,-0.081800,0.489843,1.949982,-0.057314,0.495507,
1.971404,-0.057314,0.495507,-0.108333,-0.055206,-0.078735,-0.072542,-0.060348,-0.056499,-0.082650,-0.069579,-0.016096,
0.085572,-0.003717,-0.130871,-0.007214,0.000780,-0.168637,-0.007214,0.074848,-0.149279,0.084698,0.062230,-0.113903,
-0.134649,0.056536,-0.070112,-0.108333,0.084130,-0.046504,-0.080789,0.069941,-0.128065,-0.065596,0.094766,-0.092492,
-0.007214,0.098662,-0.109323,0.071180,0.084316,-0.082255,-0.007214,0.088375,-0.064856,0.052798,0.076393,-0.047995,
-0.007214,-0.040677,-0.141553,-0.007214,-0.050961,-0.097084,-0.044932,-0.053478,-0.086211,-0.065596,-0.044570,-0.124720,
-0.072542,0.078988,-0.024271,-0.044932,0.085861,-0.053980,0.071180,-0.039638,-0.110926,0.113214,-0.049508,-0.033520,
0.052798,-0.047561,-0.076666,-0.081771,-0.004191,-0.147143,-0.136351,-0.017775,-0.088413,0.141197,0.046810,-0.066186,
0.113214,0.059232,-0.008368,0.129340,0.066183,-0.038423,1.884650,0.066184,-0.038423,1.884650,0.046811,-0.066186,
1.884650,-0.049507,-0.033520,1.884650,0.059233,-0.008368,1.912851,0.066517,-0.039857,1.923564,0.060496,-0.013829,
1.904466,-0.011442,-0.079355,1.904976,0.046457,-0.064660,1.912851,-0.042225,-0.065010,1.923564,-0.048246,-0.038981,
1.922240,-0.008571,-0.091767,1.923123,0.049448,-0.077594,1.936765,0.071380,-0.060881,1.955318,0.067903,-0.045853,
1.936765,-0.037362,-0.086033,1.955318,-0.040839,-0.071005,1.933209,-0.003202,-0.114985,1.934229,0.054984,-0.101526,
1.949982,0.079470,-0.095862,1.971404,0.079470,-0.095862,1.949982,-0.029270,-0.121014,1.971404,-0.029270,-0.121014,
1.933209,0.083417,-0.489471,1.949982,0.057349,-0.495502,1.971404,0.057349,-0.495502,1.934229,0.141603,-0.476012,
1.971404,0.166090,-0.470350,1.949982,0.166090,-0.470350
PolygonVertexIndex: 0,1,2,-4,4,5,1,-1,6,7,5,-5,8,9,7,-7,7,9,10,-12,12,13,14,-16,2,1,16,-18,13,18,19,-15,
5,7,11,-21,21,22,23,-25,21,12,15,-23,1,5,20,-17,21,25,26,-13,12,26,27,-14,13,27,28,-19,18,28,29,-31,
28,0,3,-30,27,4,0,-29,26,6,4,-28,8,25,31,-33,10,9,33,-35,25,21,24,-32,9,8,32,-34,32,35,36,-34,
37,38,39,-41,23,41,42,-25,33,36,43,-35,31,44,35,-33,36,45,46,-44,44,47,48,-36,36,35,48,-46,42,41,49,-51,
47,51,52,-49,45,53,54,-47,44,42,50,-48,45,48,52,-54,50,49,55,-57,51,57,58,-53,53,59,60,-55,47,50,56,-52,
53,52,58,-60,56,55,61,-63,61,63,64,-63,62,64,65,-58,51,56,62,-58,57,65,66,-59,59,67,68,-61,24,42,44,-32,
69,70,71,-31,72,73,74,-76,76,3,2,-78,78,76,77,-80,74,78,79,-81,75,74,80,-82,80,82,83,-82,84,85,86,-88,
2,17,88,-78,87,86,70,-70,79,89,82,-81,90,40,91,-93,90,92,85,-85,77,88,89,-80,90,84,73,-73,84,87,93,-74,
87,69,94,-94,69,30,29,-95,94,29,3,-77,93,94,76,-79,73,93,78,-75,95,37,72,-76,83,96,97,-82,72,37,40,-91,
81,97,95,-76,97,98,99,-96,40,39,100,-92,96,101,98,-98,99,38,37,-96,102,98,101,-104,104,38,99,-106,98,102,105,-100,
39,106,107,-101,108,104,105,-110,110,102,103,-112,38,104,106,-40,102,110,109,-106,106,112,113,-108,114,108,109,-116,116,110,111,-118,
104,108,112,-107,110,116,115,-110,112,118,119,-114,108,114,118,-113,114,120,121,-119,118,121,122,-120,123,120,114,-116,124,125,116,-118,
58,66,67,-60,116,125,123,-116,25,8,6,-27,18,30,71,-20,10,22,15,-12,11,15,14,-21,20,14,19,-17,16,19,71,-18,
22,10,34,-24,34,43,41,-24,41,43,46,-50,49,46,54,-56,55,54,60,-62,60,68,63,-62,82,85,92,-84,89,86,85,-83,
88,70,86,-90,17,71,70,-89,92,91,96,-84,100,101,96,-92,100,107,103,-102,107,113,111,-104,113,119,117,-112,119,122,124,-118,
120,123,125,-122,122,121,125,-125,66,65,64,-68,67,64,63,-69
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: -0.820352,0.259754,0.509461,-0.391358,0.828742,0.400032,-0.443772,0.873088,0.201951,-0.931487,0.354418,0.081981,
-0.490683,0.190518,0.850255,-0.234907,0.796173,0.557609,-0.391358,0.828742,0.400032,-0.820352,0.259754,0.509461,
0.050988,0.168186,0.984436,0.055674,0.786953,0.614496,-0.234907,0.796173,0.557609,-0.490683,0.190518,0.850255,
0.501684,0.195848,0.842589,0.285063,0.806376,0.518166,0.055674,0.786953,0.614496,0.050988,0.168186,0.984436,
0.055674,0.786953,0.614496,0.285063,0.806376,0.518166,0.099335,0.976985,0.188769,0.052708,0.975550,0.213363,
0.055689,-0.976861,0.206499,-0.234890,-0.960166,0.151355,0.000004,-0.974276,-0.225356,0.052957,-0.970127,-0.236748,
-0.443772,0.873088,0.201951,-0.391358,0.828742,0.400032,0.000288,0.974040,0.226375,0.000578,0.974276,0.225358,
-0.234890,-0.960166,0.151355,-0.391664,-0.920089,-0.006005,-0.000289,-0.974042,-0.226368,0.000004,-0.974276,-0.225356,
-0.234907,0.796173,0.557609,0.055674,0.786953,0.614496,0.052708,0.975550,0.213363,-0.000018,0.974275,0.225364,
0.285290,-0.951951,0.111347,0.099811,-0.960554,-0.259566,0.053722,-0.966163,-0.252278,0.154749,-0.986888,0.045867,
0.285290,-0.951951,0.111347,0.055689,-0.976861,0.206499,0.052957,-0.970127,-0.236748,0.099811,-0.960554,-0.259566,
-0.391358,0.828742,0.400032,-0.234907,0.796173,0.557609,-0.000018,0.974275,0.225364,0.000288,0.974040,0.226375,
0.285290,-0.951951,0.111347,0.506974,-0.523228,0.684989,0.051215,-0.560090,0.826847,0.055689,-0.976861,0.206499,
0.055689,-0.976861,0.206499,0.051215,-0.560090,0.826847,-0.495596,-0.521579,0.694507,-0.234890,-0.960166,0.151355,
-0.234890,-0.960166,0.151355,-0.495596,-0.521579,0.694507,-0.828483,-0.434534,0.353264,-0.391664,-0.920089,-0.006005,
-0.391664,-0.920089,-0.006005,-0.828483,-0.434534,0.353264,-0.940735,-0.330420,-0.076428,-0.444757,-0.872612,-0.201842,
-0.828483,-0.434534,0.353264,-0.820352,0.259754,0.509461,-0.931487,0.354418,0.081981,-0.940735,-0.330420,-0.076428,
-0.495596,-0.521579,0.694507,-0.490683,0.190518,0.850255,-0.820352,0.259754,0.509461,-0.828483,-0.434534,0.353264,
0.051215,-0.560090,0.826847,0.050988,0.168186,0.984436,-0.490683,0.190518,0.850255,-0.495596,-0.521579,0.694507,
0.501684,0.195848,0.842589,0.506974,-0.523228,0.684989,0.326577,-0.583748,0.743362,0.323122,0.224611,0.919316,
0.099335,0.976985,0.188769,0.285063,0.806376,0.518166,0.154519,0.866505,0.474650,0.053464,0.978801,0.197713,
0.506974,-0.523228,0.684989,0.285290,-0.951951,0.111347,0.154749,-0.986888,0.045867,0.326577,-0.583748,0.743362,
0.285063,0.806376,0.518166,0.501684,0.195848,0.842589,0.323122,0.224611,0.919316,0.154519,0.866505,0.474650,
0.323122,0.224611,0.919316,0.022592,0.139761,0.989927,0.000396,0.797404,0.603445,0.154519,0.866505,0.474650,
0.326583,-0.198018,-0.924193,0.023566,-0.115890,-0.992982,0.001228,-0.797350,-0.603516,0.154746,-0.866520,-0.474549,
0.053722,-0.966163,-0.252278,-0.000012,-0.974281,-0.225338,0.001230,-0.981375,0.192099,0.154749,-0.986888,0.045867,
0.154519,0.866505,0.474650,0.000396,0.797404,0.603445,-0.000015,0.974281,0.225336,0.053464,0.978801,0.197713,
0.326577,-0.583748,0.743362,0.023585,-0.540165,0.841228,0.022592,0.139761,0.989927,0.323122,0.224611,0.919316,
0.000396,0.797404,0.603445,-0.117151,0.844084,0.523256,-0.000000,0.974355,0.225018,-0.000015,0.974281,0.225336,
0.023585,-0.540165,0.841228,-0.276960,-0.552327,0.786275,-0.277250,0.173406,0.945020,0.022592,0.139761,0.989927,
0.000396,0.797404,0.603445,0.022592,0.139761,0.989927,-0.277250,0.173406,0.945020,-0.117151,0.844084,0.523256,
0.001230,-0.981375,0.192099,-0.000012,-0.974281,-0.225338,-0.000005,-0.974277,-0.225352,-0.115949,-0.988219,0.099894,
-0.276960,-0.552327,0.786275,-0.752708,-0.432323,0.496516,-0.748871,0.189154,0.635149,-0.277250,0.173406,0.945020,
-0.117151,0.844084,0.523256,-0.321945,0.839914,0.436916,-0.000004,0.974274,0.225365,-0.000000,0.974355,0.225018,
0.023585,-0.540165,0.841228,0.001230,-0.981375,0.192099,-0.115949,-0.988219,0.099894,-0.276960,-0.552327,0.786275,
-0.117151,0.844084,0.523256,-0.277250,0.173406,0.945020,-0.748871,0.189154,0.635149,-0.321945,0.839914,0.436916,
-0.115949,-0.988219,0.099894,-0.000005,-0.974277,-0.225352,0.000024,-0.974277,-0.225355,-0.321214,-0.946689,0.024522,
-0.752708,-0.432323,0.496516,-0.938025,-0.320806,0.131120,-0.933364,0.247142,0.260291,-0.748871,0.189154,0.635149,
-0.321945,0.839914,0.436916,-0.429929,0.858814,0.278567,-0.000001,0.974275,0.225363,-0.000004,0.974274,0.225365,
-0.276960,-0.552327,0.786275,-0.115949,-0.988219,0.099894,-0.321214,-0.946689,0.024522,-0.752708,-0.432323,0.496516,
-0.321945,0.839914,0.436916,-0.748871,0.189154,0.635149,-0.933364,0.247142,0.260291,-0.429929,0.858814,0.278567,
-0.321214,-0.946689,0.024522,0.000024,-0.974277,-0.225355,-0.000048,-0.974385,-0.224886,-0.429743,-0.894056,-0.126429,
-0.000048,-0.974385,-0.224886,0.000000,-0.974278,-0.225351,-0.484176,-0.852464,-0.197175,-0.429743,-0.894056,-0.126429,
-0.429743,-0.894056,-0.126429,-0.484176,-0.852464,-0.197175,-0.963388,-0.261215,-0.060419,-0.938025,-0.320806,0.131120,
-0.752708,-0.432323,0.496516,-0.321214,-0.946689,0.024522,-0.429743,-0.894056,-0.126429,-0.938025,-0.320806,0.131120,
-0.938025,-0.320806,0.131120,-0.963388,-0.261215,-0.060419,-0.958677,0.277180,0.064111,-0.933364,0.247142,0.260291,
-0.429929,0.858814,0.278567,-0.484206,0.852448,0.197171,-0.000000,0.974278,0.225351,-0.000001,0.974275,0.225363,
0.154749,-0.986888,0.045867,0.001230,-0.981375,0.192099,0.023585,-0.540165,0.841228,0.326577,-0.583748,0.743362,
-0.391679,-0.829266,-0.398629,-0.000307,-0.974513,-0.224333,-0.000574,-0.974277,-0.225355,-0.444757,-0.872612,-0.201842,
0.506977,-0.169289,-0.845172,0.051215,-0.140125,-0.988808,0.050988,0.583380,-0.810598,0.501685,0.545944,-0.671013,
-0.820353,0.457082,-0.343652,-0.931487,0.354418,0.081981,-0.443772,0.873088,0.201951,-0.391354,0.920229,0.004510,
-0.490683,0.544526,-0.680237,-0.820353,0.457082,-0.343652,-0.391354,0.920229,0.004510,-0.234907,0.960159,-0.151368,
0.050988,0.583380,-0.810598,-0.490683,0.544526,-0.680237,-0.234907,0.960159,-0.151368,0.055672,0.976858,-0.206515,
0.501685,0.545944,-0.671013,0.050988,0.583380,-0.810598,0.055672,0.976858,-0.206515,0.285063,0.952008,-0.111444,
0.055672,0.976858,-0.206515,0.052705,0.970152,0.236701,0.099334,0.960644,0.259416,0.285063,0.952008,-0.111444,
0.055693,-0.786968,-0.614475,0.052966,-0.975559,-0.213257,0.000001,-0.974281,-0.225338,-0.234897,-0.796185,-0.557596,
-0.443772,0.873088,0.201951,0.000578,0.974276,0.225358,0.000295,0.974514,0.224328,-0.391354,0.920229,0.004510,
-0.234897,-0.796185,-0.557596,0.000001,-0.974281,-0.225338,-0.000307,-0.974513,-0.224333,-0.391679,-0.829266,-0.398629,
-0.234907,0.960159,-0.151368,-0.000016,0.974281,0.225336,0.052705,0.970152,0.236701,0.055672,0.976858,-0.206515,
0.285288,-0.806380,-0.518037,0.154746,-0.866520,-0.474549,0.053705,-0.978819,-0.197557,0.099787,-0.976983,-0.188541,
0.285288,-0.806380,-0.518037,0.099787,-0.976983,-0.188541,0.052966,-0.975559,-0.213257,0.055693,-0.786968,-0.614475,
-0.391354,0.920229,0.004510,0.000295,0.974514,0.224328,-0.000016,0.974281,0.225336,-0.234907,0.960159,-0.151368,
0.285288,-0.806380,-0.518037,0.055693,-0.786968,-0.614475,0.051215,-0.140125,-0.988808,0.506977,-0.169289,-0.845172,
0.055693,-0.786968,-0.614475,-0.234897,-0.796185,-0.557596,-0.495599,-0.163626,-0.852999,0.051215,-0.140125,-0.988808,
-0.234897,-0.796185,-0.557596,-0.391679,-0.829266,-0.398629,-0.828489,-0.235273,-0.508186,-0.495599,-0.163626,-0.852999,
-0.391679,-0.829266,-0.398629,-0.444757,-0.872612,-0.201842,-0.940735,-0.330420,-0.076428,-0.828489,-0.235273,-0.508186,
-0.828489,-0.235273,-0.508186,-0.940735,-0.330420,-0.076428,-0.931487,0.354418,0.081981,-0.820353,0.457082,-0.343652,
-0.495599,-0.163626,-0.852999,-0.828489,-0.235273,-0.508186,-0.820353,0.457082,-0.343652,-0.490683,0.544526,-0.680237,
0.051215,-0.140125,-0.988808,-0.495599,-0.163626,-0.852999,-0.490683,0.544526,-0.680237,0.050988,0.583380,-0.810598,
0.323122,0.605501,-0.727297,0.326583,-0.198018,-0.924193,0.506977,-0.169289,-0.845172,0.501685,0.545944,-0.671013,
0.099334,0.960644,0.259416,0.053464,0.966211,0.252147,0.154515,0.986921,-0.045953,0.285063,0.952008,-0.111444,
0.506977,-0.169289,-0.845172,0.326583,-0.198018,-0.924193,0.154746,-0.866520,-0.474549,0.285288,-0.806380,-0.518037,
0.285063,0.952008,-0.111444,0.154515,0.986921,-0.045953,0.323122,0.605501,-0.727297,0.501685,0.545944,-0.671013,
0.154515,0.986921,-0.045953,0.000386,0.981395,-0.192001,0.022563,0.560282,-0.827994,0.323122,0.605501,-0.727297,
0.154746,-0.866520,-0.474549,0.001228,-0.797350,-0.603516,-0.000015,-0.974283,-0.225330,0.053705,-0.978819,-0.197557,
0.053464,0.966211,0.252147,-0.000016,0.974280,0.225340,0.000386,0.981395,-0.192001,0.154515,0.986921,-0.045953,
0.022563,0.560282,-0.827994,0.023566,-0.115890,-0.992982,0.326583,-0.198018,-0.924193,0.323122,0.605501,-0.727297,
-0.117147,0.988121,-0.099467,0.000386,0.981395,-0.192001,-0.000016,0.974280,0.225340,-0.000011,0.974277,0.225354,
-0.276965,-0.150961,-0.948947,0.023566,-0.115890,-0.992982,0.022563,0.560282,-0.827994,-0.277260,0.570756,-0.772894,
0.000386,0.981395,-0.192001,-0.117147,0.988121,-0.099467,-0.277260,0.570756,-0.772894,0.022563,0.560282,-0.827994,
0.001228,-0.797350,-0.603516,-0.115958,-0.843982,-0.523687,-0.000022,-0.974279,-0.225347,-0.000015,-0.974283,-0.225330,
-0.752703,-0.170390,-0.635928,-0.276965,-0.150961,-0.948947,-0.277260,0.570756,-0.772894,-0.748861,0.448845,-0.487591,
-0.321930,0.946467,-0.023719,-0.117147,0.988121,-0.099467,-0.000011,0.974277,0.225354,0.000014,0.974278,0.225349,
0.023566,-0.115890,-0.992982,-0.276965,-0.150961,-0.948947,-0.115958,-0.843982,-0.523687,0.001228,-0.797350,-0.603516,
-0.117147,0.988121,-0.099467,-0.321930,0.946467,-0.023719,-0.748861,0.448845,-0.487591,-0.277260,0.570756,-0.772894,
-0.115958,-0.843982,-0.523687,-0.321227,-0.839759,-0.437741,-0.000007,-0.974273,-0.225369,-0.000022,-0.974279,-0.225347,
-0.938025,-0.230652,-0.258668,-0.752703,-0.170390,-0.635928,-0.748861,0.448845,-0.487591,-0.933367,0.336335,-0.125322,
-0.429924,0.893910,0.126844,-0.321930,0.946467,-0.023719,0.000014,0.974278,0.225349,-0.000010,0.974354,0.225019,
-0.276965,-0.150961,-0.948947,-0.752703,-0.170390,-0.635928,-0.321227,-0.839759,-0.437741,-0.115958,-0.843982,-0.523687,
-0.321930,0.946467,-0.023719,-0.429924,0.893910,0.126844,-0.933367,0.336335,-0.125322,-0.748861,0.448845,-0.487591,
-0.321227,-0.839759,-0.437741,-0.429752,-0.858761,-0.279003,-0.000001,-0.974275,-0.225363,-0.000007,-0.974273,-0.225369,
-0.752703,-0.170390,-0.635928,-0.938025,-0.230652,-0.258668,-0.429752,-0.858761,-0.279003,-0.321227,-0.839759,-0.437741,
-0.938025,-0.230652,-0.258668,-0.963388,-0.261216,-0.060420,-0.484177,-0.852464,-0.197176,-0.429752,-0.858761,-0.279003,
-0.429752,-0.858761,-0.279003,-0.484177,-0.852464,-0.197176,0.000000,-0.974278,-0.225351,-0.000001,-0.974275,-0.225363,
-0.958677,0.277179,0.064112,-0.963388,-0.261216,-0.060420,-0.938025,-0.230652,-0.258668,-0.933367,0.336335,-0.125322,
-0.000000,0.974278,0.225351,-0.484203,0.852450,0.197172,-0.429924,0.893910,0.126844,-0.000010,0.974354,0.225019,
-0.933364,0.247142,0.260291,-0.958677,0.277180,0.064111,-0.484206,0.852448,0.197171,-0.429929,0.858814,0.278567,
-0.429924,0.893910,0.126844,-0.484203,0.852450,0.197172,-0.958677,0.277179,0.064112,-0.933367,0.336335,-0.125322,
0.506974,-0.523228,0.684989,0.501684,0.195848,0.842589,0.050988,0.168186,0.984436,0.051215,-0.560090,0.826847,
-0.391664,-0.920089,-0.006005,-0.444757,-0.872612,-0.201842,-0.000574,-0.974277,-0.225355,-0.000289,-0.974042,-0.226368,
-0.434535,0.202968,-0.877487,-0.434489,0.202973,-0.877509,0.002318,0.225354,-0.974274,0.002257,0.225354,-0.974274,
0.002257,0.225354,-0.974274,0.002318,0.225354,-0.974274,0.532330,0.190773,-0.824761,0.532329,0.190773,-0.824761,
0.532329,0.190773,-0.824761,0.532330,0.190773,-0.824761,0.883406,0.105605,-0.456554,0.883605,0.105521,-0.456188,
0.883605,0.105521,-0.456188,0.883406,0.105605,-0.456554,1.000000,-0.000000,0.000003,1.000000,0.000000,0.000001,
-0.434489,0.202973,-0.877509,-0.434535,0.202968,-0.877487,-0.311362,0.214156,-0.925846,-0.311405,0.214153,-0.925832,
-0.311362,0.214156,-0.925846,0.071455,0.224779,-0.971786,0.071455,0.224779,-0.971786,-0.311405,0.214153,-0.925832,
0.071455,0.224779,-0.971786,0.071455,0.224779,-0.971786,0.455438,0.200620,-0.867368,0.455434,0.200621,-0.867370,
0.455434,0.200621,-0.867370,0.455438,0.200620,-0.867368,0.859804,0.115066,-0.497491,0.859806,0.115065,-0.497487,
0.859806,0.115065,-0.497487,0.859804,0.115066,-0.497491,0.988492,0.034088,-0.147380,0.988492,0.034088,-0.147380,
0.988492,0.034088,-0.147380,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.988492,0.034088,-0.147380,
0.002253,-0.225351,0.974275,0.002320,-0.225351,0.974275,-0.434488,-0.202969,0.877510,-0.434535,-0.202963,0.877488,
0.532329,-0.190770,0.824762,0.532328,-0.190770,0.824763,0.002320,-0.225351,0.974275,0.002253,-0.225351,0.974275,
0.883603,-0.105519,0.456193,0.883403,-0.105604,0.456560,0.532328,-0.190770,0.824763,0.532329,-0.190770,0.824762,
1.000000,0.000000,0.000001,1.000000,-0.000000,0.000003,0.883403,-0.105604,0.456560,0.883603,-0.105519,0.456193,
-0.434488,-0.202969,0.877510,-0.311399,-0.214150,0.925835,-0.311354,-0.214153,0.925850,-0.434535,-0.202963,0.877488,
0.071458,-0.224779,0.971786,0.071458,-0.224779,0.971786,-0.311354,-0.214153,0.925850,-0.311399,-0.214150,0.925835,
0.071458,-0.224779,0.971786,0.455433,-0.200624,0.867370,0.455430,-0.200624,0.867372,0.071458,-0.224779,0.971786,
0.455433,-0.200624,0.867370,0.859802,-0.115070,0.497494,0.859802,-0.115069,0.497493,0.455430,-0.200624,0.867372,
0.859802,-0.115070,0.497494,0.988493,-0.034089,0.147377,0.988493,-0.034089,0.147377,0.859802,-0.115069,0.497493,
0.988493,-0.034089,0.147377,1.000000,-0.000001,0.000000,1.000000,-0.000001,0.000000,0.988493,-0.034089,0.147377,
0.000036,0.225049,-0.974347,0.000036,0.225049,-0.974347,-0.000018,0.225356,-0.974276,-0.000018,0.225356,-0.974276,
0.000002,0.225355,-0.974277,-0.000018,0.225356,-0.974276,-0.000018,0.225356,-0.974276,0.000002,0.225355,-0.974277,
0.000082,-0.225054,0.974346,0.000082,-0.225054,0.974346,-0.000014,-0.225354,0.974277,-0.000014,-0.225354,0.974277,
-0.000014,-0.225354,0.974277,-0.000014,-0.225354,0.974277,-0.000002,-0.225353,0.974277,-0.000002,-0.225353,0.974277
}
LayerElementUV: 0 {
Version: 101
Name: "UVMap"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: 0.611800,0.211600,0.629999,0.222800,0.025200,0.014899,0.869700,0.015900,0.975499,0.785700,0.970000,0.989600,
0.973800,0.788100,0.021900,0.755400,0.975499,0.754000,0.629999,0.211600,0.965300,0.794499,0.968800,0.996100,
0.046999,0.879199,0.046999,0.870800,0.012400,0.716300,0.626999,0.232999,0.623499,0.260100,0.618099,0.260100,
0.000500,0.002799,0.729219,0.136363,0.729219,0.138163,0.973299,0.713400,0.997900,0.713400,0.618099,0.232999,
0.614799,0.232999,0.618099,0.238100,0.614799,0.243100,0.614799,0.238100,0.618099,0.243100,0.727419,0.130062,
0.623499,0.238100,0.618099,0.217999,0.614799,0.217999,0.364899,0.031700,0.968800,0.991599,0.971599,0.989600,
0.373199,0.035100,0.000500,0.014899,0.611800,0.260100,0.997900,0.718200,0.973299,0.718200,0.973299,0.715699,
0.997900,0.715699,0.629999,0.260100,0.997900,0.722699,0.618099,0.227799,0.614799,0.227799,0.626999,0.211600,
0.973800,0.785700,0.373199,0.039099,0.012400,0.749800,0.975499,0.788100,0.012400,0.745100,0.012400,0.742200,
0.012400,0.739099,0.012400,0.735899,0.012400,0.755400,0.973699,0.794499,0.012400,0.726599,0.012400,0.721899,
0.623499,0.247999,0.618099,0.222800,0.614799,0.222800,0.973800,0.754000,0.965300,0.797999,0.970000,0.998000,
0.984000,0.785700,0.985800,0.782800,0.071699,0.879199,0.071699,0.870800,0.000500,0.009999,0.727419,0.138163,
0.731719,0.127862,0.727419,0.134262,0.984000,0.754000,0.981800,0.790000,0.981800,0.788100,0.012400,0.729600,
0.012400,0.732699,0.025200,0.009999,0.868399,0.022199,0.868399,0.013899,0.866800,0.013899,0.866800,0.022199,
0.021900,0.721899,0.729219,0.130062,0.025200,0.002799,0.977599,0.782800,0.763419,0.130062,0.629999,0.227799,
0.731719,0.126062,0.734519,0.130062,0.734519,0.126062,0.763419,0.126062,0.626999,0.227799,0.623499,0.211600,
0.973299,0.722699,0.727419,0.136363,0.965300,0.791599,0.973699,0.791599,0.614799,0.260100,0.611800,0.227799,
0.626999,0.205899,0.623499,0.227799,0.975499,0.790000,0.973800,0.790000,0.977599,0.788100,0.984000,0.790000,
0.981800,0.785700,0.975499,0.782800,0.984000,0.782800,0.021900,0.732699,0.025200,0.012600,0.984000,0.788100,
0.611800,0.243100,0.626999,0.254400,0.626999,0.238100,0.729219,0.134262,0.734519,0.138163,0.734519,0.127862,
0.727419,0.126062,0.731719,0.136363,0.734519,0.136363,0.763419,0.136363,0.977599,0.754000,0.973699,0.830900,
0.021900,0.729600,0.373299,0.068000,0.364899,0.028699,0.981800,0.754000,0.973699,0.797999,0.869700,0.020400,
0.611800,0.232999,0.623499,0.232999,0.763419,0.134262,0.997900,0.021800,0.965300,0.801999,0.997900,0.030200,
0.973299,0.030200,0.973299,0.021800,0.373199,0.028699,0.021900,0.739099,0.021900,0.735899,0.021900,0.726599,
0.021900,0.716300,0.731719,0.130062,0.623499,0.243100,0.626999,0.217999,0.977599,0.785700,0.000500,0.012600,
0.618099,0.205899,0.981800,0.782800,0.611800,0.254400,0.629999,0.254400,0.623499,0.254400,0.618099,0.211600,
0.614799,0.211600,0.629999,0.205899,0.623499,0.222800,0.623499,0.205899,0.611800,0.205899,0.000500,0.000500,
0.973699,0.801999,0.971599,0.998000,0.977599,0.790000,0.985800,0.788100,0.626999,0.222800,0.373199,0.031700,
0.985800,0.785700,0.364899,0.035100,0.965300,0.830900,0.727419,0.127862,0.731719,0.138163,0.734519,0.134262,
0.731719,0.134262,0.623499,0.217999,0.629999,0.232999,0.729219,0.127862,0.611800,0.247999,0.626999,0.247999,
0.626999,0.243100,0.629999,0.243100,0.629999,0.247999,0.611800,0.238100,0.629999,0.238100,0.364899,0.039099,
0.611800,0.222800,0.021900,0.749800,0.021900,0.745100,0.021900,0.742200,0.618099,0.247999,0.614799,0.247999,
0.618099,0.254400,0.614799,0.254400,0.729219,0.126062,0.763419,0.127862,0.763419,0.138163,0.997900,0.727699,
0.973299,0.727699,0.973299,0.725399,0.000500,0.005499,0.997900,0.725399,0.611800,0.217999,0.629999,0.217999,
0.973800,0.782800,0.364899,0.068000,0.025200,0.000500,0.614799,0.205899,0.985800,0.754000,0.025200,0.005499,
0.985800,0.790000,0.626999,0.260100
UVIndex: 25,27,24,23,28,26,27,25,190,191,26,28,192,193,191,190,191,193,152,178,179,180,181,182,24,27,183,132,180,116,184,181,26,191,178,114,115,153,43,211,115,179,182,153,27,26,114,183,115,154,60,179,179,60,146,180,180,146,30,116,116,30,133,15,
30,25,23,133,146,28,25,30,60,190,28,146,192,154,16,17,152,193,100,38,154,115,211,16,193,192,17,100,39,40,41,42,209,200,18,86,197,198,199,201,42,41,21,22,44,96,40,39,97,19,20,71,29,85,117,73,97,73,117,19,171,120,194,177,
85,145,174,117,19,121,172,20,29,171,177,85,19,117,174,121,177,194,90,72,145,91,173,174,121,122,118,172,85,177,72,145,121,174,173,122,72,90,92,119,92,93,195,119,119,195,88,91,145,72,119,91,91,88,134,173,122,123,196,118,201,199,96,44,
94,89,176,15,95,175,31,155,45,23,24,46,61,45,46,62,31,61,62,32,155,31,32,156,32,202,0,156,147,203,1,166,24,132,101,46,166,1,89,94,62,186,202,32,47,102,157,9,47,9,203,147,46,101,186,62,47,147,175,95,147,166,158,175,
166,94,103,158,94,15,133,103,103,133,23,45,158,103,45,61,175,158,61,31,150,159,95,155,0,160,207,156,95,159,102,47,156,207,150,155,112,149,70,79,86,18,161,206,2,37,149,112,70,200,209,79,51,104,105,6,76,75,164,106,104,51,106,164,
107,113,165,210,108,76,106,148,4,51,6,48,75,76,113,107,51,4,148,106,113,66,168,165,151,108,148,87,109,4,48,204,76,108,66,113,4,109,87,148,66,110,67,168,108,151,110,66,151,129,74,110,110,74,208,67,124,129,151,87,63,8,109,204,
173,134,123,122,109,8,124,87,154,192,190,60,116,15,176,184,187,50,52,188,188,52,53,189,189,53,54,141,141,54,55,142,50,187,7,56,68,12,13,69,98,99,57,10,10,57,130,64,64,130,162,136,162,125,170,136,143,58,59,84,126,77,58,143,
111,78,77,126,142,55,78,111,59,14,144,84,135,137,138,139,140,167,33,128,167,36,169,33,36,49,185,169,49,127,205,185,3,131,80,81,82,81,80,83,11,34,5,65,65,5,35,163
}
LayerElementTexture: 0 {
Version: 101
Name: ""
MappingInformationType: "NoMappingInformation"
ReferenceInformationType: "IndexToDirect"
BlendMode: "Translucent"
TextureAlpha: 1
TextureId:
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: 0
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementTexture"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
}
}
Model: "Model::m61_handle", "Mesh" {
Version: 232
Properties60: {
Property: "QuaternionInterpolate", "bool", "",0
Property: "Visibility", "Visibility", "A+",1
Property: "Lcl Translation", "Lcl Translation", "A+",1.095244765281677,5.925450325012207,-1.999263167381287
Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
Property: "RotationOffset", "Vector3D", "",0,0,0
Property: "RotationPivot", "Vector3D", "",0,0,0
Property: "ScalingOffset", "Vector3D", "",0,0,0
Property: "ScalingPivot", "Vector3D", "",0,0,0
Property: "TranslationActive", "bool", "",0
Property: "TranslationMin", "Vector3D", "",0,0,0
Property: "TranslationMax", "Vector3D", "",0,0,0
Property: "TranslationMinX", "bool", "",0
Property: "TranslationMinY", "bool", "",0
Property: "TranslationMinZ", "bool", "",0
Property: "TranslationMaxX", "bool", "",0
Property: "TranslationMaxY", "bool", "",0
Property: "TranslationMaxZ", "bool", "",0
Property: "RotationOrder", "enum", "",0
Property: "RotationSpaceForLimitOnly", "bool", "",0
Property: "AxisLen", "double", "",10
Property: "PreRotation", "Vector3D", "",0,0,0
Property: "PostRotation", "Vector3D", "",0,0,0
Property: "RotationActive", "bool", "",0
Property: "RotationMin", "Vector3D", "",0,0,0
Property: "RotationMax", "Vector3D", "",0,0,0
Property: "RotationMinX", "bool", "",0
Property: "RotationMinY", "bool", "",0
Property: "RotationMinZ", "bool", "",0
Property: "RotationMaxX", "bool", "",0
Property: "RotationMaxY", "bool", "",0
Property: "RotationMaxZ", "bool", "",0
Property: "RotationStiffnessX", "double", "",0
Property: "RotationStiffnessY", "double", "",0
Property: "RotationStiffnessZ", "double", "",0
Property: "MinDampRangeX", "double", "",0
Property: "MinDampRangeY", "double", "",0
Property: "MinDampRangeZ", "double", "",0
Property: "MaxDampRangeX", "double", "",0
Property: "MaxDampRangeY", "double", "",0
Property: "MaxDampRangeZ", "double", "",0
Property: "MinDampStrengthX", "double", "",0
Property: "MinDampStrengthY", "double", "",0
Property: "MinDampStrengthZ", "double", "",0
Property: "MaxDampStrengthX", "double", "",0
Property: "MaxDampStrengthY", "double", "",0
Property: "MaxDampStrengthZ", "double", "",0
Property: "PreferedAngleX", "double", "",0
Property: "PreferedAngleY", "double", "",0
Property: "PreferedAngleZ", "double", "",0
Property: "InheritType", "enum", "",0
Property: "ScalingActive", "bool", "",0
Property: "ScalingMin", "Vector3D", "",1,1,1
Property: "ScalingMax", "Vector3D", "",1,1,1
Property: "ScalingMinX", "bool", "",0
Property: "ScalingMinY", "bool", "",0
Property: "ScalingMinZ", "bool", "",0
Property: "ScalingMaxX", "bool", "",0
Property: "ScalingMaxY", "bool", "",0
Property: "ScalingMaxZ", "bool", "",0
Property: "GeometricTranslation", "Vector3D", "",0,0,0
Property: "GeometricRotation", "Vector3D", "",0,0,0
Property: "GeometricScaling", "Vector3D", "",1,1,1
Property: "LookAtProperty", "object", ""
Property: "UpVectorProperty", "object", ""
Property: "Show", "bool", "",1
Property: "NegativePercentShapeSupport", "bool", "",1
Property: "DefaultAttributeIndex", "int", "",0
Property: "Color", "Color", "A",0.8,0.8,0.8
Property: "Size", "double", "",100
Property: "Look", "enum", "",1
}
MultiLayer: 0
MultiTake: 1
Shading: Y
Culling: "CullingOff"
Vertices: -0.384093,0.256138,0.006082,-0.384093,0.170601,0.031841,-0.384093,0.150154,-0.049150,-0.384093,0.229302,-0.101971,
-0.384093,0.136824,-0.202233,-0.384093,0.087330,-0.124138,-0.384093,-0.346275,0.110004,-0.384093,-0.256623,0.009360,
-0.384093,-0.176559,0.067787,-0.384093,-0.232921,0.159594,-0.384093,-0.218074,-0.123345,-0.384093,-0.147127,-0.049150,
-0.384093,-0.123329,-0.205186,-0.384093,0.001674,-0.240275,-0.384093,0.001512,-0.151583,-0.384093,-0.084306,-0.124138,
-0.384093,-0.317321,0.202668,-0.379465,-0.648279,0.112112,-0.382124,-0.648279,0.211680,-0.795806,0.136824,-0.202233,
-0.795806,0.229302,-0.101971,-0.795806,-0.256623,0.009360,-0.795806,-0.346275,0.110004,-0.795806,-0.123329,-0.205186,
-0.795806,0.001674,-0.240275,-0.795806,-0.218074,-0.123345,-0.795806,0.256138,0.006082,0.795800,-0.123329,-0.205186,
0.384087,-0.123329,-0.205186,0.384087,0.001674,-0.240275,0.795800,0.001675,-0.240275,0.795800,-0.218074,-0.123345,
0.384087,-0.218074,-0.123345,0.384087,0.136824,-0.202233,0.795800,0.136825,-0.202233,0.384087,0.229302,-0.101971,
0.795800,0.229302,-0.101971,0.384087,0.256138,0.006082,0.795800,0.256139,0.006082,0.795800,-0.256622,0.009360,
0.384087,-0.256622,0.009360,0.812278,-2.785627,0.029476,0.812278,-3.095460,-0.525090,-0.812282,-3.095461,-0.525090,
-0.812282,-2.785627,0.029476,0.812279,-4.610313,-6.493624,0.812279,-4.562615,-7.775300,-0.812282,-4.562616,-7.775300,
-0.812282,-4.610314,-6.493624,0.812278,-4.053128,-2.789862,0.812279,-4.514399,-4.710745,-0.812282,-4.514400,-4.710745,
-0.812282,-4.053129,-2.789862,0.812278,-2.638101,0.093062,-0.812282,-2.638101,0.093062,0.384087,-0.346275,0.110004,
0.795800,-0.346274,0.110004,0.812277,-0.648279,0.112112,0.379459,-0.648279,0.112112,0.812278,-4.305479,-9.199294,
0.625868,-4.132863,-9.779741,-0.625872,-4.132863,-9.779741,-0.812282,-4.305480,-9.199294,-0.795806,-0.648279,0.112112,
0.812278,-3.602361,-1.516157,-0.812282,-3.602362,-1.516157,-0.812283,-2.283168,-0.766759,-0.812282,-2.327373,-0.925363,
-0.886426,-2.327373,-0.925363,-0.886426,-2.283168,-0.766759,-0.812283,-2.240476,-0.576842,-0.886426,-2.240476,-0.576842,
-0.886426,-2.316888,-0.397811,-0.812282,-2.316888,-0.397811,-0.812282,-2.411259,-1.101247,-0.886426,-2.411259,-1.101247,
-0.886425,-4.185254,-9.127096,-0.886425,-4.182526,-9.031980,-0.812282,-4.182526,-9.031980,-0.812282,-4.185295,-9.127104,
-0.812282,-3.297373,-1.825512,-0.886425,-3.297373,-1.825512,-0.886425,-3.025871,-1.400268,-0.812282,-3.025871,-1.400268,
-0.886426,-2.789310,-1.244452,-0.812282,-2.789310,-1.244452,-0.812282,-2.559790,-1.195523,-0.886426,-2.559790,-1.195523,
-0.886425,-4.367392,-7.760115,-0.812282,-4.367392,-7.760115,-0.812282,-3.538061,-2.469334,-0.886425,-3.538061,-2.469334,
-0.886425,-4.357615,-6.488252,-0.886425,-4.271824,-5.216384,-0.812282,-4.271824,-5.216384,-0.812282,-4.357615,-6.488252,
-0.886425,-4.130131,-4.212368,-0.886425,-3.832234,-3.256228,-0.812282,-3.832234,-3.256228,-0.812282,-4.130131,-4.212368,
-0.812282,-4.241362,-9.190566,-0.886425,-4.240956,-9.190487,-0.886426,-2.650144,-0.171066,-0.812282,-2.650144,-0.171066,
-0.878714,-4.365433,-9.207561,-0.797651,-4.425082,-9.215773,0.812278,-3.297372,-1.825512,0.812278,-3.025870,-1.400268,
0.886421,-3.025870,-1.400268,0.886421,-3.297372,-1.825512,0.886420,-4.357614,-6.488252,0.812278,-4.357614,-6.488252,
0.812278,-4.271823,-5.216384,0.886420,-4.271823,-5.216384,0.812278,-2.283167,-0.766759,0.886421,-2.283167,-0.766759,
0.886421,-2.327372,-0.925363,0.812278,-2.327372,-0.925363,0.812278,-2.789310,-1.244452,0.886421,-2.789310,-1.244452,
0.812278,-2.559790,-1.195523,0.886421,-2.559790,-1.195523,0.812278,-4.130130,-4.212368,0.886420,-4.130130,-4.212368,
0.812278,-4.367391,-7.760115,0.886420,-4.367391,-7.760115,0.886420,-4.182525,-9.031980,0.812278,-4.182525,-9.031980,
0.886420,-4.185253,-9.127096,0.812278,-4.185294,-9.127104,0.812278,-2.411258,-1.101247,0.886421,-2.411258,-1.101247,
0.812278,-2.240476,-0.576842,0.886421,-2.240476,-0.576842,0.812278,-2.316888,-0.397811,0.886421,-2.316888,-0.397811,
0.886420,-4.240955,-9.190487,0.812278,-4.241361,-9.190566,0.812278,-3.832233,-3.256228,0.886421,-3.832233,-3.256228,
0.812278,-3.538061,-2.469334,0.886421,-3.538061,-2.469334,0.886421,-2.650143,-0.171066,0.812278,-2.650143,-0.171066,
0.878709,-4.365432,-9.207561,0.797648,-4.425081,-9.215773,0.812278,-2.332882,-0.178261,0.812278,-2.531390,-0.026364,
0.812277,-0.697921,-0.035518,0.812277,-0.755547,-0.061805,0.812277,-0.659710,0.026726,-0.795806,-0.084306,-0.124138,
-0.795806,-0.147127,-0.049150,-0.795806,0.087329,-0.124138,-0.795806,0.001512,-0.151583,-0.795806,0.150154,-0.049150,
-0.795806,-0.176559,0.067787,-0.795806,-0.232921,0.159594,-0.795806,-0.317322,0.202668,-0.878715,-2.565224,0.149012,
-0.878715,-2.725215,0.103979,-0.797652,-2.751575,0.150001,-0.797652,-2.577317,0.208696,-0.878714,-4.650290,-6.497721,
-0.878714,-4.611413,-7.781276,-0.797651,-4.664889,-7.787845,-0.797651,-4.694972,-6.502116,0.795800,-0.084306,-0.124138,
0.384087,-0.084306,-0.124138,0.384087,-0.147126,-0.049150,0.795800,-0.147126,-0.049150,0.795800,0.087330,-0.124138,
0.384087,0.087330,-0.124138,0.384087,0.001512,-0.151583,0.795800,0.001512,-0.151583,0.795800,0.150154,-0.049150,
0.384087,0.150154,-0.049150,0.384087,-0.176559,0.067787,0.795800,-0.176559,0.067787,0.384087,-0.317321,0.202668,
0.795800,-0.317321,0.202668,0.795800,-0.232921,0.159594,0.384087,-0.232921,0.159594,-0.878714,-4.214729,-3.093172,
-0.797651,-4.246509,-3.084902,-0.797651,-3.918792,-2.199438,-0.878714,-3.890141,-2.215086,0.795800,0.170602,0.031841,
0.384087,0.170602,0.031841,-0.795806,0.170601,0.031841,0.878708,-2.725215,0.103979,0.878708,-2.843161,0.011014,
0.886421,-2.531390,-0.026364,0.878708,-3.114219,-0.497603,-0.795806,-0.648279,0.211680,-0.878715,-0.648279,0.157883,
0.797648,-4.649038,-5.216383,0.797648,-4.513501,-4.212367,-0.797651,-4.513502,-4.212367,-0.797651,-4.649039,-5.216383,
0.878709,-4.611413,-7.781276,0.797647,-2.874476,0.039460,0.797647,-3.136513,-0.467028,0.797647,-2.751575,0.150001,
-0.878714,-4.477786,-4.210954,0.878709,-4.214728,-3.093172,0.878709,-3.890141,-2.215086,0.797647,-3.918792,-2.199438,
0.797648,-4.246508,-3.084902,0.878709,-4.650290,-6.497721,0.797648,-4.694971,-6.502116,0.797648,-4.664888,-7.787845,
0.878709,-4.613151,-5.214167,0.878708,-3.624568,-1.496655,0.878708,-3.405848,-1.068490,0.797647,-3.430311,-1.042994,
0.797647,-3.650661,-1.474966,0.878709,-4.477785,-4.210954,0.797647,-2.577317,0.208696,-0.797651,-2.874476,0.039460,
-0.797651,-3.136514,-0.467028,-0.797651,-3.430312,-1.042994,-0.797651,-3.650661,-1.474966,0.878708,-2.565223,0.149012,
0.878708,-0.648279,0.157883,0.795800,-0.648279,0.211680,0.382118,-0.648279,0.211680,0.886418,-0.697921,-0.035518,
0.879005,-0.659710,0.026726,0.886418,-0.755547,-0.061805,-0.886426,-2.531390,-0.026364,-0.878714,-3.624568,-1.496655,
-0.878714,-3.405849,-1.068490,0.886419,-2.332882,-0.178261,-0.878715,-2.843162,0.011014,-0.878714,-3.114220,-0.497603,
-0.886426,-2.332883,-0.178261,-0.886426,-0.755548,-0.061805,-0.885654,-0.659710,0.026726,-0.886426,-0.697922,-0.035518,
-0.878714,-4.613152,-5.214167,0.625868,-4.240592,-9.798193,-0.625872,-4.240592,-9.798193,-0.812282,-2.332883,-0.178261,
-0.812283,-0.755548,-0.061805,-0.812282,-2.531390,-0.026364,-0.812283,-0.697922,-0.035518,-0.810636,-0.659710,0.026726
PolygonVertexIndex: 0,1,2,-4,4,3,2,-6,6,7,8,-10,7,10,11,-9,12,13,14,-16,10,12,15,-12,13,4,5,-15,6,9,-17,17,
6,16,-19,19,20,3,-5,21,7,6,-23,23,24,13,-13,24,19,4,-14,25,10,7,-22,20,26,0,-4,27,28,29,-31,31,
32,28,-28,30,29,33,-35,34,33,35,-37,36,35,37,-39,31,39,40,-33,41,42,43,-45,25,23,12,-11,45,46,47,-49,49,
50,51,-53,53,41,44,-55,55,56,57,-59,59,60,61,-63,46,59,62,-48,63,17,-55,57,53,-59,54,17,58,-54,39,56,55,
-41,63,22,6,-18,64,49,52,-66,42,64,65,-44,50,45,48,-52,66,67,68,-70,70,71,72,-74,74,75,68,-68,76,77,78,
-80,80,81,82,-84,82,84,85,-84,66,69,71,-71,86,87,75,-75,77,88,89,-79,90,91,81,-81,92,93,94,-96,96,97,98,
-100,93,96,99,-95,88,92,95,-90,86,85,84,-88,98,97,91,-91,76,79,100,-102,102,103,73,-73,104,101,100,-63,62,105,-105,
106,107,108,-110,110,111,112,-114,114,115,116,-118,108,107,118,-120,120,121,119,-119,113,112,122,-124,124,125,126,-128,126,128,129,-128,
130,117,116,-132,114,132,133,-116,132,134,135,-134,136,137,129,-129,120,130,131,-122,123,122,138,-140,125,124,111,-111,140,106,109,-142,
138,140,141,-140,142,135,134,-144,144,145,-60,144,59,137,-137,45,111,124,-47,46,124,127,-60,41,143,-43,42,114,-118,42,130,-121,
143,132,114,-43,132,143,-135,42,120,-119,42,117,-131,146,147,-54,147,143,41,-54,138,122,50,-50,59,129,-138,59,127,-130,57,148,
-150,57,150,-149,146,53,57,-150,106,140,49,-65,140,138,-50,42,118,107,-65,64,107,-107,50,112,111,-46,50,122,-113,151,152,11,
-16,153,154,14,-6,155,153,5,-3,152,156,8,-12,154,151,15,-15,9,157,158,-17,159,160,161,-163,163,164,165,-167,167,168,169,
-171,171,172,173,-175,175,176,172,-172,170,169,177,-179,174,173,168,-168,179,180,181,-183,183,184,185,-187,157,9,8,-157,182,181,178,
-178,187,188,176,-176,2,1,189,-156,142,190,-192,192,190,-143,142,193,115,-134,162,194,195,-160,191,193,-143,116,193,-132,115,193,-117,
121,193,-120,131,193,-122,133,135,-143,71,102,-73,196,197,198,-200,200,144,126,-126,191,201,202,-194,190,203,201,-192,204,198,184,-184,
205,206,207,-209,209,210,211,-201,212,196,210,-210,213,214,215,-217,196,212,217,-198,203,218,162,-162,217,205,208,-198,141,206,205,-140,
206,213,216,-208,201,203,161,-220,202,201,219,-221,215,202,220,-222,216,215,221,-223,207,216,222,-186,208,207,185,-185,197,208,184,-199,
210,196,199,-167,211,210,166,-166,218,223,224,-226,162,18,-195,16,158,194,-19,225,180,179,-227,223,218,203,-191,224,227,-229,224,229,
-228,230,160,-160,109,213,206,-142,108,214,213,-110,139,205,217,-124,82,81,231,-233,215,214,193,-203,119,193,214,-109,123,217,212,-114,
212,209,110,-114,209,200,125,-111,233,223,-193,97,96,204,-184,192,223,-191,102,234,-161,160,234,219,-162,230,102,-161,68,75,-236,69,
68,-236,87,84,-236,75,87,-236,102,71,69,-236,236,230,-160,236,159,195,-238,195,238,-240,240,163,166,-200,186,185,222,-232,231,222,
221,-233,199,198,204,-241,234,235,220,-220,221,220,235,-233,163,92,88,-165,240,93,92,-164,91,97,183,-187,84,82,232,-236,81,91,
186,-232,241,145,105,-243,96,93,240,-205,234,102,-236,164,104,105,-166,104,76,-102,144,136,-129,144,128,-127,145,211,165,-106,200,211,
145,-145,164,88,77,-105,104,77,-77,223,233,229,-225,195,239,-238,225,226,-219,18,162,218,-227,38,187,175,-37,187,38,37,-189,36,
175,171,-35,27,167,170,-32,34,171,174,-31,30,174,167,-28,31,170,178,-40,56,180,225,-58,181,56,39,-179,56,181,-181,32,169,
168,-29,176,188,37,-36,33,172,176,-36,29,173,172,-34,28,168,173,-30,40,177,169,-33,179,55,58,-227,182,177,40,-56,55,179,
-183,189,1,0,-27,54,243,244,-64,62,100,-80,62,79,-79,70,73,-104,243,54,-246,245,54,44,-104,63,246,-248,48,47,89,-96,
98,52,51,-100,103,43,66,-71,43,67,-67,43,74,-68,43,85,-87,43,86,-75,44,43,-104,47,62,78,-90,63,244,-247,80,65,
52,-91,65,80,-84,90,52,-99,43,65,83,-86,51,94,-100,51,48,95,-95,24,23,151,-155,23,25,152,-152,26,20,155,-190,19,
24,154,-154,20,19,153,-156,25,21,156,-153,21,22,157,-157,22,158,-158,22,63,194,-159,59,145,241,-61,147,146,233,-193,236,243,
245,-231,245,103,102,-231,243,236,237,-245,246,239,238,-248,194,63,-196,247,238,195,-64,244,237,239,-247,148,150,228,-228,149,148,227,
-230,150,57,-229,224,228,-58,225,224,-58,233,146,149,-230,147,192,142,-144,58,17,18,-227,62,61,242,-106,60,241,242,-62
GeometryVersion: 124
LayerElementNormal: 0 {
Version: 101
Name: ""
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "Direct"
Normals: 1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
0.999971,0.004992,0.005737,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000001,0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
0.999971,0.004992,0.005737,1.000000,0.000001,0.000000,0.999970,0.005108,0.005872,0.999869,0.010636,0.012226,
0.999971,0.004992,0.005737,0.999970,0.005108,0.005872,0.999869,0.010636,0.012226,-0.000000,0.522750,-0.852486,
-0.000000,0.880332,-0.474359,-0.000000,0.880332,-0.474359,-0.000000,0.522750,-0.852486,0.000000,-0.875077,-0.483985,
0.000000,-0.875077,-0.483985,0.000000,-0.410391,-0.911910,0.000000,-0.412356,-0.911023,0.000000,-0.473322,-0.880890,
0.000000,0.000362,-1.000000,0.000000,0.000362,-1.000000,0.000000,-0.473322,-0.880890,0.000000,0.000362,-1.000000,
-0.000000,0.522750,-0.852486,-0.000000,0.522750,-0.852486,0.000000,0.000362,-1.000000,0.000000,-0.841619,-0.540071,
0.000000,-0.841619,-0.540072,0.000000,-0.875077,-0.483985,0.000000,-0.875077,-0.483985,-0.000000,0.880332,-0.474359,
-0.000000,0.970515,-0.241041,-0.000000,0.970515,-0.241041,-0.000000,0.880332,-0.474359,0.000000,-0.473321,-0.880890,
0.000000,-0.473321,-0.880890,0.000000,0.000362,-1.000000,0.000000,0.000362,-1.000000,0.000000,-0.841619,-0.540072,
0.000000,-0.841619,-0.540072,0.000000,-0.473321,-0.880890,0.000000,-0.473321,-0.880890,0.000000,0.000362,-1.000000,
0.000000,0.000362,-1.000000,-0.000000,0.522750,-0.852486,-0.000000,0.522750,-0.852486,-0.000000,0.522750,-0.852486,
-0.000000,0.522750,-0.852486,-0.000000,0.880332,-0.474358,-0.000000,0.880332,-0.474358,-0.000000,0.880332,-0.474358,
-0.000000,0.880332,-0.474358,-0.000000,0.970515,-0.241041,-0.000000,0.970515,-0.241041,0.000000,-0.841619,-0.540072,
0.000000,-0.875077,-0.483985,0.000000,-0.875077,-0.483985,0.000000,-0.841619,-0.540072,-0.000000,0.669940,-0.742415,
-0.000000,0.881797,-0.471630,-0.000000,0.881797,-0.471630,-0.000000,0.669940,-0.742415,0.000000,-0.841619,-0.540071,
0.000000,-0.473322,-0.880890,0.000000,-0.473322,-0.880890,0.000000,-0.841619,-0.540072,-0.000001,0.999966,-0.008274,
-0.000001,0.994182,0.107714,-0.000001,0.994182,0.107714,-0.000001,0.999966,-0.008274,-0.000001,0.958839,-0.283948,
-0.000001,0.989548,-0.144204,-0.000001,0.989548,-0.144204,-0.000001,0.958840,-0.283949,-0.000000,0.206762,-0.978391,
-0.000000,0.669940,-0.742415,-0.000000,0.669940,-0.742415,-0.000000,0.207283,-0.978281,0.000000,-0.410391,-0.911910,
0.000000,-0.405443,-0.914121,0.000000,0.001108,-0.999999,0.000000,0.004091,-0.999992,-0.000000,0.974109,0.226077,
-0.000000,0.958513,0.285048,-0.000000,0.958513,0.285048,-0.000000,0.974109,0.226077,-0.000001,0.994182,0.107714,
-0.000000,0.974109,0.226077,-0.000000,0.974109,0.226077,-0.000001,0.994182,0.107714,0.000000,0.001318,-0.999999,
0.000000,0.004091,-0.999992,-0.000000,0.207283,-0.978281,0.000000,0.001108,-0.999999,-0.000000,0.206762,-0.978391,
0.000000,0.004091,-0.999992,-0.000000,0.207283,-0.978281,0.000000,0.004091,-0.999992,0.000000,0.004091,-0.999992,
-0.000000,0.206762,-0.978391,0.000000,-0.875077,-0.483985,0.000000,-0.405443,-0.914121,0.000000,-0.410391,-0.911910,
0.000000,-0.875077,-0.483985,0.000000,0.001318,-0.999999,0.000000,-0.412356,-0.911023,0.000000,-0.410391,-0.911910,
0.000000,0.004091,-0.999992,-0.000000,0.918525,-0.395364,-0.000001,0.958839,-0.283948,-0.000001,0.958840,-0.283949,
-0.000000,0.918524,-0.395364,-0.000000,0.881797,-0.471630,-0.000000,0.918525,-0.395364,-0.000000,0.918524,-0.395364,
-0.000000,0.881797,-0.471630,-0.000001,0.989548,-0.144204,-0.000001,0.999966,-0.008274,-0.000001,0.999966,-0.008274,
-0.000001,0.989548,-0.144204,0.000000,0.969781,-0.243978,0.000000,0.936452,-0.350796,0.000000,0.936452,-0.350796,
0.000000,0.969781,-0.243977,0.000000,0.995849,0.091016,0.000000,0.995849,0.091016,0.000000,0.772279,0.635284,
0.000000,0.772279,0.635284,0.000000,0.748411,-0.663235,0.000000,0.748411,-0.663235,0.000000,0.936452,-0.350796,
0.000000,0.936452,-0.350796,0.001152,0.930320,-0.366747,0.000140,0.998334,0.057698,0.000140,0.998334,0.057698,
0.001152,0.930272,-0.366868,0.000000,0.894722,-0.446624,0.000000,0.894722,-0.446624,0.000000,0.712119,-0.702059,
0.000000,0.712119,-0.702059,0.000000,0.712119,-0.702059,0.000000,0.385953,-0.922518,0.000000,0.385953,-0.922518,
0.000000,0.712119,-0.702059,0.000000,0.969781,-0.243978,0.000000,0.969781,-0.243977,0.000000,0.995849,0.091016,
0.000000,0.995849,0.091016,0.000000,0.378149,-0.925745,0.000000,0.378149,-0.925745,0.000000,0.748411,-0.663235,
0.000000,0.748411,-0.663235,0.000140,0.998334,0.057698,0.000000,0.997667,0.068273,0.000000,0.997667,0.068273,
0.000140,0.998334,0.057698,0.000000,0.936685,-0.350172,0.000000,0.936685,-0.350172,0.000000,0.894722,-0.446624,
0.000000,0.894722,-0.446624,0.000000,0.999296,-0.037510,0.000000,0.994620,-0.103590,0.000000,0.994620,-0.103590,
0.000000,0.999296,-0.037510,0.000000,0.975653,-0.219318,0.000000,0.946077,-0.323941,0.000000,0.946077,-0.323941,
0.000000,0.975653,-0.219318,0.000000,0.994620,-0.103590,0.000000,0.975653,-0.219318,0.000000,0.975653,-0.219318,
0.000000,0.994620,-0.103590,0.000000,0.997667,0.068273,0.000000,0.999296,-0.037510,0.000000,0.999296,-0.037510,
0.000000,0.997667,0.068273,0.000000,0.378149,-0.925745,0.000000,0.385953,-0.922518,0.000000,0.385953,-0.922518,
0.000000,0.378149,-0.925745,0.000000,0.946077,-0.323941,0.000000,0.946077,-0.323941,0.000000,0.936685,-0.350172,
0.000000,0.936685,-0.350172,0.001152,0.930320,-0.366747,0.001152,0.930272,-0.366868,0.001155,0.471569,-0.881828,
0.001177,0.480188,-0.877165,0.000000,0.562533,0.826775,0.000000,0.562533,0.826775,0.000000,0.772279,0.635284,
0.000000,0.772279,0.635284,0.000175,0.136132,-0.990691,0.001177,0.480188,-0.877165,0.001155,0.471569,-0.881828,
-0.000205,0.135465,-0.990782,-0.000205,0.135465,-0.990782,0.000107,0.136499,-0.990640,0.000175,0.136132,-0.990691,
0.000000,0.894722,-0.446624,0.000000,0.712119,-0.702059,0.000000,0.712119,-0.702058,0.000000,0.894722,-0.446624,
0.000000,0.999296,-0.037510,0.000000,0.999296,-0.037510,0.000000,0.994620,-0.103590,0.000000,0.994620,-0.103590,
0.000000,0.969781,-0.243977,0.000000,0.969781,-0.243977,0.000000,0.936452,-0.350796,0.000000,0.936452,-0.350796,
0.000000,0.712119,-0.702058,0.000000,0.712119,-0.702059,0.000000,0.385953,-0.922519,0.000000,0.385953,-0.922518,
0.000000,0.378150,-0.925745,0.000000,0.378149,-0.925745,0.000000,0.385953,-0.922518,0.000000,0.385953,-0.922519,
0.000000,0.994620,-0.103590,0.000000,0.994620,-0.103590,0.000000,0.975653,-0.219318,0.000000,0.975653,-0.219318,
0.000000,0.997667,0.068273,0.000000,0.997667,0.068273,-0.000140,0.998334,0.057698,-0.000140,0.998334,0.057698,
-0.000140,0.998334,0.057698,-0.001152,0.930320,-0.366747,-0.001152,0.930272,-0.366868,-0.000140,0.998334,0.057698,
0.000000,0.748412,-0.663235,0.000000,0.936452,-0.350796,0.000000,0.936452,-0.350796,0.000000,0.748412,-0.663235,
0.000000,0.969781,-0.243977,0.000000,0.995849,0.091016,0.000000,0.995849,0.091016,0.000000,0.969781,-0.243977,
0.000000,0.995849,0.091016,0.000000,0.772279,0.635283,0.000000,0.772279,0.635283,0.000000,0.995849,0.091016,
-0.001178,0.480188,-0.877165,-0.001156,0.471569,-0.881829,-0.001152,0.930272,-0.366868,-0.001152,0.930320,-0.366747,
0.000000,0.378150,-0.925745,0.000000,0.748412,-0.663235,0.000000,0.748412,-0.663235,0.000000,0.378149,-0.925745,
0.000000,0.975653,-0.219318,0.000000,0.975653,-0.219318,0.000000,0.946077,-0.323941,0.000000,0.946077,-0.323941,
0.000000,0.997667,0.068273,0.000000,0.997667,0.068273,0.000000,0.999296,-0.037510,0.000000,0.999296,-0.037510,
0.000000,0.936685,-0.350173,0.000000,0.894722,-0.446624,0.000000,0.894722,-0.446624,0.000000,0.936685,-0.350172,
0.000000,0.946077,-0.323941,0.000000,0.936685,-0.350173,0.000000,0.936685,-0.350172,0.000000,0.946077,-0.323941,
0.000000,0.562534,0.826774,0.000000,0.772279,0.635283,0.000000,0.772279,0.635283,0.000000,0.562534,0.826774,
-0.000176,0.136131,-0.990691,-0.000107,0.136499,-0.990640,-0.000232,0.135837,-0.990731,-0.000176,0.136131,-0.990691,
-0.000232,0.135837,-0.990731,-0.001156,0.471569,-0.881829,-0.001178,0.480188,-0.877165,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000001,-0.000001,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000001,-0.000001,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000001,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000001,-0.000000,-1.000000,0.000001,0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,0.000001,-0.000000,-1.000000,0.000006,0.000000,-1.000000,0.000001,0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,0.000001,-0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000001,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,0.000000,-0.000000,0.557601,0.830109,-0.000000,0.890682,0.454627,-0.000000,0.890682,0.454627,
-0.000000,0.557601,0.830109,0.000000,-0.557588,0.830118,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,
0.000000,-0.557588,0.830118,0.000000,-0.890510,0.454963,0.000000,-0.557588,0.830118,0.000000,-0.557588,0.830118,
0.000000,-0.890510,0.454963,-0.000000,0.890682,0.454627,-0.000000,0.921612,0.388113,-0.000000,0.921612,0.388113,
-0.000000,0.890682,0.454627,-0.000000,0.000000,1.000000,-0.000000,0.557601,0.830109,-0.000000,0.557601,0.830109,
-0.000000,0.000000,1.000000,-0.000000,0.678744,0.734375,-0.000000,0.678744,0.734375,-0.000000,0.246979,0.969021,
-0.000000,0.246565,0.969126,-0.861886,-0.072377,0.501910,-0.846066,-0.258017,0.466475,-0.274117,-0.476691,0.835240,
-0.292129,-0.151633,0.944282,-0.849611,-0.527405,0.002444,-0.863503,-0.502048,-0.048064,-0.282666,-0.954823,-0.091723,
-0.248262,-0.968683,0.004312,-0.000000,0.557601,0.830109,-0.000000,0.557601,0.830109,-0.000000,0.890682,0.454627,
-0.000000,0.890682,0.454627,0.000000,-0.557588,0.830118,0.000000,-0.557588,0.830118,-0.000000,0.000000,1.000000,
-0.000000,0.000000,1.000000,0.000000,-0.890510,0.454963,0.000000,-0.890510,0.454963,0.000000,-0.557588,0.830118,
0.000000,-0.557588,0.830118,-0.000000,0.890682,0.454627,-0.000000,0.890682,0.454627,-0.000000,0.921612,0.388113,
-0.000000,0.921612,0.388113,-0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,-0.000000,0.557601,0.830109,
-0.000000,0.557601,0.830109,-0.000000,0.246565,0.969126,-0.000000,0.246979,0.969021,-0.000000,0.678744,0.734375,
-0.000000,0.678744,0.734375,-0.814699,-0.554989,0.168089,-0.191365,-0.939665,0.283566,-0.188518,-0.921046,0.340785,
-0.822565,-0.533350,0.197294,-0.000000,0.678744,0.734375,-0.000000,0.678744,0.734375,-0.000000,0.921612,0.388113,
-0.000000,0.921612,0.388113,-0.000000,0.678744,0.734375,-0.000000,0.678744,0.734375,-0.000000,0.921612,0.388113,
-0.000000,0.921612,0.388113,0.000000,-0.969577,0.244786,0.000000,-0.969577,0.244786,0.000000,-0.890510,0.454963,
0.000000,-0.890510,0.454963,0.000000,-0.890510,0.454963,0.000000,-0.969577,0.244786,0.000000,-0.969577,0.244786,
0.000000,-0.890510,0.454963,0.999797,-0.018148,0.008753,0.846068,-0.258016,0.466473,0.819573,-0.448973,0.355984,
0.999137,0.010280,0.040248,0.846068,-0.258016,0.466473,0.999797,-0.018148,0.008753,0.999797,-0.018148,0.008753,
0.831731,-0.493585,0.254159,0.999959,-0.008912,-0.001518,0.999957,-0.007912,-0.004875,-0.292129,-0.151633,0.944282,
-0.197539,0.008134,0.980261,-0.870413,-0.007518,0.492265,-0.861886,-0.072377,0.501910,0.819573,-0.448973,0.355984,
0.831731,-0.493585,0.254159,0.999797,-0.018148,0.008753,0.999962,-0.008114,0.003105,0.831731,-0.493585,0.254159,
0.999969,-0.005886,0.005188,0.999959,-0.008912,-0.001518,0.831731,-0.493585,0.254159,0.999962,-0.008114,0.003105,
0.999960,-0.003608,0.008184,0.831731,-0.493585,0.254159,0.999945,-0.006154,0.008498,0.999969,-0.005886,0.005188,
0.831731,-0.493585,0.254159,0.999960,-0.003608,0.008184,0.999957,-0.007912,-0.004875,1.000000,-0.000001,-0.000000,
0.999797,-0.018148,0.008753,-0.999957,-0.007911,-0.004873,-0.999797,-0.018145,0.008751,-1.000000,-0.000001,0.000000,
0.215110,-0.973187,0.081450,0.198709,-0.963885,0.177317,-0.198704,-0.963886,0.177317,-0.215105,-0.973188,0.081450,
0.863506,-0.502043,-0.048063,0.882039,-0.465839,-0.070726,0.999339,-0.036164,-0.003638,0.999511,-0.031138,-0.002820,
0.819573,-0.448973,0.355984,0.235217,-0.764039,0.600763,0.206002,-0.869585,0.448759,0.831731,-0.493585,0.254159,
0.846068,-0.258016,0.466473,0.274122,-0.476691,0.835238,0.235217,-0.764039,0.600763,0.819573,-0.448973,0.355984,
-0.820145,-0.562288,0.105808,-0.198704,-0.963886,0.177317,-0.191365,-0.939665,0.283566,-0.814699,-0.554989,0.168089,
0.814700,-0.554986,0.168088,0.822566,-0.533348,0.197294,0.188523,-0.921045,0.340785,0.191370,-0.939664,0.283565,
0.849662,-0.527324,0.001947,0.248268,-0.968682,0.004312,0.282672,-0.954821,-0.091723,0.863506,-0.502043,-0.048063,
0.828530,-0.557913,0.047656,0.215110,-0.973187,0.081450,0.248268,-0.968682,0.004312,0.849662,-0.527324,0.001947,
0.814489,-0.532134,0.231171,0.826951,-0.500391,0.256437,0.194274,-0.873766,0.445860,0.189685,-0.898509,0.395855,
0.215110,-0.973187,0.081450,0.828530,-0.557913,0.047656,0.820147,-0.562284,0.105807,0.198709,-0.963885,0.177317,
0.274122,-0.476691,0.835238,0.292165,-0.151307,0.944323,-0.292129,-0.151633,0.944282,-0.274117,-0.476691,0.835240,
0.820147,-0.562284,0.105807,0.814700,-0.554986,0.168088,0.191370,-0.939664,0.283565,0.198709,-0.963885,0.177317,
0.999830,-0.017285,0.006424,0.822566,-0.533348,0.197294,0.814700,-0.554986,0.168088,0.999808,-0.018680,0.005889,
0.822566,-0.533348,0.197294,0.814489,-0.532134,0.231171,0.189685,-0.898509,0.395855,0.188523,-0.921045,0.340785,
0.235217,-0.764039,0.600763,0.274122,-0.476691,0.835238,-0.274117,-0.476691,0.835240,-0.235213,-0.764040,0.600764,
0.206002,-0.869585,0.448759,0.235217,-0.764039,0.600763,-0.235213,-0.764040,0.600764,-0.205998,-0.869586,0.448760,
0.194274,-0.873766,0.445860,0.206002,-0.869585,0.448759,-0.205998,-0.869586,0.448760,-0.194270,-0.873766,0.445860,
0.189685,-0.898509,0.395855,0.194274,-0.873766,0.445860,-0.194270,-0.873766,0.445860,-0.189680,-0.898510,0.395855,
0.188523,-0.921045,0.340785,0.189685,-0.898509,0.395855,-0.189680,-0.898510,0.395855,-0.188518,-0.921046,0.340785,
0.191370,-0.939664,0.283565,0.188523,-0.921045,0.340785,-0.188518,-0.921046,0.340785,-0.191365,-0.939665,0.283566,
0.198709,-0.963885,0.177317,0.191370,-0.939664,0.283565,-0.191365,-0.939665,0.283566,-0.198704,-0.963886,0.177317,
0.248268,-0.968682,0.004312,0.215110,-0.973187,0.081450,-0.215105,-0.973188,0.081450,-0.248262,-0.968683,0.004312,
0.282672,-0.954821,-0.091723,0.248268,-0.968682,0.004312,-0.248262,-0.968683,0.004312,-0.282666,-0.954823,-0.091723,
0.292165,-0.151307,0.944323,0.861888,-0.072375,0.501908,0.872234,0.010132,0.488983,0.197542,0.008134,0.980261,
-0.292129,-0.151633,0.944282,-0.000000,0.008019,0.999968,-0.197539,0.008134,0.980261,-0.000000,0.246565,0.969126,
-0.000000,0.246979,0.969021,-0.197539,0.008134,0.980261,-0.000000,0.008019,0.999968,0.197542,0.008134,0.980261,
-0.000000,0.246979,0.969021,-0.000000,0.246565,0.969126,0.000000,0.008019,0.999968,0.861888,-0.072375,0.501908,
0.292165,-0.151307,0.944323,0.274122,-0.476691,0.835238,0.846068,-0.258016,0.466473,0.872234,0.010132,0.488983,
0.999253,0.007760,0.037848,0.976138,0.216512,-0.016656,0.872234,0.010132,0.488983,0.999467,-0.005363,0.032198,
0.999253,0.007760,0.037848,-0.999137,0.010272,0.040238,-0.846066,-0.258017,0.466475,-0.861886,-0.072377,0.501910,
0.999847,-0.015996,0.007105,0.814489,-0.532134,0.231171,0.822566,-0.533348,0.197294,0.999830,-0.017285,0.006424,
0.999899,-0.011980,0.007587,0.826951,-0.500391,0.256437,0.814489,-0.532134,0.231171,0.999847,-0.015996,0.007105,
0.999808,-0.018680,0.005889,0.814700,-0.554986,0.168088,0.820147,-0.562284,0.105807,0.999770,-0.020973,0.004386,
-0.999895,-0.012209,0.007829,-0.999847,-0.015993,0.007103,-0.814488,-0.532136,0.231171,-0.826950,-0.500394,0.256438,
0.194274,-0.873766,0.445860,0.826951,-0.500391,0.256437,0.831731,-0.493585,0.254159,0.206002,-0.869585,0.448759,
0.999945,-0.006154,0.008498,0.831731,-0.493585,0.254159,0.826951,-0.500391,0.256437,0.999899,-0.011980,0.007587,
0.999770,-0.020973,0.004386,0.820147,-0.562284,0.105807,0.828530,-0.557913,0.047656,0.999726,-0.023286,0.002186,
0.828530,-0.557913,0.047656,0.849662,-0.527324,0.001947,0.999651,-0.026422,0.000454,0.999726,-0.023286,0.002186,
0.849662,-0.527324,0.001947,0.863506,-0.502043,-0.048063,0.999511,-0.031138,-0.002820,0.999651,-0.026422,0.000454,
0.999515,0.004032,0.030890,0.861888,-0.072375,0.501908,0.999137,0.010280,0.040248,-0.999808,-0.018677,0.005888,
-0.999770,-0.020972,0.004386,-0.820145,-0.562288,0.105808,-0.814699,-0.554989,0.168089,0.999137,0.010280,0.040248,
0.861888,-0.072375,0.501908,0.846068,-0.258016,0.466473,-0.999797,-0.018145,0.008751,-0.819571,-0.448975,0.355985,
-0.846066,-0.258017,0.466475,-0.846066,-0.258017,0.466475,-0.819571,-0.448975,0.355985,-0.235213,-0.764040,0.600764,
-0.274117,-0.476691,0.835240,-0.999137,0.010272,0.040238,-0.999797,-0.018145,0.008751,-0.846066,-0.258017,0.466475,
-0.999962,-0.008112,0.003105,-0.999969,-0.005885,0.005186,-0.831730,-0.493587,0.254160,-0.999959,-0.008911,-0.001518,
-0.999962,-0.008112,0.003105,-0.831730,-0.493587,0.254160,-0.999960,-0.003607,0.008182,-0.999945,-0.006153,0.008496,
-0.831730,-0.493587,0.254160,-0.999969,-0.005885,0.005186,-0.999960,-0.003607,0.008182,-0.831730,-0.493587,0.254160,
-0.999797,-0.018145,0.008751,-0.999957,-0.007911,-0.004873,-0.999959,-0.008911,-0.001518,-0.831730,-0.493587,0.254160,
-0.999515,0.004029,0.030889,-0.999137,0.010272,0.040238,-0.861886,-0.072377,0.501910,-0.999515,0.004029,0.030889,
-0.861886,-0.072377,0.501910,-0.870413,-0.007518,0.492265,-0.999467,-0.005363,0.032198,-0.870413,-0.007518,0.492265,
-0.995302,-0.076517,0.059324,-0.998535,-0.027171,0.046787,-0.828617,-0.557759,0.047947,-0.849611,-0.527405,0.002444,
-0.248262,-0.968683,0.004312,-0.215105,-0.973188,0.081450,-0.822565,-0.533350,0.197294,-0.188518,-0.921046,0.340785,
-0.189680,-0.898510,0.395855,-0.814488,-0.532136,0.231171,-0.814488,-0.532136,0.231171,-0.189680,-0.898510,0.395855,
-0.194270,-0.873766,0.445860,-0.826950,-0.500394,0.256438,-0.215105,-0.973188,0.081450,-0.198704,-0.963886,0.177317,
-0.820145,-0.562288,0.105808,-0.828617,-0.557759,0.047947,-0.819571,-0.448975,0.355985,-0.831730,-0.493587,0.254160,
-0.205998,-0.869586,0.448760,-0.235213,-0.764040,0.600764,-0.194270,-0.873766,0.445860,-0.205998,-0.869586,0.448760,
-0.831730,-0.493587,0.254160,-0.826950,-0.500394,0.256438,-0.849611,-0.527405,0.002444,-0.999651,-0.026423,0.000454,
-0.999511,-0.031140,-0.002821,-0.863503,-0.502048,-0.048064,-0.828617,-0.557759,0.047947,-0.999726,-0.023287,0.002186,
-0.999651,-0.026423,0.000454,-0.849611,-0.527405,0.002444,-0.999830,-0.017281,0.006422,-0.999808,-0.018677,0.005888,
-0.814699,-0.554989,0.168089,-0.822565,-0.533350,0.197294,-0.999945,-0.006153,0.008496,-0.999895,-0.012209,0.007829,
-0.826950,-0.500394,0.256438,-0.831730,-0.493587,0.254160,-0.999847,-0.015993,0.007103,-0.999830,-0.017281,0.006422,
-0.822565,-0.533350,0.197294,-0.814488,-0.532136,0.231171,0.000000,-0.953315,-0.301977,0.214611,-0.955095,-0.204291,
-0.214607,-0.955096,-0.204291,0.000000,-0.953315,-0.301977,-0.999770,-0.020972,0.004386,-0.999726,-0.023287,0.002186,
-0.828617,-0.557759,0.047947,-0.820145,-0.562288,0.105808,-0.819571,-0.448975,0.355985,-0.999797,-0.018145,0.008751,
-0.831730,-0.493587,0.254160,-0.863503,-0.502048,-0.048064,-0.882036,-0.465844,-0.070726,-0.214607,-0.955096,-0.204291,
-0.282666,-0.954823,-0.091723,-0.882036,-0.465844,-0.070726,-0.998774,-0.048048,0.011878,-0.995633,-0.070131,0.061624,
0.882039,-0.465839,-0.070726,0.995633,-0.070128,0.061623,0.998774,-0.048047,0.011878,0.882039,-0.465839,-0.070726,
0.998774,-0.048047,0.011878,0.999339,-0.036164,-0.003638,0.214611,-0.955095,-0.204291,0.282672,-0.954821,-0.091723,
-0.282666,-0.954823,-0.091723,-0.214607,-0.955096,-0.204291,0.863506,-0.502043,-0.048063,0.282672,-0.954821,-0.091723,
0.214611,-0.955095,-0.204291,0.882039,-0.465839,-0.070726,-0.863503,-0.502048,-0.048064,-0.999511,-0.031140,-0.002821,
-0.999339,-0.036165,-0.003638,-0.882036,-0.465844,-0.070726,-0.882036,-0.465844,-0.070726,-0.999339,-0.036165,-0.003638,
-0.998774,-0.048048,0.011878,0.861888,-0.072375,0.501908,0.999515,0.004032,0.030890,0.999467,-0.005363,0.032198,
0.872234,0.010132,0.488983,-0.870413,-0.007518,0.492265,-0.998535,-0.027171,0.046787,-0.999467,-0.005363,0.032198,
0.197542,0.008134,0.980261,0.000000,0.008019,0.999968,0.292165,-0.151307,0.944323,-0.000000,0.008019,0.999968,
-0.292129,-0.151633,0.944282,0.292165,-0.151307,0.944323,0.000000,0.008019,0.999968,1.000000,-0.000000,0.000000,
1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,0.000001,-0.000000,-0.000000,0.288349,0.957525,
-0.000000,0.288349,0.957525,-0.000000,0.288349,0.957525,-0.000000,0.288349,0.957525,1.000000,0.000001,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000001,-0.000000,1.000000,0.000001,-0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000001,-0.000000,
1.000000,0.000001,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000001,-0.000000,1.000000,0.000001,-0.000000,0.999188,0.012852,0.038173,
0.999150,0.013153,0.039069,0.996316,0.027365,0.081279,0.996316,0.027365,0.081279,1.000000,0.000000,-0.000000,
0.999188,0.012852,0.038173,1.000000,0.000001,-0.000000,1.000000,0.000001,-0.000000,0.999188,0.012852,0.038173,
1.000000,0.000000,-0.000000,0.999150,0.013153,0.039069,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-0.999970,0.005108,0.005871,-0.999971,0.004991,0.005737,
-0.999869,0.010636,0.012225,-0.999869,0.010636,0.012225,-1.000000,-0.000001,-0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-0.999971,0.004991,0.005737,-0.999971,0.004991,0.005737,-0.999970,0.005108,0.005871,
-1.000000,-0.000001,-0.000000,-0.000000,0.288349,0.957525,-0.000000,0.288349,0.957525,-0.000000,0.288349,0.957525,
-0.000000,0.288349,0.957525,0.999947,-0.000847,-0.010300,0.999303,-0.003061,-0.037216,0.998259,0.010220,-0.058084,
0.995957,0.047567,-0.076207,1.000000,-0.000000,-0.000000,1.000000,0.000000,-0.000001,1.000000,-0.000001,-0.000000,
1.000000,-0.000000,-0.000000,1.000000,-0.000001,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000001,-0.000000,0.999303,-0.003061,-0.037216,0.999947,-0.000847,-0.010300,
1.000000,0.000000,0.000001,1.000000,0.000000,0.000001,0.999947,-0.000847,-0.010300,1.000000,0.000001,-0.000000,
1.000000,0.000001,-0.000000,0.995957,0.047567,-0.076207,0.987180,0.081122,-0.137459,0.936503,0.287253,-0.201118,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,
1.000000,0.000001,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,-0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000001,-0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,-0.000000,
1.000000,0.000001,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000001,-0.000000,1.000000,0.000000,0.000000,
1.000000,-0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.995957,0.047567,-0.076207,
0.998259,0.010220,-0.058084,0.987180,0.081122,-0.137459,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000001,-0.000000,
1.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,-1.000000,0.000000,-0.000000,
-1.000000,-0.000001,-0.000000,-1.000000,-0.000001,-0.000000,-1.000000,0.000000,-0.000000,-1.000000,-0.000001,-0.000000,
-1.000000,-0.000001,-0.000000,-1.000000,-0.000001,-0.000000,-1.000000,-0.000001,-0.000000,-1.000000,0.000000,0.000000,
-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,0.000000,-0.000000,-1.000000,0.000000,-0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000001,-0.000000,
-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,-0.000000,-1.000000,-0.000001,0.000000,
-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000001,0.000000,-1.000000,-0.000000,0.000000,
-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,0.954215,-0.015179,-0.298737,0.954215,-0.015194,-0.298735,
0.954215,-0.015178,-0.298737,0.954215,-0.015194,-0.298735,0.000000,-0.607694,-0.794171,0.000000,-0.607694,-0.794171,
0.000000,-0.607694,-0.794171,0.000000,-0.607694,-0.794171,0.000000,-0.607694,-0.794171,0.000000,-0.607694,-0.794171,
0.000000,-0.607694,-0.794171,0.000000,-0.607694,-0.794171,0.000000,0.773011,-0.634393,0.000000,0.773011,-0.634393,
0.000000,0.773011,-0.634393,0.000000,0.773011,-0.634393,0.000000,0.073296,-0.997310,0.000000,0.073296,-0.997310,
-0.000000,0.248211,-0.968706,-0.000000,0.248211,-0.968706,-0.000001,0.664084,-0.747658,-0.000001,0.661685,-0.749781,
-0.014855,0.945579,-0.325052,-0.016052,0.951268,-0.307946,-0.000001,1.000000,0.000000,-0.018963,0.997677,-0.065427,
-0.015080,0.998532,-0.052030,-0.016052,0.951268,-0.307946,-0.014855,0.945579,-0.325052,-0.015080,0.998532,-0.052030,
-0.018963,0.997677,-0.065427,-0.000000,0.248211,-0.968706,-0.000000,0.248211,-0.968706,-0.000001,0.661685,-0.749781,
-0.000001,0.664084,-0.747658,-0.000001,0.662458,-0.749099,-0.000001,0.942143,-0.335211,0.012404,0.942936,-0.332741,
-0.000001,0.654821,-0.755784,-0.000000,0.248211,-0.968706,-0.000001,0.662458,-0.749099,-0.000001,0.654821,-0.755784,
-0.000000,0.248211,-0.968706,-0.000001,0.942143,-0.335211,0.027336,0.997431,-0.066210,0.012404,0.942936,-0.332741,
0.026779,0.998891,-0.038728,0.012404,0.942936,-0.332741,0.027336,0.997431,-0.066210,-0.000000,1.000000,-0.000002,
0.026779,0.998891,-0.038728,0.027336,0.997431,-0.066210,-0.000000,0.073296,-0.997310,-0.000000,0.073296,-0.997310,
-0.000000,0.248211,-0.968706,-0.000000,0.248211,-0.968706,0.000000,0.773011,-0.634393,0.000000,0.773011,-0.634393,
0.000000,0.773011,-0.634393,0.000000,0.773011,-0.634393,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,
-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,-0.954225,-0.015176,-0.298703,-0.954225,-0.015192,-0.298703,
-0.954225,-0.015175,-0.298704,-0.954225,-0.015191,-0.298703,0.000000,0.168821,-0.985647,0.000000,0.168821,-0.985647,
0.000000,0.168821,-0.985647,0.000000,0.168821,-0.985647
}
LayerElementUV: 0 {
Version: 101
Name: "UVMap"
MappingInformationType: "ByPolygonVertex"
ReferenceInformationType: "IndexToDirect"
UV: 0.172399,0.305599,0.772800,0.159299,0.192399,0.936100,0.191699,0.997900,0.180199,0.936200,0.218799,0.859499,
0.147300,0.856199,0.549300,0.266600,0.178599,0.591499,0.035599,0.000500,0.237599,0.634400,0.060400,0.560000,
0.040500,0.019200,0.772199,0.079999,0.219300,0.155900,0.191300,0.686900,0.229699,0.971099,0.040500,0.095799,
0.178599,0.679799,0.030013,0.448797,0.172399,0.669799,0.203999,0.714800,0.197799,0.221399,0.176699,0.997699,
0.040500,0.000500,0.160899,0.000500,0.996800,0.880500,0.318300,0.094899,0.234599,0.910000,0.958400,0.098800,
0.178599,0.447699,0.970799,0.730199,0.980700,0.997799,0.964399,0.907000,0.991599,0.863600,0.060400,0.633899,
0.046000,0.050900,0.853299,0.014899,0.764100,0.204199,0.681200,0.194499,0.362500,0.062899,0.231900,0.697899,
0.231900,0.714800,0.335099,0.089100,0.035599,0.046300,0.657601,0.105683,0.418300,0.357199,0.178599,0.041000,
0.028300,0.582400,0.549300,0.194600,0.040500,0.122500,0.169499,0.973800,0.682200,0.167699,0.876999,0.031599,
0.749100,0.213899,0.717400,0.203099,0.777800,0.179499,0.202600,0.145600,0.040500,0.059200,0.738371,0.124018,
0.066500,0.591499,0.318300,0.082999,0.657601,0.035983,0.172399,0.679799,0.072599,0.888700,0.978500,0.997900,
0.584599,0.266600,0.234599,0.934499,0.234599,0.894500,0.234599,0.997699,0.965799,0.912899,0.200299,0.307700,
0.696799,0.154499,0.466893,0.255240,0.991599,0.859399,0.040500,0.046300,0.066500,0.689999,0.060400,0.816999,
0.010300,0.708400,0.010300,0.792599,0.010300,0.859600,0.738371,0.096718,0.178599,0.221399,0.741199,0.174300,
0.141699,0.859000,0.035599,0.082999,0.687300,0.161899,0.323500,0.088600,0.060400,0.372000,0.335099,0.045099,
0.362500,0.045099,0.035599,0.019200,0.037200,0.702899,0.047200,0.044700,0.148300,0.837499,0.234899,0.645699,
0.172399,0.509500,0.676400,0.147300,0.234599,0.921599,0.741400,0.215599,0.461193,0.257040,0.993099,0.985599,
0.991599,0.877099,0.093800,0.864700,0.035599,0.124799,0.204699,0.444499,0.229699,0.910000,0.840600,0.099899,
0.499900,0.266600,0.716600,0.270799,0.362500,0.036100,0.362500,0.109099,0.066500,0.041000,0.002714,0.399097,
0.002714,0.405596,0.002714,0.387197,0.002714,0.393196,0.002714,0.380696,0.002714,0.413597,0.002714,0.426897,
0.002714,0.420696,0.002714,0.375197,0.178599,0.305599,0.018699,0.529999,0.018699,0.595099,0.018699,0.599399,
0.192800,0.812300,0.152999,0.842400,0.203999,0.688700,0.953499,0.182799,0.169499,0.991599,0.169499,0.986000,
0.963299,0.182799,0.215100,0.117899,0.879199,0.101499,0.989600,0.889100,0.984700,0.889100,0.978500,0.911899,
0.234599,0.971099,0.215100,0.212999,0.178599,0.689999,0.998000,0.730199,0.331200,0.333099,0.396400,0.356599,
0.997600,0.806999,0.120099,0.844900,0.071599,0.881200,0.716600,0.213899,0.716771,0.124018,0.238299,0.620800,
0.171800,0.981199,0.348399,0.333099,0.385100,0.340000,0.360199,0.336299,0.144299,0.842499,0.040500,0.124799,
0.040500,0.082999,0.066500,0.679799,0.066500,0.447699,0.000500,0.512399,0.060400,0.509500,0.066500,0.817300,
0.000500,0.792599,0.000500,0.708400,0.000500,0.859600,0.000500,0.586000,0.000500,0.552799,0.220899,0.666599,
0.000500,0.620899,0.509894,0.272440,0.577499,0.266600,0.035599,0.034699,0.752600,0.151600,0.318399,0.360000,
0.982599,0.897800,0.998000,0.985599,0.996800,0.868399,0.229699,0.921599,0.217299,0.217199,0.744270,0.096718,
0.723870,0.096718,0.710470,0.124018,0.688670,0.124018,0.951300,0.179700,0.682200,0.086099,0.164399,0.997799,
0.231900,0.752900,0.333900,0.338400,0.066500,0.305599,0.630200,0.122599,0.030013,0.405596,0.030013,0.387197,
0.030013,0.420696,0.030013,0.375197,0.030013,0.399097,0.030013,0.393196,0.030013,0.413597,0.030013,0.380696,
0.030013,0.426897,0.169499,0.981700,0.871800,0.022900,0.296499,0.353899,0.716600,0.349999,0.234599,0.958199,
0.989600,0.855799,0.984700,0.855799,0.767300,0.135499,0.375299,0.333200,0.047499,0.828800,0.466893,0.249339,
0.456994,0.261939,0.457993,0.251839,0.066500,0.669799,0.060400,0.679799,0.060400,0.447699,0.066500,0.509500,
0.066500,0.633899,0.210500,0.582300,0.731871,0.124018,0.229699,0.934499,0.229699,0.958199,0.229699,0.894500,
0.229699,0.997699,0.362500,0.080300,0.188800,0.815100,0.387100,0.347799,0.182300,0.997500,0.472593,0.257139,
0.482494,0.275840,0.032999,0.548099,0.654401,0.035882,0.335099,0.054400,0.362500,0.054400,0.035599,0.059200,
0.193000,0.050900,0.650302,0.042882,0.034099,0.444499,0.030600,0.888700,0.871800,0.034899,0.172399,0.633899,
0.203999,0.679600,0.032600,0.501500,0.778100,0.167699,0.951300,0.186499,0.989600,0.810400,0.984700,0.810400,
0.178599,0.560000,0.178599,0.816999,0.323500,0.074699,0.998000,0.736100,0.390799,0.353799,0.993099,0.930299,
0.475193,0.251740,0.476694,0.262039,0.218799,0.754899,0.060400,0.669799,0.194499,0.808399,0.229499,0.217199,
0.731999,0.216000,0.750271,0.124018,0.101099,0.860400,0.876999,0.013899,0.951300,0.161500,0.231900,0.679600,
0.767300,0.079999,0.164399,0.977699,0.350899,0.348500,0.076700,0.862900,0.108300,0.851599,0.764900,0.086099,
0.029699,0.881200,0.002714,0.448797,0.001200,0.634500,0.003899,0.645799,0.206100,0.501500,0.035599,0.070100,
0.953499,0.098800,0.178599,0.669799,0.648202,0.104783,0.963299,0.098800,0.154499,0.832099,0.335099,0.080300,
0.418300,0.350499,0.483994,0.265939,0.908399,0.171399,0.172399,0.372000,0.676800,0.200200,0.871800,0.013899,
0.329699,0.343400,0.324999,0.338499,0.380899,0.335099,0.366299,0.329800,0.145799,0.846300,0.150999,0.850099,
0.203999,0.697899,0.203999,0.672299,0.203999,0.732900,0.203999,0.752900,0.169499,0.997900,0.766300,0.184900,
0.172399,0.560000,0.172399,0.817300,0.205799,0.548099,0.172399,0.136500,0.172399,0.591499,0.676699,0.180999,
0.775600,0.160500,0.176699,0.981199,0.078199,0.000500,0.172399,0.041000,0.853299,0.076300,0.234599,0.945399,
0.162799,0.829699,0.365399,0.339899,0.988099,0.738300,0.980700,0.902700,0.756671,0.124018,0.762271,0.124018,
0.061599,0.853399,0.137700,0.823300,0.172399,0.221399,0.119800,0.852900,0.323500,0.094899,0.724600,0.211799,
0.842800,0.150000,0.231900,0.672299,0.588500,0.201000,0.157199,0.837400,0.449894,0.265439,0.451793,0.258340,
0.005400,0.708400,0.005400,0.792599,0.005400,0.859600,0.971817,0.014069,0.999018,0.014069,0.871800,0.028500,
0.758199,0.211500,0.833299,0.142599,0.172399,0.447699,0.998000,0.998000,0.178599,0.509500,0.705399,0.196500,
0.970799,0.736100,0.392300,0.343899,0.991199,0.738099,0.067599,0.860599,0.996299,0.978500,0.982599,0.824299,
0.901000,0.186499,0.318300,0.088600,0.177900,0.838599,0.687500,0.174300,0.965799,0.974300,0.871800,0.017999,
0.754400,0.148599,0.231900,0.688600,0.060400,0.041000,0.389800,0.335099,0.060400,0.305599,0.833700,0.059300,
0.838599,0.059300,0.050299,0.815100,0.043299,0.136500,0.059099,0.834100,0.050299,0.836000,0.964961,0.019104,
0.969861,0.019104,0.584599,0.194600,0.958400,0.182799,0.223700,0.754899,0.223700,0.859499,0.969861,0.031503,
0.964961,0.031503,0.349500,0.343199,0.296499,0.360300,0.324000,0.357199,0.383500,0.329699,0.398299,0.350499,
0.995400,0.745100,0.997699,0.881699,0.478693,0.269839,0.991599,0.868399,0.682200,0.093400,0.060400,0.689999,
0.066500,0.560000,0.084100,0.823300,0.035599,0.141299,0.756671,0.096718,0.762271,0.096718,0.229699,0.945399,
0.771799,0.174300,0.051500,0.041000,0.901000,0.179700,0.951200,0.163900,0.228699,0.155399,0.093900,0.817900,
0.187600,0.041000,0.876999,0.017999,0.644599,0.270799,0.164399,0.991599,0.164399,0.986000,0.345200,0.338299,
0.358300,0.343400,0.006399,0.610000,0.335099,0.071199,0.362500,0.071199,0.231900,0.706499,0.203999,0.706499,
0.172800,0.842199,0.179800,0.845700,0.168500,0.837300,0.174199,0.847500,0.171700,0.832099,0.139799,0.852900,
0.197500,0.097000,0.775099,0.186700,0.162799,0.835600,0.339500,0.336600,0.363900,0.345200,0.084499,0.864499,
0.988200,0.808000,0.764900,0.093400,0.644599,0.213899,0.499900,0.194600,0.171800,0.997699,0.119800,0.859600,
0.356499,0.346700,0.455594,0.267239,0.040500,0.141299,0.574699,0.122599,0.638499,0.095700,0.035599,0.095799,
0.335099,0.062899,0.951300,0.101499,0.318300,0.078800,0.035599,0.122500,0.318300,0.070799,0.566399,0.095700,
0.323500,0.082999,0.066500,0.221399,0.172399,0.689999,0.587899,0.128900,0.876999,0.022900,0.362500,0.089100,
0.234599,0.875699,0.777100,0.135499,0.231000,0.658399,0.354600,0.339599,0.322499,0.347299,0.994400,0.740599,
0.777499,0.163499,0.007899,0.658500,0.750271,0.096718,0.840600,0.013899,0.231900,0.732900,0.879199,0.161500,
0.047600,0.686999,0.489994,0.272539,0.651201,0.038383,0.066500,0.372000,0.958400,0.013899,0.953499,0.013899,
0.833700,0.013899,0.838599,0.013899,0.777100,0.013899,0.772199,0.013899,0.963299,0.013899,0.879199,0.013899,
0.951300,0.013899,0.767300,0.013899,0.203999,0.723900,0.577499,0.194600,0.838599,0.092600,0.833700,0.092600,
0.145099,0.817900,0.996800,0.874100,0.644599,0.349999,0.178599,0.633899,0.509993,0.278840,0.993099,0.998000,
0.950299,0.171399,0.066500,0.136500,0.731871,0.096718,0.909300,0.163900,0.232400,0.609899,0.046199,0.812399,
0.231900,0.723900,0.777100,0.079999,0.199799,0.193800,0.201700,0.702799,0.716771,0.096718,0.375299,0.327300,
0.481394,0.257139,0.040500,0.034699,0.044599,0.669799,0.335099,0.028699,0.362500,0.028699,0.638499,0.031500,
0.566399,0.031500,0.035900,0.376500,0.041099,0.221399,0.038499,0.307599,0.191799,0.044700,0.053500,0.823300,
0.220100,0.599399,0.195700,0.136500,0.202900,0.376500,0.044500,0.808499,0.335099,0.036100,0.335099,0.109099,
0.772199,0.135499,0.327699,0.351099,0.316500,0.353899,0.369599,0.335000,0.964399,0.841899,0.982599,0.864700,
0.488093,0.278639,0.996800,0.863600,0.060400,0.136500,0.060400,0.591499,0.710470,0.096718,0.229699,0.875699,
0.751999,0.155699,0.757200,0.147400,0.744270,0.124018,0.723870,0.124018,0.688670,0.096718,0.228599,0.754899,
0.228599,0.859499,0.178599,0.372000,0.676199,0.128800,0.847899,0.155799,0.339500,0.330700,0.999018,0.019969,
0.971817,0.019969,0.194299,0.669799,0.040500,0.070100,0.060400,0.221399,0.017999,0.666700,0.996800,0.859399,
0.178599,0.136500
UVIndex: 409,411,408,350,412,350,408,410,413,292,293,6,292,94,127,293,280,312,416,327,94,280,327,127,312,412,410,416,413,6,84,321,413,84,425,89,508,110,90,281,223,443,43,432,231,232,40,231,89,90,232,404,405,223,281,508,495,496,110,406,407,294,41,42,
21,407,406,41,294,128,355,355,128,240,263,263,240,295,325,42,486,470,21,170,7,49,471,404,432,40,405,398,422,147,109,134,467,468,433,66,170,471,367,296,454,186,297,430,189,429,437,497,430,437,498,530,97,441,286,326,305,441,97,305,326,486,454,296,
470,509,43,443,111,455,134,433,262,7,108,423,49,476,398,109,202,389,219,67,311,220,203,138,16,177,98,67,219,87,322,27,349,359,360,472,473,444,68,221,521,389,311,203,220,106,28,98,177,460,29,276,461,462,463,360,359,330,331,162,163,464,487,13,
465,331,332,164,162,29,368,129,276,106,221,68,28,13,487,445,510,87,349,61,438,69,222,16,138,248,438,61,434,434,436,248,204,135,136,205,330,78,79,331,536,275,233,58,9,24,12,91,493,171,91,12,331,79,80,332,279,29,460,466,185,399,130,298,
75,58,233,44,536,156,85,275,156,17,431,85,400,131,130,399,493,75,44,171,469,465,13,264,29,279,132,368,244,204,205,245,13,510,206,264,435,431,17,50,265,51,199,265,199,131,400,257,178,14,394,45,278,235,62,390,299,83,83,54,99,83,258,323,
299,336,54,83,336,299,38,83,323,55,83,99,258,337,324,531,415,299,390,56,488,57,133,139,62,458,230,62,235,458,522,354,523,522,172,354,337,531,522,523,165,166,123,124,166,159,123,83,55,341,351,351,341,39,65,352,70,137,133,57,414,59,218,482,
81,259,524,179,452,316,259,452,387,218,525,180,482,524,59,81,179,490,148,181,520,383,213,157,76,537,518,481,439,113,194,190,114,115,191,195,116,117,197,191,115,114,190,196,118,116,195,194,113,198,119,120,192,214,158,215,160,148,490,180,525,192,120,118,
196,121,193,197,117,387,388,317,316,535,18,277,15,18,535,535,477,95,446,76,161,77,383,277,477,535,10,477,149,95,477,10,484,477,504,149,477,484,446,167,535,451,494,538,0,285,459,188,540,47,234,505,277,20,239,477,18,63,20,277,88,459,158,214,
30,340,96,338,82,320,303,540,122,0,320,82,246,8,304,300,0,122,529,285,63,440,76,157,529,30,338,285,274,340,30,105,340,246,300,96,20,63,157,212,239,20,212,216,304,239,216,60,300,304,60,384,96,300,384,215,338,96,215,158,285,338,158,459,
320,0,188,439,303,320,439,481,440,140,247,301,76,395,161,520,181,182,526,271,119,198,19,140,440,63,18,247,126,224,247,256,126,456,213,383,302,246,340,274,217,8,246,302,105,30,529,506,48,229,11,519,304,8,477,239,504,477,8,217,506,529,122,71,
122,82,22,71,82,540,505,22,489,140,15,236,499,88,214,15,140,18,494,255,213,213,255,212,157,456,494,213,272,168,35,273,272,35,403,125,35,168,403,35,494,451,273,35,92,456,383,92,383,77,507,77,361,485,358,537,439,188,160,215,384,11,11,384,
60,519,188,459,88,358,255,35,216,212,60,216,35,519,537,500,362,518,358,501,500,537,241,236,214,160,125,48,519,35,229,241,160,11,25,309,112,308,499,501,358,88,255,494,35,518,356,112,481,356,93,391,47,396,502,47,502,234,309,303,481,112,540,303,
309,47,518,362,36,356,356,36,93,140,489,256,247,77,485,507,301,474,440,395,76,440,474,426,266,373,447,342,31,141,249,447,373,401,151,142,187,288,289,151,401,417,532,532,417,187,142,289,288,511,448,512,173,374,201,375,512,448,511,512,375,173,357,152,
290,376,313,418,402,153,291,513,313,153,491,207,513,291,376,290,207,491,343,225,152,357,143,377,282,46,250,225,343,377,377,143,250,533,534,333,334,52,72,1,242,314,344,449,314,449,378,345,318,363,72,52,86,364,208,503,363,242,306,450,2,3,226,4,
346,32,315,251,363,385,267,345,385,419,267,385,103,419,385,268,260,385,260,103,503,385,363,420,314,378,144,242,1,306,174,33,514,515,319,154,145,515,514,347,385,319,145,268,315,379,251,107,453,37,310,209,252,227,73,252,492,253,227,328,329,210,427,211,
209,73,100,329,211,100,210,492,283,380,253,283,457,228,380,457,516,228,457,169,478,516,146,64,237,270,424,150,307,23,104,155,428,386,479,101,175,339,254,369,370,5,353,397,442,200,238,335,53,200,442,53,335,287,261,397,353,517,176,381,34,539,517,34,
74,176,475,381,102,381,475,26,102,475,369,527,528,370,371,372,365,366,392,183,243,348,480,284,483,393,382,184,269,421
}
LayerElementTexture: 0 {
Version: 101
Name: ""
MappingInformationType: "NoMappingInformation"
ReferenceInformationType: "IndexToDirect"
BlendMode: "Translucent"
TextureAlpha: 1
TextureId:
}
LayerElementMaterial: 0 {
Version: 101
Name: ""
MappingInformationType: "AllSame"
ReferenceInformationType: "IndexToDirect"
Materials: 0
}
Layer: 0 {
Version: 100
LayerElement: {
Type: "LayerElementNormal"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementUV"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementTexture"
TypedIndex: 0
}
LayerElement: {
Type: "LayerElementMaterial"
TypedIndex: 0
}
}
}
Material: "Material::unnamed", "" {
Version: 102
ShadingModel: "phong"
MultiLayer: 0
Properties60: {
Property: "ShadingModel", "KString", "", "Phong"
Property: "MultiLayer", "bool", "",0
Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000
Property: "EmissiveFactor", "double", "",0.0000
Property: "AmbientColor", "ColorRGB", "",1.0000,1.0000,1.0000
Property: "AmbientFactor", "double", "",1.0000
Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
Property: "DiffuseFactor", "double", "",0.8000
Property: "Bump", "Vector3D", "",0,0,0
Property: "TransparentColor", "ColorRGB", "",1,1,1
Property: "TransparencyFactor", "double", "",0.0000
Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000
Property: "SpecularFactor", "double", "",0.5000
Property: "ShininessExponent", "double", "",12.3
Property: "ReflectionColor", "ColorRGB", "",0,0,0
Property: "ReflectionFactor", "double", "",1
Property: "Emissive", "ColorRGB", "",0,0,0
Property: "Ambient", "ColorRGB", "",1.0,1.0,1.0
Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8
Property: "Specular", "ColorRGB", "",1.0,1.0,1.0
Property: "Shininess", "double", "",12.3
Property: "Opacity", "double", "",1.0
Property: "Reflectivity", "double", "",0
}
}
Pose: "Pose::BIND_POSES", "BindPose" {
Type: "BindPose"
Version: 100
Properties60: {
}
NbPoseNodes: 4
PoseNode: {
Node: "Model::m61_ring"
Matrix: 0.000000075497901,0.000000000000000,-1.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000,-0.000000075497901,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.087882995605469,5.224352359771729,0.657974720001221,1.000000000000000
}
PoseNode: {
Node: "Model::m61_body"
Matrix: 0.000000075497901,0.000000000000000,-1.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000,-0.000000075497901,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,1.271010875701904,1.102776527404785,-0.686053872108459,1.000000000000000
}
PoseNode: {
Node: "Model::m61_pin"
Matrix: 0.000000075497901,0.000000000000000,-1.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000,-0.000000075497901,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.087882995605469,5.224352359771729,0.657974720001221,1.000000000000000
}
PoseNode: {
Node: "Model::m61_handle"
Matrix: 0.000000075497901,0.000000000000000,-1.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000,-0.000000075497901,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,1.095244765281677,5.925450325012207,-1.999263167381287,1.000000000000000
}
}
GlobalSettings: {
Version: 1000
Properties60: {
Property: "UpAxis", "int", "",1
Property: "UpAxisSign", "int", "",1
Property: "FrontAxis", "int", "",2
Property: "FrontAxisSign", "int", "",1
Property: "CoordAxis", "int", "",0
Property: "CoordAxisSign", "int", "",1
Property: "UnitScaleFactor", "double", "",1
}
}
}
; Object relations
;------------------------------------------------------------------
Relations: {
Model: "Model::m61_ring", "Mesh" {
}
Model: "Model::m61_body", "Mesh" {
}
Model: "Model::m61_pin", "Mesh" {
}
Model: "Model::m61_handle", "Mesh" {
}
Model: "Model::Producer Perspective", "Camera" {
}
Model: "Model::Producer Top", "Camera" {
}
Model: "Model::Producer Bottom", "Camera" {
}
Model: "Model::Producer Front", "Camera" {
}
Model: "Model::Producer Back", "Camera" {
}
Model: "Model::Producer Right", "Camera" {
}
Model: "Model::Producer Left", "Camera" {
}
Model: "Model::Camera Switcher", "CameraSwitcher" {
}
Material: "Material::unnamed", "" {
}
}
; Object connections
;------------------------------------------------------------------
Connections: {
Connect: "OO", "Model::m61_ring", "Model::Scene"
Connect: "OO", "Model::m61_body", "Model::Scene"
Connect: "OO", "Model::m61_pin", "Model::Scene"
Connect: "OO", "Model::m61_handle", "Model::Scene"
Connect: "OO", "Material::unnamed", "Model::m61_ring"
Connect: "OO", "Material::unnamed", "Model::m61_body"
Connect: "OO", "Material::unnamed", "Model::m61_pin"
Connect: "OO", "Material::unnamed", "Model::m61_handle"
}
;Takes and animation section
;----------------------------------------------------
Takes: {
Current: "Default Take"
Take: "Default Take" {
FileName: "Default_Take.tak"
LocalTime: 0,479181389250
ReferenceTime: 0,479181389250
;Models animation
;----------------------------------------------------
Model: "Model::m61_ring" {
Version: 1.1
Channel: "Transform" {
Channel: "T" {
Channel: "X" {
Default: 0.087882995605469
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.087882995605469,L
Color: 1,0,0
}
Channel: "Y" {
Default: 5.224352359771729
KeyVer: 4005
KeyCount: 1
Key:
1924423250,5.224352359771729,L
Color: 0,1,0
}
Channel: "Z" {
Default: 0.657974720001221
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.657974720001221,L
Color: 0,0,1
}
LayerType: 1
}
Channel: "R" {
Channel: "X" {
Default: -90.000002504348856
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-90.000002504348856,L
Color: 1,0,0
}
Channel: "Y" {
Default: -0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-0.000000000000000,L
Color: 0,1,0
}
Channel: "Z" {
Default: 0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.000000000000000,L
Color: 0,0,1
}
LayerType: 2
}
Channel: "S" {
Channel: "X" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 1,0,0
}
Channel: "Y" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 0,1,0
}
Channel: "Z" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 0,0,1
}
LayerType: 3
}
}
}
Model: "Model::m61_body" {
Version: 1.1
Channel: "Transform" {
Channel: "T" {
Channel: "X" {
Default: 1.271010875701904
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.271010875701904,L
Color: 1,0,0
}
Channel: "Y" {
Default: 1.102776527404785
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.102776527404785,L
Color: 0,1,0
}
Channel: "Z" {
Default: -0.686053872108459
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-0.686053872108459,L
Color: 0,0,1
}
LayerType: 1
}
Channel: "R" {
Channel: "X" {
Default: -90.000002504348856
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-90.000002504348856,L
Color: 1,0,0
}
Channel: "Y" {
Default: -0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-0.000000000000000,L
Color: 0,1,0
}
Channel: "Z" {
Default: 0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.000000000000000,L
Color: 0,0,1
}
LayerType: 2
}
Channel: "S" {
Channel: "X" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 1,0,0
}
Channel: "Y" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 0,1,0
}
Channel: "Z" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 0,0,1
}
LayerType: 3
}
}
}
Model: "Model::m61_pin" {
Version: 1.1
Channel: "Transform" {
Channel: "T" {
Channel: "X" {
Default: 0.087882995605469
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.087882995605469,L
Color: 1,0,0
}
Channel: "Y" {
Default: 5.224352359771729
KeyVer: 4005
KeyCount: 1
Key:
1924423250,5.224352359771729,L
Color: 0,1,0
}
Channel: "Z" {
Default: 0.657974720001221
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.657974720001221,L
Color: 0,0,1
}
LayerType: 1
}
Channel: "R" {
Channel: "X" {
Default: -90.000002504348856
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-90.000002504348856,L
Color: 1,0,0
}
Channel: "Y" {
Default: -0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-0.000000000000000,L
Color: 0,1,0
}
Channel: "Z" {
Default: 0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.000000000000000,L
Color: 0,0,1
}
LayerType: 2
}
Channel: "S" {
Channel: "X" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 1,0,0
}
Channel: "Y" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 0,1,0
}
Channel: "Z" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 0,0,1
}
LayerType: 3
}
}
}
Model: "Model::m61_handle" {
Version: 1.1
Channel: "Transform" {
Channel: "T" {
Channel: "X" {
Default: 1.095244765281677
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.095244765281677,L
Color: 1,0,0
}
Channel: "Y" {
Default: 5.925450325012207
KeyVer: 4005
KeyCount: 1
Key:
1924423250,5.925450325012207,L
Color: 0,1,0
}
Channel: "Z" {
Default: -1.999263167381287
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-1.999263167381287,L
Color: 0,0,1
}
LayerType: 1
}
Channel: "R" {
Channel: "X" {
Default: -90.000002504348856
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-90.000002504348856,L
Color: 1,0,0
}
Channel: "Y" {
Default: -0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,-0.000000000000000,L
Color: 0,1,0
}
Channel: "Z" {
Default: 0.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,0.000000000000000,L
Color: 0,0,1
}
LayerType: 2
}
Channel: "S" {
Channel: "X" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 1,0,0
}
Channel: "Y" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 0,1,0
}
Channel: "Z" {
Default: 1.000000000000000
KeyVer: 4005
KeyCount: 1
Key:
1924423250,1.000000000000000,L
Color: 0,0,1
}
LayerType: 3
}
}
}
}
}
;Version 5 settings
;------------------------------------------------------------------
Version5: {
AmbientRenderSettings: {
Version: 101
AmbientLightColor: 0.0,0.0,0.0,0
}
FogOptions: {
FogEnable: 0
FogMode: 0
FogDensity: 0.000
FogStart: 5.000
FogEnd: 25.000
FogColor: 0.1,0.1,0.1,1
}
Settings: {
FrameRate: "24"
TimeFormat: 1
SnapOnFrames: 0
ReferenceTimeIndex: -1
TimeLineStartTime: 0
TimeLineStopTime: 479181389250
}
RendererSetting: {
DefaultCamera: "Producer Perspective"
DefaultViewingMode: 0
}
}