Socialify

Folder ..

Viewing king.fbx
2251 lines (2240 loc) • 260.8 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
; FBX 6.1.0 project file
; Created by Blender FBX Exporter
; for support mail: [email protected]
; ----------------------------------------------------

FBXHeaderExtension:  {
	FBXHeaderVersion: 1003
	FBXVersion: 6100
	CreationTimeStamp:  {
		Version: 1000
		Year: 2013
		Month: 06
		Day: 05
		Hour: 03
		Minute: 13
		Second: 46
		Millisecond: 0
	}
	Creator: "FBX SDK/FBX Plugins build 20070228"
	OtherFlags:  {
		FlagPLE: 0
	}
}
CreationTime: "2013-06-05 03:13:46:000"
Creator: "Blender version 2.64 (sub 0)"

; Object definitions
;------------------------------------------------------------------

Definitions:  {
	Version: 100
	Count: 8
	ObjectType: "Model" {
		Count: 1
	}
	ObjectType: "Geometry" {
		Count: 1
	}
	ObjectType: "Material" {
		Count: 2
	}
	ObjectType: "Texture" {
		Count: 2
	}
	ObjectType: "Video" {
		Count: 2
	}
	ObjectType: "Pose" {
		Count: 1
	}
	ObjectType: "GlobalSettings" {
		Count: 1
	}
}

; Object properties
;------------------------------------------------------------------

Objects:  {
	Model: "Model::Cube_002", "Mesh" {
		Version: 232
		Properties60:  {
			Property: "QuaternionInterpolate", "bool", "",0
			Property: "Visibility", "Visibility", "A+",1
			Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
			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.630661,0.261228,0.366666,-0.655541,0.271534,0.328840,-0.684763,-0.000000,0.366666,-0.484200,0.484201,0.366666,-0.261228,0.630661,0.366667,-0.271534,0.655541,0.328840,0.000000,0.684763,0.366667
		,0.261228,0.630661,0.366667,0.271534,0.655541,0.328840,0.250250,0.617573,0.374475,0.467206,0.467206,0.374475,0.484200,0.484201,0.366667,0.630661,0.261228,0.366667,0.655541,0.271534,0.328840
		,0.684763,-0.000000,0.366667,0.630661,-0.261228,0.366667,0.655541,-0.271534,0.328840,0.617573,-0.250250,0.374475,0.467206,-0.467206,0.374475,0.484200,-0.484201,0.366667,0.261228,-0.630661,0.366667
		,0.271534,-0.655541,0.328840,0.000000,-0.684763,0.366667,-0.630661,-0.261228,0.366667,-0.655541,-0.271534,0.328840,-0.484200,-0.484200,0.366667,-0.261228,-0.630661,0.366667,-0.271534,-0.655541,0.328840
		,-0.250250,-0.617573,0.374475,-0.467206,-0.467206,0.374475,0.274969,-0.663834,0.282027,0.271534,-0.655541,0.239708,0.503302,-0.503303,0.239708,0.509670,-0.509670,0.282027,0.503302,-0.503303,0.328840
		,0.000000,-0.711777,0.328840,0.000000,-0.720782,0.282027,0.000000,-0.711777,0.239707,0.663834,-0.274969,0.282027,0.655541,-0.271534,0.239708,0.711777,-0.000000,0.239708,0.720782,-0.000000,0.282027
		,0.711777,-0.000000,0.328840,-0.261228,0.630661,0.215360,-0.254358,0.614074,0.200000,-0.471466,0.471466,0.200000,-0.484200,0.484201,0.215360,-0.271534,0.655541,0.239707,0.000000,0.684763,0.215360
		,0.000000,0.666753,0.200000,-0.274969,0.663834,0.282027,-0.503303,0.503303,0.239707,-0.509670,0.509670,0.282027,-0.503303,0.503303,0.328840,0.000000,0.711777,0.328840,0.000000,0.720782,0.282027
		,0.000000,0.711777,0.239707,-0.261228,-0.630661,0.215361,-0.254358,-0.614074,0.200000,0.000000,-0.666753,0.200000,0.000000,-0.684763,0.215361,-0.271534,-0.655541,0.239708,-0.484200,-0.484200,0.215360
		,-0.471466,-0.471466,0.200000,0.274969,0.663834,0.282027,0.271534,0.655541,0.239707,0.503302,0.503303,0.328840,0.509670,0.509670,0.282027,0.503303,0.503303,0.239707,-0.630661,0.261228,0.215360
		,-0.614074,0.254358,0.200000,-0.666753,-0.000000,0.200000,-0.684763,-0.000000,0.215360,-0.655541,0.271534,0.239707,0.663834,0.274969,0.282027,0.655541,0.271534,0.239707,-0.663834,-0.274969,0.282027
		,-0.655541,-0.271534,0.239707,-0.503303,-0.503302,0.239707,-0.509670,-0.509670,0.282027,-0.503303,-0.503303,0.328840,-0.711777,-0.000000,0.328840,-0.720782,-0.000000,0.282027,-0.711777,-0.000000,0.239707
		,0.261228,0.630661,0.215360,0.254358,0.614074,0.200000,0.484200,0.484200,0.215360,0.471466,0.471466,0.200000,0.261228,-0.630661,0.215361,0.254358,-0.614074,0.200000,0.471466,-0.471466,0.200000
		,0.484200,-0.484201,0.215361,-0.663834,0.274969,0.282027,0.630661,-0.261228,0.215361,0.614074,-0.254358,0.200000,0.666753,-0.000000,0.200000,0.684763,-0.000000,0.215361,-0.274969,-0.663834,0.282027
		,0.630661,0.261228,0.215361,0.614074,0.254358,0.200000,-0.630661,-0.261228,0.215360,-0.614074,-0.254358,0.200000,-0.617573,0.250250,0.374475,-0.467206,0.467206,0.374475,0.617573,0.250250,0.374475
		,0.250250,-0.617573,0.374475,-0.617573,-0.250250,0.374475,-0.250250,0.617574,0.374475,0.676110,-0.000000,0.374475,0.000000,-0.676110,0.374475,-0.676110,-0.000000,0.374475,0.000000,0.676110,0.374475
		,0.000000,-0.000000,2.135787,0.025957,-0.000000,2.127135,0.019227,0.092295,2.120405,0.000000,-0.000000,2.135787,0.000000,0.124598,2.127135,-0.019228,0.092295,2.120405,-0.025958,-0.000000,2.127135
		,-0.019228,-0.092294,2.120405,0.000000,-0.124597,2.127135,0.019227,-0.092294,2.120405,-0.034610,-0.000000,2.101177,-0.034610,-0.000000,2.101177,-0.025958,0.124598,2.101177,-0.019228,0.092295,2.081950
		,-0.025958,-0.000000,2.075220,-0.019228,-0.092294,2.081950,-0.025958,-0.124597,2.101177,0.000000,-0.000000,2.066567,0.000000,-0.000000,2.066567,0.000000,0.124598,2.075220,0.019227,0.092295,2.081950
		,0.025957,-0.000000,2.075220,0.019227,-0.092294,2.081950,0.000000,-0.124597,2.075220,0.034610,-0.000000,2.101177,0.034610,-0.000000,2.101177,0.025957,0.124598,2.101177,0.025957,-0.124597,2.101177
		,0.000000,-0.166130,2.101177,0.025957,-0.124597,2.101177,0.000000,-0.166130,2.101177,0.000000,-0.124597,2.127135,0.000000,-0.166130,2.101177,-0.025958,-0.124597,2.101177,0.000000,-0.166130,2.101177
		,0.000000,-0.124597,2.075220,0.000000,0.166131,2.101177,0.025957,0.124598,2.101177,0.000000,0.166131,2.101177,0.000000,0.124598,2.075220,0.000000,0.166131,2.101177,-0.025958,0.124598,2.101177
		,0.000000,0.166131,2.101177,0.000000,0.124598,2.127135,0.000000,-0.034610,2.056817,0.025958,-0.025957,2.056817,0.019228,-0.019227,2.182730,0.000000,-0.034610,2.056817,0.000000,-0.025957,2.226799
		,-0.019229,-0.019227,2.182730,-0.025958,-0.025957,2.056817,-0.019228,-0.019227,1.930904,0.000000,-0.025957,1.886835,0.019228,-0.019227,1.930905,-0.034611,-0.000000,2.056817,-0.034611,-0.000000,2.056817
		,-0.025958,-0.000000,2.226799,-0.019229,0.019228,2.182730,-0.025958,0.025958,2.056817,-0.019228,0.019228,1.930904,-0.025958,-0.000000,1.886835,0.000000,0.034610,2.056817,0.000000,0.034610,2.056817
		,0.000000,0.025958,2.226799,0.019228,0.019228,2.182730,0.025958,0.025958,2.056817,0.019228,0.019228,1.930905,0.000000,0.025958,1.886835,0.034610,-0.000000,2.056817,0.034610,-0.000000,2.056817
		,0.025957,-0.000000,2.226799,0.025958,-0.000000,1.886835,0.000000,-0.000000,1.830174,0.025958,-0.000000,1.886835,0.000000,-0.000000,1.830174,0.000000,-0.025957,1.886835,0.000000,-0.000000,1.830174
		,-0.025958,-0.000000,1.886835,0.000000,-0.000000,1.830174,0.000000,0.025958,1.886835,0.000000,-0.000000,2.283460,0.025957,-0.000000,2.226799,0.000000,-0.000000,2.283460,0.000000,0.025958,2.226799
		,0.000000,-0.000000,2.283460,-0.025958,-0.000000,2.226799,0.000000,-0.000000,2.283460,0.000000,-0.025957,2.226799,-0.082612,-0.199094,1.513285,-0.074112,-0.178610,1.623097,-0.137371,-0.137131,1.623097
		,0.000000,-0.216173,1.513286,0.000000,-0.193932,1.623097,-0.060476,-0.145747,1.717140,-0.044634,-0.107566,1.787016,-0.112095,-0.111899,1.717140,0.000000,-0.158250,1.717140,-0.199442,-0.082467,1.513285
		,-0.178922,-0.073982,1.623097,-0.194271,-0.000000,1.623097,-0.153125,-0.152858,1.513285,-0.146002,-0.060370,1.717140,-0.107754,-0.044555,1.787016,-0.158527,-0.000000,1.717140,-0.146002,0.060371,1.717140
		,-0.107754,0.044556,1.787016,-0.112095,0.111900,1.717140,-0.178922,0.073983,1.623097,-0.199442,0.082468,1.513285,-0.137371,0.137131,1.623097,-0.216551,-0.000000,1.513285,-0.060476,0.145747,1.717140
		,-0.044633,0.107566,1.787016,0.000000,0.158250,1.717140,-0.074112,0.178610,1.623097,-0.082612,0.199094,1.513285,0.000000,0.193933,1.623097,-0.153125,0.152858,1.513285,0.082611,0.199094,1.513285
		,0.074112,0.178610,1.623097,0.137370,0.137131,1.623097,0.000000,0.216174,1.513285,0.060475,0.145747,1.717140,0.044633,0.107566,1.787016,0.112095,0.111900,1.717140,0.199441,0.082468,1.513285
		,0.178922,0.073983,1.623097,0.194271,-0.000000,1.623097,0.153124,0.152858,1.513285,0.146001,0.060371,1.717140,0.107754,0.044556,1.787016,0.158526,-0.000000,1.717140,0.199441,-0.082467,1.513286
		,0.178922,-0.073983,1.623097,0.137370,-0.137131,1.623097,0.153124,-0.152858,1.513286,0.204273,-0.084465,1.473574,0.216551,-0.000000,1.513286,0.146001,-0.060370,1.717140,0.107754,-0.044555,1.787016
		,0.112095,-0.111899,1.717140,-0.029515,-0.071129,1.824324,0.000000,-0.066814,1.829580,-0.047328,-0.047245,1.829580,-0.080886,-0.080744,1.788330,0.000000,-0.114189,1.788330,-0.071254,-0.029462,1.824324
		,-0.066932,-0.000000,1.829580,-0.114389,-0.000000,1.788330,-0.071254,0.029463,1.824324,-0.047328,0.047245,1.829580,-0.080886,0.080745,1.788330,-0.029515,0.071130,1.824324,0.000000,0.066815,1.829580
		,0.000000,0.114190,1.788330,0.029514,0.071130,1.824324,0.047327,0.047245,1.829580,0.080885,0.080745,1.788330,0.071253,0.029463,1.824324,0.066931,-0.000000,1.829580,0.114389,-0.000000,1.788330
		,0.071253,-0.029462,1.824324,0.047327,-0.047245,1.829580,0.080885,-0.080744,1.788330,0.029514,-0.071129,1.824324,0.044633,-0.107566,1.787016,0.082611,-0.199094,1.513286,0.074112,-0.178610,1.623097
		,0.060475,-0.145747,1.717140,0.204273,0.084465,1.473574,0.084612,-0.203917,1.473574,-0.204273,-0.084465,1.473574,-0.084613,-0.203917,1.473574,0.084612,0.203917,1.473574,-0.204273,0.084465,1.473574
		,-0.084613,0.203917,1.473574,0.156834,-0.156561,1.473574,0.221797,-0.000000,1.473574,0.000000,-0.000000,1.853232,0.156834,0.156561,1.473574,0.000000,-0.221410,1.473574,-0.156834,-0.156560,1.473574
		,0.000000,0.221411,1.473574,-0.221797,-0.000000,1.473574,-0.156834,0.156561,1.473574,-0.345344,-0.287280,1.557907,-0.526526,-0.437997,1.588960,-0.346221,-0.288925,1.560012,-0.159700,-0.133274,1.495843
		,-0.269301,-0.323725,1.515936,-0.132518,-0.159293,1.463874,-0.132518,-0.159293,1.494145,-0.697975,-0.580616,1.554597,-0.838292,-0.697338,1.462044,-0.699749,-0.583940,1.556843,-0.527864,-0.440504,1.591305
		,-0.703161,-0.584930,0.525680,-0.517784,-0.430724,0.319049,-0.519099,-0.433190,0.316535,-0.704948,-0.588278,0.523908,-0.854576,-0.710884,0.732805,-0.926076,-0.770360,1.318526,-0.959832,-0.798440,1.139623
		,-0.928429,-0.774770,1.319831,-0.840422,-0.701329,1.463921,-0.938066,-0.780334,0.940918,-0.856748,-0.714953,0.731796,-0.940450,-0.784801,0.940718,-0.287283,-0.345341,1.557907,-0.288916,-0.346231,1.560012
		,-0.438000,-0.526523,1.588960,-0.410584,-0.493566,1.543235,-0.133271,-0.159704,1.495843,-0.770366,-0.926071,1.318526,-0.774744,-0.928456,1.319831,-0.798447,-0.959827,1.139623,-0.697343,-0.838287,1.462044
		,-0.701306,-0.840446,1.463921,-0.780340,-0.938061,0.940918,-0.784775,-0.940477,0.940718,-0.714929,-0.856773,0.731796,-0.584935,-0.703157,0.525680,-0.588258,-0.704969,0.523908,-0.433175,-0.519115,0.316535
		,-0.710889,-0.854572,0.732805,-0.580621,-0.697971,1.554597,-0.583920,-0.699769,1.556844,-0.544277,-0.654283,1.510419,-0.440489,-0.527879,1.591305,-0.345183,-0.290804,1.560714,-0.159221,-0.134141,1.496409
		,-0.937628,-0.789906,0.940651,-0.959384,-0.808234,1.140413,-0.962271,-0.803011,1.140215,-0.779687,-0.925767,1.320266,-0.705780,-0.838013,1.464547,-0.587645,-0.697743,1.557592,-0.443299,-0.526351,1.592086
		,-0.925643,-0.779810,1.320266,-0.837901,-0.705891,1.464547,-0.697650,-0.587738,1.557592,-0.854178,-0.719604,0.731460,-0.719490,-0.854292,0.731460,-0.702833,-0.592105,0.523317,-0.517542,-0.436007,0.315698
		,-0.435939,-0.517612,0.315698,-0.526281,-0.443369,1.592086,-0.290759,-0.345228,1.560714,-0.789781,-0.937754,0.940651,-0.134121,-0.159241,1.496409,-0.592011,-0.702927,0.523317,-0.808106,-0.959513,1.140413
		,-0.802983,-0.962299,1.140215,-0.731495,-0.879344,0.944059,-0.748468,-0.899748,1.130327,-0.659147,-0.548317,0.553514,-0.654286,-0.544273,1.510419,-0.868108,-0.722140,1.298031,-0.899752,-0.748463,1.130327
		,-0.653693,-0.785815,1.432566,-0.323727,-0.269298,1.515936,-0.493568,-0.410581,1.543235,-0.548321,-0.659144,0.553515,-0.666391,-0.801081,0.748649,-0.879348,-0.731490,0.944059,-0.785819,-0.653689,1.432566
		,-0.722145,-0.868104,1.298031,-0.801084,-0.666387,0.748648,-0.159295,-0.132516,1.494145,-0.159295,-0.132516,1.463874,-0.430728,-0.517781,0.319049,-0.487571,-0.399251,0.382193,-0.399254,-0.487569,0.382194
		,-0.287280,0.345344,1.557907,-0.437997,0.526526,1.588960,-0.288925,0.346221,1.560012,-0.133274,0.159700,1.495843,-0.323725,0.269301,1.515936,-0.159293,0.132518,1.463874,-0.159293,0.132518,1.494145
		,-0.580616,0.697975,1.554597,-0.697338,0.838292,1.462044,-0.583940,0.699749,1.556843,-0.440504,0.527864,1.591305,-0.584930,0.703161,0.525680,-0.430724,0.517784,0.319049,-0.433190,0.519099,0.316535
		,-0.588278,0.704948,0.523908,-0.710884,0.854576,0.732805,-0.770360,0.926076,1.318526,-0.798440,0.959832,1.139623,-0.774770,0.928429,1.319831,-0.701329,0.840422,1.463921,-0.780334,0.938066,0.940918
		,-0.714953,0.856748,0.731796,-0.784801,0.940450,0.940718,-0.345341,0.287283,1.557907,-0.346231,0.288916,1.560012,-0.526523,0.438000,1.588960,-0.493566,0.410584,1.543235,-0.159704,0.133271,1.495843
		,-0.926071,0.770366,1.318526,-0.928456,0.774744,1.319831,-0.959827,0.798447,1.139623,-0.838287,0.697343,1.462044,-0.840446,0.701306,1.463921,-0.938061,0.780340,0.940918,-0.940477,0.784775,0.940718
		,-0.856773,0.714929,0.731796,-0.703157,0.584935,0.525680,-0.704969,0.588258,0.523908,-0.519115,0.433175,0.316535,-0.854572,0.710889,0.732805,-0.697971,0.580621,1.554597,-0.699769,0.583920,1.556844
		,-0.654283,0.544277,1.510419,-0.527879,0.440489,1.591305,-0.290804,0.345183,1.560714,-0.134141,0.159221,1.496409,-0.789906,0.937628,0.940651,-0.808234,0.959384,1.140413,-0.803011,0.962271,1.140215
		,-0.925767,0.779687,1.320266,-0.838013,0.705780,1.464547,-0.697743,0.587645,1.557592,-0.526351,0.443299,1.592086,-0.779810,0.925643,1.320266,-0.705891,0.837901,1.464547,-0.587738,0.697650,1.557592
		,-0.719604,0.854178,0.731460,-0.854292,0.719490,0.731460,-0.592105,0.702833,0.523317,-0.436007,0.517542,0.315698,-0.517612,0.435939,0.315698,-0.443369,0.526281,1.592086,-0.345228,0.290759,1.560714
		,-0.937754,0.789781,0.940651,-0.159241,0.134121,1.496409,-0.702927,0.592011,0.523317,-0.959513,0.808106,1.140413,-0.962299,0.802983,1.140215,-0.879344,0.731495,0.944059,-0.899748,0.748468,1.130327
		,-0.548317,0.659147,0.553514,-0.544273,0.654286,1.510419,-0.722140,0.868108,1.298031,-0.748463,0.899752,1.130327,-0.785815,0.653693,1.432566,-0.269298,0.323727,1.515936,-0.410581,0.493568,1.543235
		,-0.659144,0.548321,0.553515,-0.801081,0.666391,0.748649,-0.731490,0.879348,0.944059,-0.653689,0.785819,1.432566,-0.868104,0.722145,1.298031,-0.666387,0.801084,0.748648,-0.132516,0.159295,1.494145
		,-0.132516,0.159295,1.463874,-0.517781,0.430728,0.319049,-0.399251,0.487571,0.382193,-0.487569,0.399254,0.382194,0.345344,0.287280,1.557907,0.526526,0.437997,1.588960,0.346221,0.288925,1.560012
		,0.159700,0.133274,1.495843,0.269301,0.323725,1.515936,0.132518,0.159293,1.463874,0.132518,0.159293,1.494145,0.697975,0.580616,1.554597,0.838292,0.697338,1.462044,0.699749,0.583940,1.556843
		,0.527864,0.440504,1.591305,0.703161,0.584930,0.525680,0.517784,0.430724,0.319049,0.519099,0.433190,0.316535,0.704948,0.588278,0.523908,0.854576,0.710884,0.732805,0.926076,0.770360,1.318526
		,0.959832,0.798440,1.139623,0.928429,0.774770,1.319831,0.840422,0.701329,1.463921,0.938066,0.780334,0.940918,0.856748,0.714953,0.731796,0.940450,0.784801,0.940718,0.287283,0.345341,1.557907
		,0.288916,0.346231,1.560012,0.438000,0.526523,1.588960,0.410584,0.493566,1.543235,0.133271,0.159704,1.495843,0.770366,0.926071,1.318526,0.774744,0.928456,1.319831,0.798447,0.959827,1.139623
		,0.697343,0.838287,1.462044,0.701306,0.840446,1.463921,0.780340,0.938061,0.940918,0.784775,0.940477,0.940718,0.714929,0.856773,0.731796,0.584935,0.703157,0.525680,0.588258,0.704969,0.523908
		,0.433175,0.519115,0.316535,0.710889,0.854572,0.732805,0.580621,0.697971,1.554597,0.583920,0.699769,1.556844,0.544277,0.654283,1.510419,0.440489,0.527879,1.591305,0.345183,0.290804,1.560714
		,0.159221,0.134141,1.496409,0.937628,0.789906,0.940651,0.959384,0.808234,1.140413,0.962271,0.803011,1.140215,0.779687,0.925767,1.320266,0.705780,0.838013,1.464547,0.587645,0.697743,1.557592
		,0.443299,0.526351,1.592086,0.925643,0.779810,1.320266,0.837901,0.705891,1.464547,0.697650,0.587738,1.557592,0.854178,0.719604,0.731460,0.719490,0.854292,0.731460,0.702833,0.592105,0.523317
		,0.517542,0.436007,0.315698,0.435939,0.517612,0.315698,0.526281,0.443369,1.592086,0.290759,0.345228,1.560714,0.789781,0.937754,0.940651,0.134121,0.159241,1.496409,0.592011,0.702927,0.523317
		,0.808106,0.959513,1.140413,0.802983,0.962299,1.140215,0.731495,0.879344,0.944059,0.748468,0.899748,1.130327,0.659147,0.548317,0.553514,0.654286,0.544273,1.510419,0.868108,0.722140,1.298031
		,0.899752,0.748463,1.130327,0.653693,0.785815,1.432566,0.323727,0.269298,1.515936,0.493568,0.410581,1.543235,0.548321,0.659144,0.553515,0.666391,0.801081,0.748649,0.879348,0.731490,0.944059
		,0.785819,0.653689,1.432566,0.722145,0.868104,1.298031,0.801084,0.666387,0.748648,0.159295,0.132516,1.494145,0.159295,0.132516,1.463874,0.430728,0.517781,0.319049,0.487571,0.399251,0.382193
		,0.399254,0.487569,0.382194,0.287280,-0.345344,1.557907,0.437997,-0.526526,1.588960,0.288925,-0.346221,1.560012,0.133274,-0.159700,1.495843,0.323725,-0.269301,1.515936,0.159293,-0.132518,1.463874
		,0.159293,-0.132518,1.494145,0.580616,-0.697975,1.554597,0.697338,-0.838292,1.462044,0.583940,-0.699749,1.556843,0.440504,-0.527864,1.591305,0.584930,-0.703161,0.525680,0.430724,-0.517784,0.319049
		,0.433190,-0.519099,0.316535,0.588278,-0.704948,0.523908,0.710884,-0.854576,0.732805,0.770360,-0.926076,1.318526,0.798440,-0.959832,1.139623,0.774770,-0.928429,1.319831,0.701329,-0.840422,1.463920
		,0.780334,-0.938066,0.940918,0.714953,-0.856748,0.731796,0.784801,-0.940450,0.940718,0.345341,-0.287283,1.557907,0.346231,-0.288916,1.560012,0.526523,-0.438000,1.588960,0.493566,-0.410584,1.543234
		,0.159704,-0.133271,1.495843,0.926071,-0.770366,1.318526,0.928456,-0.774744,1.319831,0.959827,-0.798447,1.139623,0.838287,-0.697343,1.462044,0.840446,-0.701306,1.463920,0.938061,-0.780340,0.940918
		,0.940477,-0.784775,0.940718,0.856773,-0.714929,0.731796,0.703157,-0.584935,0.525680,0.704969,-0.588258,0.523908,0.519115,-0.433175,0.316535,0.854572,-0.710889,0.732805,0.697971,-0.580621,1.554597
		,0.699769,-0.583920,1.556844,0.654283,-0.544277,1.510419,0.527879,-0.440489,1.591305,0.290804,-0.345183,1.560714,0.134141,-0.159221,1.496409,0.789906,-0.937628,0.940651,0.808234,-0.959384,1.140413
		,0.803011,-0.962271,1.140215,0.925767,-0.779687,1.320266,0.838013,-0.705780,1.464547,0.697743,-0.587645,1.557592,0.526351,-0.443299,1.592085,0.779810,-0.925643,1.320266,0.705891,-0.837901,1.464547
		,0.587738,-0.697650,1.557592,0.719604,-0.854178,0.731460,0.854292,-0.719490,0.731460,0.592105,-0.702833,0.523317,0.436007,-0.517542,0.315698,0.517612,-0.435939,0.315698,0.443369,-0.526281,1.592085
		,0.345228,-0.290759,1.560714,0.937754,-0.789781,0.940651,0.159241,-0.134121,1.496409,0.702927,-0.592011,0.523317,0.959513,-0.808106,1.140413,0.962299,-0.802983,1.140215,0.879344,-0.731495,0.944059
		,0.899748,-0.748468,1.130327,0.548317,-0.659147,0.553514,0.544273,-0.654286,1.510419,0.722140,-0.868108,1.298030,0.748463,-0.899752,1.130327,0.785815,-0.653693,1.432566,0.269298,-0.323727,1.515936
		,0.410581,-0.493568,1.543234,0.659144,-0.548321,0.553515,0.801081,-0.666391,0.748649,0.731490,-0.879348,0.944059,0.653689,-0.785819,1.432566,0.868104,-0.722145,1.298030,0.666387,-0.801084,0.748648
		,0.132516,-0.159295,1.494145,0.132516,-0.159295,1.463874,0.517781,-0.430728,0.319049,0.399251,-0.487571,0.382193,0.487569,-0.399254,0.382194,-0.400165,0.162158,1.524843,-0.302739,0.302739,1.524843
		,-0.461572,0.461572,1.552141,-0.610125,0.247233,1.552141,-0.438090,-0.000000,1.524843,-0.221797,-0.000000,1.473574,-0.808806,0.327737,1.519326,-0.611872,0.611872,1.519326,-0.734880,0.734881,1.432566
		,-0.971411,0.393622,1.432566,-0.885473,-0.000000,1.519326,-0.667955,-0.000000,1.552141,-1.073138,0.434841,1.298031,-0.811836,0.811836,1.298031,-0.841428,0.841429,1.130327,-1.112257,0.450692,1.130327
		,-1.174867,-0.000000,1.298031,-1.063494,-0.000000,1.432566,-1.087033,0.440471,0.944059,-0.822347,0.822347,0.944059,-0.990282,0.401269,0.748648,-1.084155,-0.000000,0.748648,-1.190079,-0.000000,0.944059
		,0.400165,-0.162158,1.524843,0.610124,-0.247232,1.552142,0.438089,0.000001,1.524843,0.302739,-0.302738,1.524843,0.461571,-0.461571,1.552142,-0.808806,-0.327736,1.519326,-0.971411,-0.393621,1.432566
		,-0.734880,-0.734880,1.432566,-0.611872,-0.611872,1.519326,-0.610125,-0.247232,1.552141,-0.330171,-0.814817,0.553515,0.000000,-0.892054,0.553515,-0.401268,-0.990282,0.748649,-0.749156,-0.749156,0.748649
		,-1.073138,-0.434840,1.298031,-1.112257,-0.450691,1.130327,-0.841428,-0.841428,1.130327,-0.811836,-0.811835,1.298031,-0.814817,-0.330171,0.553514,-0.616418,-0.616418,0.553515,-0.990282,-0.401268,0.748648
		,-0.892054,-0.000000,0.553514,-0.676110,-0.000000,0.374475,-0.440471,1.087034,0.944059,0.000000,1.190079,0.944059,0.000000,1.084155,0.748648,-0.401268,0.990282,0.748648,-0.450691,1.112257,1.130327
		,-0.327737,0.808807,1.519326,0.000000,0.885473,1.519326,-0.393622,0.971411,1.432566,-0.247233,0.610125,1.552141,0.000000,0.667955,1.552141,-0.162158,-0.400165,1.524843,-0.302739,-0.302739,1.524843
		,-0.461572,-0.461571,1.552142,-0.247232,-0.610124,1.552142,0.000000,-0.438089,1.524843,-0.084613,-0.203917,1.473574,0.327736,0.808806,1.519326,0.393622,0.971411,1.432566,0.247232,0.610125,1.552142
		,0.611872,0.611872,1.519326,0.734880,0.734880,1.432566,-1.087033,-0.440471,0.944059,-0.822347,-0.822347,0.944060,1.073138,-0.434840,1.298032,1.112256,-0.450691,1.130328,1.174866,0.000001,1.298031
		,1.063494,0.000001,1.432566,0.971410,-0.393621,1.432566,0.811835,-0.811835,1.298031,0.841428,-0.841428,1.130327,-0.327736,-0.808806,1.519326,-0.393622,-0.971410,1.432566,0.000000,-0.885473,1.519326
		,0.000000,-0.667954,1.552142,-0.330171,0.814818,0.553514,-0.616418,0.616419,0.553514,-0.749156,0.749156,0.748648,0.000000,0.892055,0.553514,0.162158,-0.400165,1.524843,0.247232,-0.610124,1.552142
		,-0.400165,-0.162158,1.524843,0.808806,-0.327736,1.519326,0.885472,0.000001,1.519326,0.667954,0.000001,1.552142,0.611872,-0.611871,1.519326,0.734880,-0.734880,1.432566,1.087033,0.440471,0.944060
		,1.190078,-0.000000,0.944060,1.084155,-0.000000,0.748649,0.990282,0.401268,0.748649,0.822347,0.822347,0.944059,0.841428,0.841428,1.130327,1.112256,0.450691,1.130327,-0.814817,0.330172,0.553514
		,1.087033,-0.440471,0.944060,0.990282,-0.401268,0.748649,0.822347,-0.822347,0.944060,0.440471,1.087033,0.944059,0.401268,0.990282,0.748648,0.450691,1.112257,1.130327,-0.434841,1.073139,1.298031
		,0.000000,1.174867,1.298031,0.000000,1.063494,1.432566,0.814817,-0.330171,0.553515,0.892054,-0.000000,0.553515,0.749155,-0.749156,0.748649,0.400165,0.162158,1.524843,0.610124,0.247233,1.552142
		,0.461571,0.461572,1.552142,0.302739,0.302739,1.524843,0.204273,0.084465,1.473574,0.330171,0.814817,0.553514,0.749156,0.749156,0.748649,1.073138,0.434841,1.298031,0.811835,0.811836,1.298031
		,0.971410,0.393622,1.432566,-0.440470,-1.087033,0.944060,0.000001,-1.084155,0.748649,0.000001,-1.190079,0.944060,-0.450691,-1.112256,1.130327,0.440471,-1.087033,0.944060,0.401268,-0.990282,0.748649
		,0.450691,-1.112256,1.130328,0.330172,-0.814817,0.553515,0.616418,-0.616419,0.553515,0.162158,0.400165,1.524843,0.000000,0.438090,1.524843,0.000000,0.221411,1.473574,0.084612,0.203917,1.473574
		,0.434841,1.073138,1.298031,0.814817,0.330172,0.553515,0.616419,0.616418,0.553515,-0.434840,-1.073138,1.298032,0.000001,-1.174866,1.298032,0.000000,-1.063494,1.432567,0.434841,-1.073138,1.298032
		,0.393622,-0.971410,1.432566,-0.162158,0.400165,1.524843,-0.084613,0.203917,1.473574,0.327736,-0.808806,1.519326,0.808806,0.327737,1.519326,0.221797,-0.000000,1.473574,-0.204273,0.084465,1.473574
		,0.000000,-0.221410,1.473574,0.084612,-0.203917,1.473574,0.204273,-0.084465,1.473574,-0.204273,-0.084465,1.473574,0.000000,-0.676110,0.374475,0.250250,0.617573,0.374475,0.000000,0.676110,0.374475
		,-0.250250,-0.617573,0.374475,-0.250250,0.617574,0.374475,0.676110,-0.000000,0.374475,0.250250,-0.617573,0.374475,0.617573,-0.250250,0.374475,0.617573,0.250250,0.374475,-0.617573,0.250250,0.374475
		,-0.617573,-0.250250,0.374475,-1.217694,-0.000000,1.130327,0.000000,1.217694,1.130327,-0.156834,-0.156560,1.473574,1.217693,0.000001,1.130327,0.156834,0.156561,1.473574,0.000001,-1.217693,1.130328
		,-0.156834,0.156561,1.473574,0.156834,-0.156561,1.473574,-0.467206,-0.467206,0.374475,-0.467206,0.467206,0.374475,0.467206,0.467206,0.374475,0.467206,-0.467206,0.374475,0.000000,-0.652438,0.003419
		,-0.248897,-0.600890,0.003419,0.000000,-0.000000,0.003419,-0.600890,0.248897,0.003419,-0.461343,0.461343,0.003419,0.600890,-0.248897,0.003419,0.461343,-0.461343,0.003419,0.000000,0.652438,0.003419
		,0.248897,0.600890,0.003419,-0.461343,-0.461343,0.003419,-0.600890,-0.248897,0.003419,0.600890,0.248897,0.003419,0.652438,-0.000000,0.003419,-0.248897,0.600890,0.003419,-0.630661,0.261228,0.184639
		,-0.655541,0.271534,0.160292,-0.684763,-0.000000,0.184639,-0.666753,-0.000000,0.200000,-0.614074,0.254358,0.200000,-0.471466,0.471466,0.200000,-0.484200,0.484201,0.184639,-0.261228,0.630661,0.184639
		,-0.271534,0.655541,0.160292,-0.254358,0.614074,0.200000,0.000000,0.666753,0.200000,0.000000,0.684763,0.184639,0.261228,0.630661,0.184639,0.271534,0.655541,0.160292,0.254358,0.614074,0.200000
		,0.471466,0.471466,0.200000,0.484200,0.484200,0.184639,0.630661,0.261228,0.184639,0.655541,0.271534,0.160293,0.614074,0.254358,0.200000,0.666753,-0.000000,0.200000,0.684763,-0.000000,0.184639
		,0.630661,-0.261228,0.184640,0.655541,-0.271534,0.160293,0.614074,-0.254358,0.200000,0.471466,-0.471466,0.200000,0.484200,-0.484201,0.184640,0.261228,-0.630661,0.184640,0.271534,-0.655541,0.160293
		,0.254358,-0.614074,0.200000,0.000000,-0.666753,0.200000,0.000000,-0.684763,0.184640,-0.630661,-0.261228,0.184639,-0.655541,-0.271534,0.160292,-0.484200,-0.484200,0.184639,-0.471466,-0.471466,0.200000
		,-0.614074,-0.254358,0.200000,-0.261228,-0.630661,0.184640,-0.271534,-0.655541,0.160293,-0.254358,-0.614074,0.200000,-0.634063,0.262638,0.036752,-0.610884,0.253037,0.013461,-0.663290,-0.000000,0.013461
		,-0.688457,-0.000000,0.036752,-0.656391,0.271886,0.072014,-0.486813,0.486813,0.036752,-0.469017,0.469017,0.013461,-0.663834,0.274969,0.117973,-0.712701,-0.000000,0.072014,-0.720782,-0.000000,0.117973
		,-0.711777,-0.000000,0.160292,-0.503303,0.503303,0.160292,-0.509670,0.509670,0.117973,-0.503956,0.503956,0.072014,-0.262637,0.634063,0.036752,-0.253036,0.610884,0.013461,-0.271886,0.656391,0.072014
		,0.000000,0.688457,0.036752,0.000000,0.663290,0.013461,-0.274969,0.663834,0.117973,0.000000,0.711777,0.160293,0.000000,0.720782,0.117973,0.000000,0.712701,0.072014,0.262638,0.634063,0.036752
		,0.253037,0.610884,0.013461,0.271886,0.656391,0.072015,0.486813,0.486813,0.036752,0.469017,0.469017,0.013462,0.274969,0.663834,0.117973,0.503303,0.503303,0.160293,0.509670,0.509670,0.117973
		,0.503956,0.503956,0.072015,0.634063,0.262637,0.036752,0.610884,0.253036,0.013462,0.656391,0.271886,0.072015,0.688457,-0.000000,0.036752,0.663290,-0.000000,0.013462,0.663834,0.274969,0.117973
		,0.711777,-0.000000,0.160293,0.720782,-0.000000,0.117973,0.712701,-0.000000,0.072015,0.634063,-0.262638,0.036752,0.610884,-0.253037,0.013462,0.656391,-0.271886,0.072015,0.486813,-0.486813,0.036752
		,0.469017,-0.469017,0.013462,0.663834,-0.274969,0.117973,0.503302,-0.503303,0.160293,0.509670,-0.509670,0.117973,0.503955,-0.503956,0.072015,0.262637,-0.634063,0.036752,0.253036,-0.610884,0.013462
		,0.271886,-0.656391,0.072015,0.000000,-0.688457,0.036752,0.000000,-0.663290,0.013462,0.274969,-0.663834,0.117973,0.000000,-0.711777,0.160293,0.000000,-0.720782,0.117973,0.000000,-0.712701,0.072015
		,-0.634063,-0.262638,0.036752,-0.610884,-0.253037,0.013461,-0.469017,-0.469017,0.013461,-0.486813,-0.486813,0.036752,-0.656391,-0.271886,0.072014,-0.663834,-0.274969,0.117973,-0.503956,-0.503956,0.072015
		,-0.509670,-0.509670,0.117973,-0.503303,-0.503303,0.160293,-0.262638,-0.634063,0.036752,-0.253037,-0.610884,0.013462,-0.271886,-0.656391,0.072015,-0.274969,-0.663834,0.117973,-0.652438,-0.000000,0.003419
		,0.461343,0.461343,0.003419,0.248897,-0.600890,0.003419
		PolygonVertexIndex: 105,109,22,-21,22,109,28,-27,25,26,28,-30,91,32,31,-89,37,60,88,-32,3,0,102,-104,21,30,33,-35,105,20,19,-19,58,57,62,-64,99,98,96,-96,62,100,101,-64,44,43,48,-50,86,98,99,-88
		,101,100,72,-72,60,57,58,-60,21,34,19,-21,33,30,31,-33,85,84,86,-88,94,93,91,-91,48,84,85,-50,46,43,44,-46,96,93,94,-96,72,69,70,-72,89,88,60,-60,102,0,2,-111,11,7,9,-11
		,14,108,17,-16,106,110,2,-24,106,23,25,-30,70,69,46,-46,19,15,17,-19,6,111,9,-8,104,108,14,-13,107,111,6,-5,107,4,3,-104,31,30,36,-38,37,36,97,-62,61,97,79,-79,78,79,76,-78
		,77,76,82,-84,83,82,92,-74,73,92,52,-52,51,52,50,-48,47,50,55,-57,56,55,64,-66,73,69,72,-84,61,57,60,-38,65,64,67,-69,68,67,74,-76,75,74,41,-41,40,41,38,-40,39,38,33,-33
		,77,100,62,-79,78,62,57,-62,22,35,21,-21,26,27,35,-23,25,80,27,-27,23,24,80,-26,2,81,24,-24,0,1,81,-3,1,0,3,-54,4,5,53,-4,6,54,5,-5,7,8,54,-7,11,66,8,-8
		,51,46,69,-74,83,72,100,-78,12,13,66,-12,14,42,13,-13,15,16,42,-15,19,34,16,-16,91,88,89,-91,47,43,46,-52,56,48,43,-48,65,84,48,-57,68,86,84,-66,75,98,86,-69,40,96,98,-76
		,39,93,96,-41,32,91,93,-40,38,16,34,-34,41,42,16,-39,74,13,42,-42,67,66,13,-75,64,8,66,-68,55,54,8,-65,50,5,54,-56,52,53,5,-51,92,1,53,-53,82,81,1,-93,76,24,81,-83
		,79,80,24,-77,97,27,80,-80,36,35,27,-98,30,21,35,-37,104,12,11,-11,126,129,135,-128,151,129,126,-126,128,142,143,-120,170,167,168,-170,187,159,162,-164,189,171,179,-189,177,180,183,-179,185,165,164,-185
		,157,156,164,-166,193,180,177,-177,191,178,183,-191,175,192,193,-177,145,123,126,-128,185,181,157,-166,133,130,131,-133,199,156,157,-159,177,174,175,-177,113,112,120,-122,157,181,182,-159,139,146,147,-135,118,122,128,-120
		,162,159,160,-162,170,173,179,-172,155,112,113,-115,160,196,197,-162,116,152,153,-118,197,166,162,-162,149,136,133,-133,187,163,172,-187,191,174,177,-179,168,194,195,-170,118,115,116,-118,195,173,170,-170,182,198,199,-159
		,143,115,118,-120,153,122,118,-118,138,154,155,-115,133,136,139,-135,162,166,172,-164,120,140,141,-122,124,150,151,-126,189,167,170,-172,141,137,113,-122,126,123,124,-126,135,144,145,-128,113,137,138,-115,147,130,133,-135
		,131,148,149,-133,281,291,240,-238,247,288,248,-245,255,290,259,-259,262,290,265,-265,271,290,274,-274,233,294,287,-228,254,290,255,-254,265,290,268,-268,268,290,271,-271,259,290,262,-262,229,296,286,-221,284,292,203,-201
		,248,289,249,-245,240,291,285,-231,212,293,284,-201,283,293,212,-210,287,296,229,-228,203,292,282,-279,282,288,247,-279,286,295,222,-221,249,289,281,-238,285,294,233,-231,222,295,283,-210,263,218,216,-218,217,216,215,-261
		,260,215,213,-215,214,213,207,-257,256,207,205,-207,206,205,208,-258,257,208,280,-278,277,280,252,-276,275,252,250,-252,251,250,243,-273,272,243,241,-243,242,241,236,-270,269,236,234,-236,235,234,225,-267,266,225,223,-225
		,224,223,218,-264,279,278,247,-247,246,247,244,-246,245,244,249,-240,239,249,237,-239,238,237,240,-233,232,240,230,-232,231,230,233,-229,228,233,227,-227,226,227,229,-222,221,229,220,-220,219,220,222,-212,211,222,209,-211
		,210,209,212,-203,202,212,200,-202,201,200,203,-205,204,203,278,-280,208,204,279,-281,246,252,280,-280,245,250,252,-247,239,243,250,-246,238,241,243,-240,232,236,241,-239,231,234,236,-233,228,225,234,-232,226,223,225,-229
		,221,218,223,-227,219,216,218,-222,211,215,216,-220,210,213,215,-212,202,207,213,-211,201,205,207,-203,204,208,205,-202,254,257,277,-277,275,274,276,-278,251,273,274,-276,272,271,273,-252,242,270,271,-273,269,268,270,-243
		,235,267,268,-270,266,265,267,-236,224,264,265,-267,263,262,264,-225,217,261,262,-264,260,259,261,-218,214,258,259,-261,256,255,258,-215,206,253,255,-257,257,254,253,-207,274,290,254,-277,320,301,302,-304,382,384,374,-334
		,297,380,381,-373,311,310,356,-356,321,324,361,-360,382,333,334,-336,357,335,334,-363,342,300,299,-342,342,341,359,-362,321,320,303,-325,311,308,309,-311,367,383,309,-309,380,297,299,-301,362,355,356,-358,298,297,372,-374
		,307,299,297,-299,373,368,304,-299,298,304,306,-308,358,341,299,-308,307,306,352,-359,349,359,341,-359,358,352,348,-350,340,321,359,-350,322,320,321,-341,323,301,320,-323,349,348,338,-341,305,304,368,-378,340,338,337,-323
		,322,337,339,-324,316,306,304,-306,328,325,378,-372,329,326,325,-329,347,346,326,-330,351,350,346,-348,316,315,350,-352,351,352,306,-317,305,313,315,-317,347,348,352,-352,329,338,348,-348,328,337,338,-330,371,339,337,-329
		,366,378,325,-328,377,369,313,-306,327,325,326,-365,364,326,346,-364,370,376,317,-315,314,317,319,-346,345,319,343,-345,363,346,350,-345,344,343,360,-364,344,350,315,-346,345,315,313,-315,363,360,331,-365,314,313,369,-371
		,364,331,330,-328,327,330,365,-367,312,317,376,-380,318,319,317,-313,379,367,308,-313,353,343,319,-319,354,360,343,-354,312,308,311,-319,332,331,360,-355,318,311,355,-354,353,355,362,-355,336,330,331,-333,375,365,330,-337
		,354,362,334,-333,332,334,333,-337,336,333,374,-376,408,389,390,-392,470,472,462,-422,385,468,469,-461,399,398,444,-444,409,412,449,-448,470,421,422,-424,445,423,422,-451,430,388,387,-430,430,429,447,-450,409,408,391,-413
		,399,396,397,-399,455,471,397,-397,468,385,387,-389,450,443,444,-446,386,385,460,-462,395,387,385,-387,461,456,392,-387,386,392,394,-396,446,429,387,-396,395,394,440,-447,437,447,429,-447,446,440,436,-438,428,409,447,-438
		,410,408,409,-429,411,389,408,-411,437,436,426,-429,393,392,456,-466,428,426,425,-411,410,425,427,-412,404,394,392,-394,416,413,466,-460,417,414,413,-417,435,434,414,-418,439,438,434,-436,404,403,438,-440,439,440,394,-405
		,393,401,403,-405,435,436,440,-440,417,426,436,-436,416,425,426,-418,459,427,425,-417,454,466,413,-416,465,457,401,-394,415,413,414,-453,452,414,434,-452,458,464,405,-403,402,405,407,-434,433,407,431,-433,451,434,438,-433
		,432,431,448,-452,432,438,403,-434,433,403,401,-403,451,448,419,-453,402,401,457,-459,452,419,418,-416,415,418,453,-455,400,405,464,-468,406,407,405,-401,467,455,396,-401,441,431,407,-407,442,448,431,-442,400,396,399,-407
		,420,419,448,-443,406,399,443,-442,441,443,450,-443,424,418,419,-421,463,453,418,-425,442,450,422,-421,420,422,421,-425,424,421,462,-464,496,477,478,-480,558,560,550,-510,473,556,557,-549,487,486,532,-532,497,500,537,-536
		,558,509,510,-512,533,511,510,-539,518,476,475,-518,518,517,535,-538,497,496,479,-501,487,484,485,-487,543,559,485,-485,556,473,475,-477,538,531,532,-534,474,473,548,-550,483,475,473,-475,549,544,480,-475,474,480,482,-484
		,534,517,475,-484,483,482,528,-535,525,535,517,-535,534,528,524,-526,516,497,535,-526,498,496,497,-517,499,477,496,-499,525,524,514,-517,481,480,544,-554,516,514,513,-499,498,513,515,-500,492,482,480,-482,504,501,554,-548
		,505,502,501,-505,523,522,502,-506,527,526,522,-524,492,491,526,-528,527,528,482,-493,481,489,491,-493,523,524,528,-528,505,514,524,-524,504,513,514,-506,547,515,513,-505,542,554,501,-504,553,545,489,-482,503,501,502,-541
		,540,502,522,-540,546,552,493,-491,490,493,495,-522,521,495,519,-521,539,522,526,-521,520,519,536,-540,520,526,491,-522,521,491,489,-491,539,536,507,-541,490,489,545,-547,540,507,506,-504,503,506,541,-543,488,493,552,-556
		,494,495,493,-489,555,543,484,-489,529,519,495,-495,530,536,519,-530,488,484,487,-495,508,507,536,-531,494,487,531,-530,529,531,538,-531,512,506,507,-509,551,541,506,-513,530,538,510,-509,508,510,509,-513,512,509,550,-552
		,584,565,566,-568,646,648,638,-598,561,644,645,-637,575,574,620,-620,585,588,625,-624,646,597,598,-600,621,599,598,-627,606,564,563,-606,606,605,623,-626,585,584,567,-589,575,572,573,-575,631,647,573,-573,644,561,563,-565
		,626,619,620,-622,562,561,636,-638,571,563,561,-563,637,632,568,-563,562,568,570,-572,622,605,563,-572,571,570,616,-623,613,623,605,-623,622,616,612,-614,604,585,623,-614,586,584,585,-605,587,565,584,-587,613,612,602,-605
		,569,568,632,-642,604,602,601,-587,586,601,603,-588,580,570,568,-570,592,589,642,-636,593,590,589,-593,611,610,590,-594,615,614,610,-612,580,579,614,-616,615,616,570,-581,569,577,579,-581,611,612,616,-616,593,602,612,-612
		,592,601,602,-594,635,603,601,-593,630,642,589,-592,641,633,577,-570,591,589,590,-629,628,590,610,-628,634,640,581,-579,578,581,583,-610,609,583,607,-609,627,610,614,-609,608,607,624,-628,608,614,579,-610,609,579,577,-579
		,627,624,595,-629,578,577,633,-635,628,595,594,-592,591,594,629,-631,576,581,640,-644,582,583,581,-577,643,631,572,-577,617,607,583,-583,618,624,607,-618,576,572,575,-583,596,595,624,-619,582,575,619,-618,617,619,626,-619
		,600,594,595,-597,639,629,594,-601,618,626,598,-597,596,598,597,-601,600,597,638,-640,675,733,734,-677,652,655,659,-661,653,660,681,-736,727,789,791,-795,726,789,727,-726,659,677,681,-661,764,817,765,-762,706,735,681,-708
		,714,763,762,-796,726,725,680,-680,653,735,801,-655,709,733,799,-799,737,721,770,-796,712,757,701,-712,737,795,762,-739,652,651,656,-656,710,815,706,-706,706,815,801,-736,714,795,770,-716,783,780,781,-783,674,738,762,-762
		,658,655,656,-658,722,721,737,-737,722,736,739,-741,713,704,781,-781,650,792,703,-652,708,725,727,-729,673,676,739,-737,764,761,762,-764,650,819,793,-793,712,711,714,-716,701,700,703,-705,708,705,706,-708,701,757,702,-701
		,708,707,680,-726,797,819,650,-650,709,728,734,-734,727,794,734,-729,783,817,764,-781,680,707,681,-678,652,660,653,-650,808,778,683,-803,713,711,701,-705,708,728,709,-706,713,780,764,-764,656,700,702,-658,652,649,650,-652
		,713,763,714,-712,658,666,659,-656,659,666,678,-678,680,677,678,-680,781,704,703,-793,673,672,675,-677,675,820,799,-734,800,820,675,-673,656,651,703,-701,781,792,793,-783,739,676,734,-795,710,705,709,-799,800,672,674,-797
		,674,761,765,-797,797,649,653,-655,673,736,737,-739,810,823,786,-786,691,821,805,-683,683,682,805,-803,806,729,732,-805,759,758,809,-808,779,824,809,-759,812,821,691,-691,810,785,759,-808,786,823,803,-767,730,822,811,-749
		,806,822,730,-730,808,824,779,-779,732,766,803,-805,812,690,693,-695,693,748,811,-695,742,743,744,-742,749,750,743,-743,718,722,740,-724,720,721,722,-719,751,760,750,-750,775,776,760,-752,785,744,743,-760,759,743,750,-759
		,773,772,776,-776,768,770,721,-721,769,715,770,-769,771,684,772,-774,758,750,760,-780,779,760,776,-779,717,685,684,-772,716,692,685,-718,671,670,692,-717,667,669,670,-672,668,731,669,-668,784,712,715,-770,756,757,712,-785
		,695,698,731,-669,778,776,772,-684,683,772,684,-683,696,697,698,-696,752,753,697,-697,682,684,685,-692,691,685,692,-691,745,767,753,-753,741,744,767,-746,723,724,719,-719,718,719,816,-721,720,816,747,-769,768,747,746,-770
		,755,702,757,-757,662,657,702,-756,690,692,670,-694,693,670,669,-749,748,669,731,-731,730,731,698,-730,769,746,754,-785,784,754,814,-757,661,658,657,-663,665,666,658,-662,756,814,699,-756,755,699,663,-663,662,663,664,-662
		,661,664,813,-666,729,698,697,-733,732,697,753,-767,665,813,687,-687,686,678,666,-666,689,679,678,-687,686,687,688,-690,766,753,767,-787,786,767,744,-786,689,688,774,-788,787,774,818,-789,787,726,679,-690,788,789,726,-788
		,788,818,777,-791,790,791,789,-789,723,740,791,-791,790,777,724,-724,746,745,752,-755,754,752,696,-815,814,696,695,-700,699,695,668,-664,663,668,667,-665,664,667,671,-814,813,671,716,-688,687,716,717,-689,688,717,771,-775
		,774,771,773,-819,818,773,775,-778,777,775,751,-725,724,751,749,-720,719,749,742,-817,816,742,741,-748,747,741,745,-747,673,738,674,-673,739,794,791,-741,825,826,-828,828,829,-828,830,831,-828,832,833,-828
		,834,835,-828,836,837,-828,826,834,-828,829,838,-828,841,871,875,-843,843,839,841,-843,850,846,848,-850,853,851,850,-850,860,856,858,-860,848,846,845,-845,875,871,873,-875,865,861,863,-865,845,839,843,-845
		,873,876,878,-875,930,929,932,-934,878,876,870,-870,858,856,855,-855,868,866,865,-865,863,861,860,-860,870,866,868,-870,870,935,867,-867,930,933,825,-954,936,934,867,-936,931,934,936,-938,931,937,932,-930,952,836,-828
		,953,825,-828,838,832,-828,837,830,-828,951,828,-828,835,951,-828,833,952,-828,831,953,-828,933,932,947,-949,948,947,941,-941,940,941,938,-940,939,938,882,-882,881,882,879,-881,880,879,884,-886
		,885,884,893,-895,894,893,896,-898,897,896,902,-904,903,902,905,-907,906,905,911,-913,912,911,914,-916,915,914,920,-922,921,920,923,-925,924,923,929,-931,950,949,937,-937,945,944,949,-951,943,942,944,-946,888,887,942,-944
		,886,883,887,-889,891,892,883,-887,898,895,892,-892,900,901,895,-899,907,904,901,-901,909,910,904,-908,916,913,910,-910,918,919,913,-917,925,922,919,-919,927,928,922,-926,934,931,928,-928,876,877,935,-871,873,946,877,-877
		,871,872,946,-874,841,889,872,-872,839,840,889,-842,845,890,840,-840,846,847,890,-846,850,899,847,-847,851,852,899,-851,855,908,852,-852,856,857,908,-856,860,917,857,-857,861,862,917,-861,865,926,862,-862,866,867,926,-866
		,831,924,930,-954,830,921,924,-832,837,915,921,-831,836,912,915,-838,952,906,912,-837,833,903,906,-953,832,897,903,-834,838,894,897,-833,829,885,894,-839,828,880,885,-830,951,881,880,-829,835,939,881,-952,834,940,939,-836
		,826,948,940,-835,825,933,948,-827,923,928,931,-930,920,922,928,-924,914,919,922,-921,911,913,919,-915,905,910,913,-912,902,904,910,-906,896,901,904,-903,893,895,901,-897,884,892,895,-894,879,883,892,-885,882,887,883,-880
		,938,942,887,-883,941,944,942,-939,947,949,944,-942,932,937,949,-948,927,926,867,-935,925,862,926,-928,918,917,862,-926,916,857,917,-919,909,908,857,-917,907,852,908,-910,900,899,852,-908,898,847,899,-901,891,890,847,-899
		,886,840,890,-892,888,889,840,-887,943,872,889,-889,945,946,872,-944,950,877,946,-946,936,935,877,-951,855,851,853,-855
		Edges: 
		GeometryVersion: 124
		LayerElementNormal: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "ByVertice"
			ReferenceInformationType: "Direct"
			Normals: -0.610370159149170,0.254921108484268,0.749961853027344,-0.852931320667267,0.353282272815704,0.384258538484573
			 ,-0.701925694942474,0.000000000000000,0.712210476398468,-0.447401344776154,0.447401344776154,0.774376630783081
			 ,-0.254921108484268,0.610339641571045,0.749961853027344,-0.353282272815704,0.852931320667267,0.384228020906448
			 ,0.000000000000000,0.701925694942474,0.712240993976593,0.254890590906143,0.610339641571045,0.749961853027344
			 ,0.353282272815704,0.852931320667267,0.384228020906448,0.155217140913010,0.439954817295074,0.884487450122833
			 ,0.249855041503906,0.249855041503906,0.935483872890472,0.447370827198029,0.447370827198029,0.774376630783081
			 ,0.610339641571045,0.254890590906143,0.749961853027344,0.852931320667267,0.353282272815704,0.384228020906448
			 ,0.701895177364349,0.000000000000000,0.712240993976593,0.610339641571045,-0.254890590906143,0.749961853027344
			 ,0.852931320667267,-0.353282272815704,0.384228020906448,0.439954817295074,-0.155217140913010,0.884487450122833
			 ,0.249855041503906,-0.249855041503906,0.935483872890472,0.447370827198029,-0.447370827198029,0.774376630783081
			 ,0.254890590906143,-0.610339641571045,0.749961853027344,0.353282272815704,-0.852931320667267,0.384228020906448
			 ,0.000000000000000,-0.701895177364349,0.712240993976593,-0.610339641571045,-0.254890590906143,0.749961853027344
			 ,-0.852931320667267,-0.353282272815704,0.384258538484573,-0.447370827198029,-0.447370827198029,0.774376630783081
			 ,-0.254890590906143,-0.610339641571045,0.749961853027344,-0.353282272815704,-0.852931320667267,0.384258538484573
			 ,-0.155217140913010,-0.439954817295074,0.884487450122833,-0.249855041503906,-0.249855041503906,0.935453355312347
			 ,0.382641077041626,-0.923825800418854,-0.009552293457091,0.334940642118454,-0.808618426322937,-0.483626812696457
			 ,0.619006931781769,-0.619006931781769,-0.483352154493332,0.707052826881409,-0.707052826881409,-0.009552293457091
			 ,0.652729868888855,-0.652760386466980,0.384441673755646,0.000000000000000,-0.923123896121979,0.384441673755646
			 ,0.000000000000000,-0.999938964843750,-0.009552293457091,0.000000000000000,-0.875423431396484,-0.483352154493332
			 ,0.923825800418854,-0.382641077041626,-0.009552293457091,0.808618426322937,-0.334940642118454,-0.483626812696457
			 ,0.875423431396484,0.000000000000000,-0.483352154493332,0.999938964843750,0.000000000000000,-0.009552293457091
			 ,0.923123896121979,0.000000000000000,0.384441673755646,-0.253059476613998,0.610980570316315,-0.750053405761719
			 ,-0.248756363987923,0.600604295730591,-0.759849846363068,-0.458845794200897,0.458845794200897,-0.760826468467712
			 ,-0.466872155666351,0.466872155666351,-0.751030027866364,-0.334940642118454,0.808618426322937,-0.483626812696457
			 ,0.000000000000000,0.660237431526184,-0.751030027866364,0.000000000000000,0.648884534835815,-0.760856986045837
			 ,-0.382641077041626,0.923825800418854,-0.009552293457091,-0.619006931781769,0.619006931781769,-0.483321636915207
			 ,-0.707052826881409,0.707052826881409,-0.009552293457091,-0.652729868888855,0.652729868888855,0.384441673755646
			 ,0.000000000000000,0.923123896121979,0.384441673755646,0.000000000000000,0.999938964843750,-0.009552293457091
			 ,0.000000000000000,0.875423431396484,-0.483321636915207,-0.253059476613998,-0.611011087894440,-0.750053405761719
			 ,-0.248786896467209,-0.600604295730591,-0.759819328784943,0.000000000000000,-0.648915052413940,-0.760826468467712
			 ,0.000000000000000,-0.660237431526184,-0.751030027866364,-0.334940642118454,-0.808618426322937,-0.483657330274582
			 ,-0.466872155666351,-0.466872155666351,-0.751030027866364,-0.458845794200897,-0.458845794200897,-0.760826468467712
			 ,0.382641077041626,0.923825800418854,-0.009552293457091,0.334940642118454,0.808618426322937,-0.483626812696457
			 ,0.652729868888855,0.652760386466980,0.384441673755646,0.707052826881409,0.707052826881409,-0.009552293457091
			 ,0.619006931781769,0.619006931781769,-0.483352154493332,-0.610980570316315,0.253059476613998,-0.750053405761719
			 ,-0.600604295730591,0.248756363987923,-0.759849846363068,-0.648884534835815,0.000000000000000,-0.760856986045837
			 ,-0.660237431526184,0.000000000000000,-0.751030027866364,-0.808618426322937,0.334940642118454,-0.483626812696457
			 ,0.923825800418854,0.382641077041626,-0.009552293457091,0.808618426322937,0.334940642118454,-0.483657330274582
			 ,-0.923825800418854,-0.382641077041626,-0.009552293457091,-0.808618426322937,-0.334940642118454,-0.483626812696457
			 ,-0.619006931781769,-0.619006931781769,-0.483352154493332,-0.707052826881409,-0.707052826881409,-0.009552293457091
			 ,-0.652729868888855,-0.652729868888855,0.384441673755646,-0.923123896121979,0.000000000000000,0.384441673755646
			 ,-0.999938964843750,0.000000000000000,-0.009552293457091,-0.875423431396484,0.000000000000000,-0.483321636915207
			 ,0.253059476613998,0.610980570316315,-0.750053405761719,0.248756363987923,0.600604295730591,-0.759849846363068
			 ,0.466872155666351,0.466872155666351,-0.751030027866364,0.458845794200897,0.458845794200897,-0.760826468467712
			 ,0.253059476613998,-0.611011087894440,-0.750053405761719,0.248786896467209,-0.600604295730591,-0.759819328784943
			 ,0.458845794200897,-0.458845794200897,-0.760826468467712,0.466872155666351,-0.466872155666351,-0.750999450683594
			 ,-0.923825800418854,0.382641077041626,-0.009552293457091,0.611011087894440,-0.253089994192123,-0.750053405761719
			 ,0.600604295730591,-0.248786896467209,-0.759819328784943,0.648915052413940,0.000000000000000,-0.760826468467712
			 ,0.660267949104309,0.000000000000000,-0.750999450683594,-0.382641077041626,-0.923825800418854,-0.009552293457091
			 ,0.610980570316315,0.253059476613998,-0.750053405761719,0.600604295730591,0.248786896467209,-0.759819328784943
			 ,-0.610980570316315,-0.253059476613998,-0.750053405761719,-0.600604295730591,-0.248756363987923,-0.759849846363068
			 ,-0.439985364675522,0.155247658491135,0.884456932544708,-0.249885559082031,0.249885559082031,0.935453355312347
			 ,0.439954817295074,0.155217140913010,0.884487450122833,0.155217140913010,-0.439954817295074,0.884487450122833
			 ,-0.439954817295074,-0.155217140913010,0.884456932544708,-0.155217140913010,0.439954817295074,0.884456932544708
			 ,0.542832732200623,0.000000000000000,0.839808344841003,0.000000000000000,-0.542832732200623,0.839808344841003
			 ,-0.542893767356873,0.000000000000000,0.839777827262878,0.000000000000000,0.542863249778748,0.839808344841003
			 ,0.371379733085632,0.000000000000000,0.928464591503143,0.707083344459534,0.000000000000000,0.707083344459534
			 ,0.701132237911224,0.129673153162003,0.701132237911224,-0.371379733085632,0.000000000000000,0.928464591503143
			 ,-0.614154458045959,0.295358121395111,0.731803357601166,-0.701132237911224,0.129673153162003,0.701132237911224
			 ,-0.707083344459534,0.000000000000000,0.707083344459534,-0.701132237911224,-0.129673153162003,0.701132237911224
			 ,0.614184975624084,-0.295358121395111,0.731772840023041,0.701132237911224,-0.129673153162003,0.701132237911224
			 ,-0.928464591503143,0.000000000000000,0.371379733085632,-0.928464591503143,0.000000000000000,-0.371379733085632
			 ,-0.731772840023041,0.295358121395111,-0.614184975624084,-0.701132237911224,0.129673153162003,-0.701132237911224
			 ,-0.707083344459534,0.000000000000000,-0.707083344459534,-0.701132237911224,-0.129673153162003,-0.701132237911224
			 ,-0.731803357601166,-0.295358121395111,0.614154458045959,-0.371379733085632,0.000000000000000,-0.928464591503143
			 ,0.371410250663757,0.000000000000000,-0.928464591503143,0.614154458045959,0.295358121395111,-0.731803357601166
			 ,0.701132237911224,0.129673153162003,-0.701132237911224,0.707083344459534,0.000000000000000,-0.707083344459534
			 ,0.701132237911224,-0.129673153162003,-0.701132237911224,-0.614154458045959,-0.295358121395111,-0.731803357601166
			 ,0.928464591503143,0.000000000000000,-0.371410250663757,0.928464591503143,0.000000000000000,0.371379733085632
			 ,0.731803357601166,0.295358121395111,0.614154458045959,0.731803357601166,-0.295358121395111,-0.614154458045959
			 ,0.663533449172974,-0.345561087131500,0.663502931594849,0.731803357601166,-0.295358121395111,0.614154458045959
			 ,-0.663533449172974,-0.345561087131500,0.663533449172974,-0.614154458045959,-0.295358121395111,0.731803357601166
			 ,-0.663502931594849,-0.345561087131500,-0.663533449172974,-0.731772840023041,-0.295358121395111,-0.614184975624084
			 ,0.663533449172974,-0.345561087131500,-0.663533449172974,0.614154458045959,-0.295358121395111,-0.731803357601166
			 ,0.663533449172974,0.345561087131500,-0.663533449172974,0.731803357601166,0.295358121395111,-0.614154458045959
			 ,-0.663502931594849,0.345561087131500,-0.663533449172974,-0.614154458045959,0.295358121395111,-0.731803357601166
			 ,-0.663533449172974,0.345561087131500,0.663533449172974,-0.731803357601166,0.295358121395111,0.614154458045959
			 ,0.663533449172974,0.345561087131500,0.663502931594849,0.614184975624084,0.295358121395111,0.731772840023041
			 ,0.371379733085632,-0.928464591503143,0.000000000000000,0.707083344459534,-0.707083344459534,0.000000000000000
			 ,0.704336702823639,-0.704306185245514,0.088351085782051,-0.371379733085632,-0.928464591503143,0.000000000000000
			 ,-0.642445147037506,-0.730399489402771,0.231818601489067,-0.704336702823639,-0.704336702823639,0.088351085782051
			 ,-0.707083344459534,-0.707083344459534,0.000000000000000,-0.704306185245514,-0.704336702823639,-0.088351085782051
			 ,0.642445147037506,-0.730399489402771,-0.231818601489067,0.704336702823639,-0.704336702823639,-0.088351085782051
			 ,-0.928464591503143,-0.371379733085632,0.000000000000000,-0.928464591503143,0.371379733085632,0.000000000000000
			 ,-0.730399489402771,0.642445147037506,0.231849119067192,-0.704336702823639,0.704336702823639,0.088351085782051
			 ,-0.707083344459534,0.707083344459534,0.000000000000000,-0.704306185245514,0.704336702823639,-0.088351085782051
			 ,-0.730368971824646,-0.642475664615631,-0.231818601489067,-0.371349215507507,0.928464591503143,0.000000000000000
			 ,0.371379733085632,0.928464591503143,0.000000000000000,0.642445147037506,0.730368971824646,0.231818601489067
			 ,0.704336702823639,0.704306185245514,0.088351085782051,0.707083344459534,0.707083344459534,0.000000000000000
			 ,0.704336702823639,0.704336702823639,-0.088351085782051,-0.642445147037506,0.730399489402771,-0.231818601489067
			 ,0.928464591503143,0.371349215507507,0.000000000000000,0.928464591503143,-0.371379733085632,0.000000000000000
			 ,0.730399489402771,-0.642445147037506,0.231818601489067,0.730399489402771,0.642445147037506,-0.231818601489067
			 ,0.682638049125671,-0.682668566703796,-0.260597556829453,0.730368971824646,-0.642445147037506,-0.231818601489067
			 ,-0.682638049125671,-0.682668566703796,-0.260597556829453,-0.642445147037506,-0.730399489402771,-0.231818601489067
			 ,-0.682668566703796,0.682668566703796,-0.260597556829453,-0.730399489402771,0.642445147037506,-0.231818601489067
			 ,0.682668566703796,0.682668566703796,-0.260597556829453,0.642445147037506,0.730399489402771,-0.231818601489067
			 ,0.682668566703796,0.682638049125671,0.260597556829453,0.730399489402771,0.642414629459381,0.231818601489067
			 ,-0.682638049125671,0.682638049125671,0.260628074407578,-0.642445147037506,0.730399489402771,0.231818601489067
			 ,-0.682638049125671,-0.682668566703796,0.260597556829453,-0.730368971824646,-0.642445147037506,0.231818601489067
			 ,0.682668566703796,-0.682668566703796,0.260597556829453,0.642445147037506,-0.730399489402771,0.231818601489067
			 ,-0.376995146274567,-0.911618411540985,0.163579210639000,-0.367473363876343,-0.888637959957123,0.274269849061966
			 ,-0.679280996322632,-0.680349111557007,0.275002300739288,0.000000000000000,-0.986449778079987,0.163975954055786
			 ,0.000000000000000,-0.961485624313354,0.274788647890091,-0.344309836626053,-0.832605957984924,0.433759570121765
			 ,-0.297799617052078,-0.720145285129547,0.626636564731598,-0.636646628379822,-0.637684226036072,0.433545947074890
			 ,0.000000000000000,-0.901242077350616,0.433271288871765,-0.911160588264465,-0.378002256155014,0.163792833685875
			 ,-0.888149678707123,-0.368449956178665,0.274575024843216,-0.961363554000854,0.000000000000000,0.275185406208038
			 ,-0.696951210498810,-0.698049843311310,0.164128541946411,-0.832026124000549,-0.345194846391678,0.434156328439713
			 ,-0.719504356384277,-0.298501551151276,0.627033293247223,-0.900967419147491,0.000000000000000,0.433851122856140
			 ,-0.832026124000549,0.345194846391678,0.434156328439713,-0.719504356384277,0.298501551151276,0.627033293247223
			 ,-0.636646628379822,0.637684226036072,0.433545947074890,-0.888149678707123,0.368449956178665,0.274575024843216
			 ,-0.911160588264465,0.378032773733139,0.163792833685875,-0.679280996322632,0.680379629135132,0.275002300739288
			 ,-0.986388742923737,0.000000000000000,0.164250612258911,-0.344309836626053,0.832605957984924,0.433759570121765
			 ,-0.297799617052078,0.720145285129547,0.626636564731598,0.000000000000000,0.901242077350616,0.433271288871765
			 ,-0.367503881454468,0.888637959957123,0.274269849061966,-0.376995146274567,0.911618411540985,0.163579210639000
			 ,0.000000000000000,0.961485624313354,0.274788647890091,-0.696951210498810,0.698049843311310,0.164128541946411
			 ,0.376995146274567,0.911618411540985,0.163579210639000,0.367503881454468,0.888637959957123,0.274269849061966
			 ,0.679280996322632,0.680379629135132,0.274971783161163,0.000000000000000,0.986449778079987,0.164006471633911
			 ,0.344309836626053,0.832605957984924,0.433759570121765,0.297799617052078,0.720145285129547,0.626636564731598
			 ,0.636646628379822,0.637684226036072,0.433545947074890,0.911160588264465,0.378032773733139,0.163792833685875
			 ,0.888149678707123,0.368449956178665,0.274575024843216,0.961363554000854,0.000000000000000,0.275215923786163
			 ,0.696951210498810,0.698049843311310,0.164128541946411,0.832026124000549,0.345194846391678,0.434156328439713
			 ,0.719504356384277,0.298501551151276,0.627033293247223,0.900967419147491,0.000000000000000,0.433851122856140
			 ,0.911160588264465,-0.378032773733139,0.163792833685875,0.888149678707123,-0.368449956178665,0.274575024843216
			 ,0.679280996322632,-0.680379629135132,0.275002300739288,0.696951210498810,-0.698049843311310,0.164128541946411
			 ,0.915738403797150,-0.379894405603409,0.130527660250664,0.986388742923737,0.000000000000000,0.164281129837036
			 ,0.832026124000549,-0.345194846391678,0.434186846017838,0.719504356384277,-0.298501551151276,0.627033293247223
			 ,0.636646628379822,-0.637684226036072,0.433545947074890,-0.217841118574142,-0.526902079582214,0.821497261524200
			 ,0.000000000000000,-0.488753914833069,0.872402131557465,-0.345072776079178,-0.345622122287750,0.872585237026215
			 ,-0.549027979373932,-0.549974083900452,0.629322171211243,0.000000000000000,-0.777367472648621,0.629016995429993
			 ,-0.526322185993195,-0.218390449881554,0.821741402149200,-0.488082528114319,0.000000000000000,0.872768342494965
			 ,-0.776848673820496,0.000000000000000,0.629627346992493,-0.526322185993195,0.218390449881554,0.821741402149200
			 ,-0.345072776079178,0.345622122287750,0.872585237026215,-0.549027979373932,0.549974083900452,0.629322171211243
			 ,-0.217841118574142,0.526902079582214,0.821497261524200,0.000000000000000,0.488753914833069,0.872402131557465
			 ,0.000000000000000,0.777367472648621,0.629016995429993,0.217841118574142,0.526902079582214,0.821497261524200
			 ,0.345072776079178,0.345622122287750,0.872585237026215,0.549027979373932,0.549974083900452,0.629322171211243
			 ,0.526291668415070,0.218390449881554,0.821741402149200,0.488082528114319,0.000000000000000,0.872768342494965
			 ,0.776848673820496,0.000000000000000,0.629627346992493,0.526291668415070,-0.218390449881554,0.821741402149200
			 ,0.345072776079178,-0.345622122287750,0.872585237026215,0.549027979373932,-0.549974083900452,0.629322171211243
			 ,0.217841118574142,-0.526902079582214,0.821497261524200,0.297799617052078,-0.720145285129547,0.626636564731598
			 ,0.376995146274567,-0.911618411540985,0.163579210639000,0.367473363876343,-0.888637959957123,0.274269849061966
			 ,0.344309836626053,-0.832605957984924,0.433759570121765,0.915738403797150,0.379894405603409,0.130527660250664
			 ,0.378887295722961,-0.916196167469025,0.130344554781914,-0.915738403797150,-0.379894405603409,0.130497142672539
			 ,-0.378887295722961,-0.916196167469025,0.130344554781914,0.378887295722961,0.916196167469025,0.130344554781914
			 ,-0.915738403797150,0.379894405603409,0.130497142672539,-0.378887295722961,0.916196167469025,0.130344554781914
			 ,0.700460851192474,-0.701559484004974,0.130832850933075,0.991363286972046,0.000000000000000,0.130954921245575
			 ,0.000000000000000,0.000000000000000,1.000000000000000,0.700460851192474,0.701559484004974,0.130832850933075
			 ,0.000000000000000,-0.991393804550171,0.130710780620575,-0.700460851192474,-0.701559484004974,0.130832850933075
			 ,0.000000000000000,0.991393804550171,0.130741298198700,-0.991363286972046,0.000000000000000,0.130954921245575
			 ,-0.700460851192474,0.701559484004974,0.130832850933075,-0.598681628704071,0.781182289123535,0.176885277032852
			 ,-0.612720131874084,0.756035029888153,0.230109557509422,-0.313333541154861,0.596697926521301,0.738731026649475
			 ,-0.392956316471100,0.711416959762573,0.582598328590393,0.768761277198792,-0.639484822750092,0.000000000000000
			 ,0.768761277198792,-0.639484822750092,0.000000000000000,0.781365394592285,-0.615985572338104,0.099948115646839
			 ,-0.666127502918243,0.712515652179718,0.220343634486198,-0.723166584968567,0.666981995105743,0.179174169898033
			 ,-0.585833311080933,0.314584791660309,0.746848940849304,-0.409802556037903,0.465956598520279,0.784142553806305
			 ,-0.728354752063751,0.671254634857178,-0.137363806366920,-0.722525715827942,0.677663505077362,-0.136600852012634
			 ,-0.803796529769897,0.229285567998886,-0.548905909061432,-0.819666147232056,0.163640245795250,-0.548936426639557
			 ,-0.755760371685028,0.641956865787506,-0.129032254219055,-0.768913865089417,0.631977319717407,0.096713155508041
			 ,-0.787102878093719,0.616718053817749,0.008239997550845,-0.938962996006012,0.019440289586782,0.343424797058105
			 ,-0.780907630920410,0.150639355182648,0.606158614158630,-0.781212806701660,0.620105564594269,-0.071626938879490
			 ,-0.888393819332123,0.057557910680771,-0.455397188663483,-0.970488607883453,-0.017426069825888,-0.240455329418182
			 ,0.781182289123535,-0.599810779094696,0.172978907823563,0.600604295730591,-0.317514568567276,0.733756542205811
			 ,0.756767451763153,-0.613605141639709,0.225318148732185,0.768761277198792,-0.639484822750092,0.000000000000000
			 ,0.714224696159363,-0.397564619779587,0.575975835323334,0.635364830493927,-0.766380786895752,0.094607383012772
			 ,0.026490066200495,-0.939451277256012,0.341624200344086,0.620471835136414,-0.784173071384430,0.008026367984712
			 ,0.669606626033783,-0.721671164035797,0.175359353423119,0.156926169991493,-0.782067298889160,0.603045761585236
			 ,0.623737275600433,-0.778466165065765,-0.070101015269756,-0.010193182155490,-0.970885336399078,-0.239295631647110
			 ,0.064424574375153,-0.889156758785248,-0.452986240386963,0.673665583133698,-0.726676225662231,-0.134311959147453
			 ,0.170293286442757,-0.820673227310181,-0.545396268367767,0.236030146479607,-0.804712057113647,-0.544694364070892
			 ,0.645100235939026,-0.753563046455383,-0.126255080103874,0.714163661003113,-0.665883362293243,0.215704828500748
			 ,0.320047616958618,-0.587969601154327,0.742820501327515,0.768761277198792,-0.639515340328217,0.000000000000000
			 ,0.470656454563141,-0.412884920835495,0.779717385768890,0.045991394668818,0.232886746525764,0.971404135227203
			 ,0.072115235030651,0.304696798324585,0.949705481529236,-0.763512074947357,-0.570848703384399,-0.301919609308243
			 ,-0.799127161502838,-0.599017322063446,0.050538651645184,-0.998626649379730,-0.035126805305481,0.038636431097984
			 ,-0.524674236774445,-0.731131911277771,0.435987412929535,-0.346232503652573,-0.541550934314728,0.766045093536377
			 ,-0.125919371843338,-0.305459767580032,0.943815410137177,0.076631978154182,-0.094454787671566,0.992553472518921
			 ,-0.729087173938751,-0.527359843254089,0.436170548200607,-0.539506196975708,-0.348643451929092,0.766350269317627
			 ,-0.303506582975388,-0.128025144338608,0.944151103496552,-0.664662599563599,-0.475569933652878,-0.576219975948334
			 ,-0.473097920417786,-0.666585266590118,-0.576006352901459,-0.582506775856018,-0.375072479248047,-0.721091330051422
			 ,-0.560289323329926,-0.339335292577744,-0.755577266216278,-0.336344480514526,-0.562456130981445,-0.755302608013153
			 ,-0.092532120645046,0.074709311127663,0.992889165878296,0.234992519021034,0.043916136026382,0.970976889133453
			 ,-0.568254649639130,-0.765465259552002,-0.301767021417618,0.307626575231552,0.069429606199265,0.948942542076111
			 ,-0.372356325387955,-0.584551513195038,-0.720847189426422,-0.596301138401031,-0.801141381263733,0.050538651645184
			 ,-0.027741324156523,-0.998870790004730,0.038331247866154,0.768761277198792,-0.639515340328217,0.000000000000000
			 ,0.768761277198792,-0.639515340328217,0.000000000000000,-0.652790904045105,0.757377862930298,-0.013702810741961
			 ,-0.639484822750092,0.768761277198792,0.000000000000000,-0.639484822750092,0.768761277198792,0.000000000000000
			 ,-0.639484822750092,0.768761277198792,0.000000000000000,0.768761277198792,-0.639515340328217,0.000000000000000
			 ,-0.639484822750092,0.768761277198792,0.000000000000000,-0.639484822750092,0.768761277198792,0.000000000000000
			 ,0.757377862930298,-0.652790904045105,-0.013733329251409,0.768761277198792,-0.639515340328217,0.000000000000000
			 ,-0.639484822750092,0.768761277198792,0.000000000000000,-0.639484822750092,0.768761277198792,0.000000000000000
			 ,0.768761277198792,-0.639515340328217,0.000000000000000,-0.639484822750092,0.768761277198792,0.000000000000000
			 ,-0.615344703197479,0.781548500061035,0.102328561246395,-0.639484822750092,0.768761277198792,0.000000000000000
			 ,0.679830312728882,-0.721030294895172,-0.133640557527542,-0.660847783088684,0.750144958496094,-0.022186957299709
			 ,0.750144958496094,-0.660878300666809,-0.022217474877834,0.781182289123535,0.598681628704071,0.176885277032852
			 ,0.756035029888153,0.612720131874084,0.230109557509422,0.596697926521301,0.313333541154861,0.738731026649475
			 ,0.711416959762573,0.392956316471100,0.582598328590393,-0.639484822750092,-0.768761277198792,0.000000000000000
			 ,-0.639484822750092,-0.768761277198792,0.000000000000000,-0.615985572338104,-0.781365394592285,0.099948115646839
			 ,0.712515652179718,0.666127502918243,0.220343634486198,0.666981995105743,0.723166584968567,0.179174169898033
			 ,0.314584791660309,0.585833311080933,0.746848940849304,0.465956598520279,0.409802556037903,0.784142553806305
			 ,0.671254634857178,0.728354752063751,-0.137363806366920,0.677663505077362,0.722525715827942,-0.136600852012634
			 ,0.229285567998886,0.803796529769897,-0.548905909061432,0.163640245795250,0.819666147232056,-0.548936426639557
			 ,0.641956865787506,0.755760371685028,-0.129032254219055,0.631977319717407,0.768913865089417,0.096713155508041
			 ,0.616718053817749,0.787102878093719,0.008239997550845,0.019440289586782,0.938962996006012,0.343424797058105
			 ,0.150639355182648,0.780907630920410,0.606158614158630,0.620105564594269,0.781212806701660,-0.071626938879490
			 ,0.057557910680771,0.888393819332123,-0.455397188663483,-0.017426069825888,0.970488607883453,-0.240455329418182
			 ,-0.599810779094696,-0.781182289123535,0.172978907823563,-0.317514568567276,-0.600604295730591,0.733756542205811
			 ,-0.613605141639709,-0.756767451763153,0.225318148732185,-0.639484822750092,-0.768761277198792,0.000000000000000
			 ,-0.397564619779587,-0.714224696159363,0.575975835323334,-0.766380786895752,-0.635364830493927,0.094607383012772
			 ,-0.939451277256012,-0.026490066200495,0.341624200344086,-0.784173071384430,-0.620471835136414,0.008026367984712
			 ,-0.721671164035797,-0.669606626033783,0.175359353423119,-0.782067298889160,-0.156926169991493,0.603045761585236
			 ,-0.778466165065765,-0.623737275600433,-0.070101015269756,-0.970885336399078,0.010193182155490,-0.239295631647110
			 ,-0.889156758785248,-0.064424574375153,-0.452986240386963,-0.726676225662231,-0.673665583133698,-0.134311959147453
			 ,-0.820673227310181,-0.170293286442757,-0.545396268367767,-0.804712057113647,-0.236030146479607,-0.544694364070892
			 ,-0.753563046455383,-0.645100235939026,-0.126255080103874,-0.665883362293243,-0.714163661003113,0.215704828500748
			 ,-0.587969601154327,-0.320047616958618,0.742820501327515,-0.639515340328217,-0.768761277198792,0.000000000000000
			 ,-0.412884920835495,-0.470656454563141,0.779717385768890,0.232886746525764,-0.045991394668818,0.971404135227203
			 ,0.304696798324585,-0.072115235030651,0.949705481529236,-0.570848703384399,0.763512074947357,-0.301919609308243
			 ,-0.599017322063446,0.799127161502838,0.050538651645184,-0.035126805305481,0.998626649379730,0.038636431097984
			 ,-0.731131911277771,0.524674236774445,0.435987412929535,-0.541550934314728,0.346232503652573,0.766045093536377
			 ,-0.305459767580032,0.125919371843338,0.943815410137177,-0.094454787671566,-0.076631978154182,0.992553472518921
			 ,-0.527359843254089,0.729087173938751,0.436170548200607,-0.348643451929092,0.539506196975708,0.766350269317627
			 ,-0.128025144338608,0.303506582975388,0.944151103496552,-0.475569933652878,0.664662599563599,-0.576219975948334
			 ,-0.666585266590118,0.473097920417786,-0.576006352901459,-0.375072479248047,0.582506775856018,-0.721091330051422
			 ,-0.339335292577744,0.560289323329926,-0.755577266216278,-0.562456130981445,0.336344480514526,-0.755302608013153
			 ,0.074709311127663,0.092532120645046,0.992889165878296,0.043916136026382,-0.234992519021034,0.970976889133453
			 ,-0.765465259552002,0.568254649639130,-0.301767021417618,0.069429606199265,-0.307626575231552,0.948942542076111
			 ,-0.584551513195038,0.372356325387955,-0.720847189426422,-0.801141381263733,0.596301138401031,0.050538651645184
			 ,-0.998870790004730,0.027741324156523,0.038331247866154,-0.639515340328217,-0.768761277198792,0.000000000000000
			 ,-0.639515340328217,-0.768761277198792,0.000000000000000,0.757377862930298,0.652790904045105,-0.013702810741961
			 ,0.768761277198792,0.639484822750092,0.000000000000000,0.768761277198792,0.639484822750092,0.000000000000000
			 ,0.768761277198792,0.639484822750092,0.000000000000000,-0.639515340328217,-0.768761277198792,0.000000000000000
			 ,0.768761277198792,0.639484822750092,0.000000000000000,0.768761277198792,0.639484822750092,0.000000000000000
			 ,-0.652790904045105,-0.757377862930298,-0.013733329251409,-0.639515340328217,-0.768761277198792,0.000000000000000
			 ,0.768761277198792,0.639484822750092,0.000000000000000,0.768761277198792,0.639484822750092,0.000000000000000
			 ,-0.639515340328217,-0.768761277198792,0.000000000000000,0.768761277198792,0.639484822750092,0.000000000000000
			 ,0.781548500061035,0.615344703197479,0.102328561246395,0.768761277198792,0.639484822750092,0.000000000000000
			 ,-0.721030294895172,-0.679830312728882,-0.133640557527542,0.750144958496094,0.660847783088684,-0.022186957299709
			 ,-0.660878300666809,-0.750144958496094,-0.022217474877834,0.598681628704071,-0.781182289123535,0.176885277032852
			 ,0.612720131874084,-0.756035029888153,0.230109557509422,0.313333541154861,-0.596697926521301,0.738731026649475
			 ,0.392956316471100,-0.711416959762573,0.582598328590393,-0.768761277198792,0.639484822750092,0.000000000000000
			 ,-0.768761277198792,0.639484822750092,0.000000000000000,-0.781365394592285,0.615985572338104,0.099948115646839
			 ,0.666127502918243,-0.712515652179718,0.220343634486198,0.723166584968567,-0.666981995105743,0.179174169898033
			 ,0.585833311080933,-0.314584791660309,0.746848940849304,0.409802556037903,-0.465956598520279,0.784142553806305
			 ,0.728354752063751,-0.671254634857178,-0.137363806366920,0.722525715827942,-0.677663505077362,-0.136600852012634
			 ,0.803796529769897,-0.229285567998886,-0.548905909061432,0.819666147232056,-0.163640245795250,-0.548936426639557
			 ,0.755760371685028,-0.641956865787506,-0.129032254219055,0.768913865089417,-0.631977319717407,0.096713155508041
			 ,0.787102878093719,-0.616718053817749,0.008239997550845,0.938962996006012,-0.019440289586782,0.343424797058105
			 ,0.780907630920410,-0.150639355182648,0.606158614158630,0.781212806701660,-0.620105564594269,-0.071626938879490
			 ,0.888393819332123,-0.057557910680771,-0.455397188663483,0.970488607883453,0.017426069825888,-0.240455329418182
			 ,-0.781182289123535,0.599810779094696,0.172978907823563,-0.600604295730591,0.317514568567276,0.733756542205811
			 ,-0.756767451763153,0.613605141639709,0.225318148732185,-0.768761277198792,0.639484822750092,0.000000000000000
			 ,-0.714224696159363,0.397564619779587,0.575975835323334,-0.635364830493927,0.766380786895752,0.094607383012772
			 ,-0.026490066200495,0.939451277256012,0.341624200344086,-0.620471835136414,0.784173071384430,0.008026367984712
			 ,-0.669606626033783,0.721671164035797,0.175359353423119,-0.156926169991493,0.782067298889160,0.603045761585236
			 ,-0.623737275600433,0.778466165065765,-0.070101015269756,0.010193182155490,0.970885336399078,-0.239295631647110
			 ,-0.064424574375153,0.889156758785248,-0.452986240386963,-0.673665583133698,0.726676225662231,-0.134311959147453
			 ,-0.170293286442757,0.820673227310181,-0.545396268367767,-0.236030146479607,0.804712057113647,-0.544694364070892
			 ,-0.645100235939026,0.753563046455383,-0.126255080103874,-0.714163661003113,0.665883362293243,0.215704828500748
			 ,-0.320047616958618,0.587969601154327,0.742820501327515,-0.768761277198792,0.639515340328217,0.000000000000000
			 ,-0.470656454563141,0.412884920835495,0.779717385768890,-0.045991394668818,-0.232886746525764,0.971404135227203
			 ,-0.072115235030651,-0.304696798324585,0.949705481529236,0.763512074947357,0.570848703384399,-0.301919609308243
			 ,0.799127161502838,0.599017322063446,0.050538651645184,0.998626649379730,0.035126805305481,0.038636431097984
			 ,0.524674236774445,0.731131911277771,0.435987412929535,0.346232503652573,0.541550934314728,0.766045093536377
			 ,0.125919371843338,0.305459767580032,0.943815410137177,-0.076631978154182,0.094454787671566,0.992553472518921
			 ,0.729087173938751,0.527359843254089,0.436170548200607,0.539506196975708,0.348643451929092,0.766350269317627
			 ,0.303506582975388,0.128025144338608,0.944151103496552,0.664662599563599,0.475569933652878,-0.576219975948334
			 ,0.473097920417786,0.666585266590118,-0.576006352901459,0.582506775856018,0.375072479248047,-0.721091330051422
			 ,0.560289323329926,0.339335292577744,-0.755577266216278,0.336344480514526,0.562456130981445,-0.755302608013153
			 ,0.092532120645046,-0.074709311127663,0.992889165878296,-0.234992519021034,-0.043916136026382,0.970976889133453
			 ,0.568254649639130,0.765465259552002,-0.301767021417618,-0.307626575231552,-0.069429606199265,0.948942542076111
			 ,0.372356325387955,0.584551513195038,-0.720847189426422,0.596301138401031,0.801141381263733,0.050538651645184
			 ,0.027741324156523,0.998870790004730,0.038331247866154,-0.768761277198792,0.639515340328217,0.000000000000000
			 ,-0.768761277198792,0.639515340328217,0.000000000000000,0.652790904045105,-0.757377862930298,-0.013702810741961
			 ,0.639484822750092,-0.768761277198792,0.000000000000000,0.639484822750092,-0.768761277198792,0.000000000000000
			 ,0.639484822750092,-0.768761277198792,0.000000000000000,-0.768761277198792,0.639515340328217,0.000000000000000
			 ,0.639484822750092,-0.768761277198792,0.000000000000000,0.639484822750092,-0.768761277198792,0.000000000000000
			 ,-0.757377862930298,0.652790904045105,-0.013733329251409,-0.768761277198792,0.639515340328217,0.000000000000000
			 ,0.639484822750092,-0.768761277198792,0.000000000000000,0.639484822750092,-0.768761277198792,0.000000000000000
			 ,-0.768761277198792,0.639515340328217,0.000000000000000,0.639484822750092,-0.768761277198792,0.000000000000000
			 ,0.615344703197479,-0.781548500061035,0.102328561246395,0.639484822750092,-0.768761277198792,0.000000000000000
			 ,-0.679830312728882,0.721030294895172,-0.133640557527542,0.660847783088684,-0.750144958496094,-0.022186957299709
			 ,-0.750144958496094,0.660878300666809,-0.022217474877834,-0.781182289123535,-0.598681628704071,0.176885277032852
			 ,-0.756035029888153,-0.612720131874084,0.230109557509422,-0.596697926521301,-0.313333541154861,0.738731026649475
			 ,-0.711416959762573,-0.392956316471100,0.582598328590393,0.639484822750092,0.768761277198792,0.000000000000000
			 ,0.639484822750092,0.768761277198792,0.000000000000000,0.615985572338104,0.781365394592285,0.099948115646839
			 ,-0.712515652179718,-0.666127502918243,0.220343634486198,-0.666981995105743,-0.723166584968567,0.179174169898033
			 ,-0.314584791660309,-0.585833311080933,0.746848940849304,-0.465956598520279,-0.409802556037903,0.784142553806305
			 ,-0.671254634857178,-0.728354752063751,-0.137363806366920,-0.677663505077362,-0.722525715827942,-0.136600852012634
			 ,-0.229285567998886,-0.803796529769897,-0.548905909061432,-0.163640245795250,-0.819666147232056,-0.548936426639557
			 ,-0.641956865787506,-0.755760371685028,-0.129032254219055,-0.631977319717407,-0.768913865089417,0.096713155508041
			 ,-0.616718053817749,-0.787102878093719,0.008239997550845,-0.019440289586782,-0.938962996006012,0.343424797058105
			 ,-0.150639355182648,-0.780907630920410,0.606158614158630,-0.620105564594269,-0.781212806701660,-0.071626938879490
			 ,-0.057557910680771,-0.888393819332123,-0.455397188663483,0.017426069825888,-0.970488607883453,-0.240455329418182
			 ,0.599810779094696,0.781182289123535,0.172978907823563,0.317514568567276,0.600604295730591,0.733756542205811
			 ,0.613605141639709,0.756767451763153,0.225318148732185,0.639484822750092,0.768761277198792,0.000000000000000
			 ,0.397564619779587,0.714224696159363,0.575975835323334,0.766380786895752,0.635364830493927,0.094607383012772
			 ,0.939451277256012,0.026490066200495,0.341624200344086,0.784173071384430,0.620471835136414,0.008026367984712
			 ,0.721671164035797,0.669606626033783,0.175359353423119,0.782067298889160,0.156926169991493,0.603045761585236
			 ,0.778466165065765,0.623737275600433,-0.070101015269756,0.970885336399078,-0.010193182155490,-0.239295631647110
			 ,0.889156758785248,0.064424574375153,-0.452986240386963,0.726676225662231,0.673665583133698,-0.134311959147453
			 ,0.820673227310181,0.170293286442757,-0.545396268367767,0.804712057113647,0.236030146479607,-0.544694364070892
			 ,0.753563046455383,0.645100235939026,-0.126255080103874,0.665883362293243,0.714163661003113,0.215704828500748
			 ,0.587969601154327,0.320047616958618,0.742820501327515,0.639515340328217,0.768761277198792,0.000000000000000
			 ,0.412884920835495,0.470656454563141,0.779717385768890,-0.232886746525764,0.045991394668818,0.971404135227203
			 ,-0.304696798324585,0.072115235030651,0.949705481529236,0.570848703384399,-0.763512074947357,-0.301919609308243
			 ,0.599017322063446,-0.799127161502838,0.050538651645184,0.035126805305481,-0.998626649379730,0.038636431097984
			 ,0.731131911277771,-0.524674236774445,0.435987412929535,0.541550934314728,-0.346232503652573,0.766045093536377
			 ,0.305459767580032,-0.125919371843338,0.943815410137177,0.094454787671566,0.076631978154182,0.992553472518921
			 ,0.527359843254089,-0.729087173938751,0.436170548200607,0.348643451929092,-0.539506196975708,0.766380786895752
			 ,0.128025144338608,-0.303506582975388,0.944151103496552,0.475569933652878,-0.664662599563599,-0.576219975948334
			 ,0.666585266590118,-0.473097920417786,-0.576006352901459,0.375072479248047,-0.582506775856018,-0.721091330051422
			 ,0.339335292577744,-0.560289323329926,-0.755577266216278,0.562456130981445,-0.336344480514526,-0.755302608013153
			 ,-0.074709311127663,-0.092532120645046,0.992889165878296,-0.043916136026382,0.234992519021034,0.970976889133453
			 ,0.765465259552002,-0.568254649639130,-0.301767021417618,-0.069429606199265,0.307626575231552,0.948942542076111
			 ,0.584551513195038,-0.372356325387955,-0.720847189426422,0.801141381263733,-0.596301138401031,0.050538651645184
			 ,0.998870790004730,-0.027741324156523,0.038331247866154,0.639515340328217,0.768761277198792,0.000000000000000
			 ,0.639515340328217,0.768761277198792,0.000000000000000,-0.757377862930298,-0.652790904045105,-0.013702810741961
			 ,-0.768761277198792,-0.639484822750092,0.000000000000000,-0.768761277198792,-0.639484822750092,0.000000000000000
			 ,-0.768761277198792,-0.639484822750092,0.000000000000000,0.639515340328217,0.768761277198792,0.000000000000000
			 ,-0.768761277198792,-0.639484822750092,0.000000000000000,-0.768761277198792,-0.639484822750092,0.000000000000000
			 ,0.652790904045105,0.757377862930298,-0.013733329251409,0.639515340328217,0.768761277198792,0.000000000000000
			 ,-0.768761277198792,-0.639484822750092,0.000000000000000,-0.768761277198792,-0.639484822750092,0.000000000000000
			 ,0.639515340328217,0.768761277198792,0.000000000000000,-0.768761277198792,-0.639484822750092,0.000000000000000
			 ,-0.781548500061035,-0.615344703197479,0.102328561246395,-0.768761277198792,-0.639484822750092,0.000000000000000
			 ,0.721030294895172,0.679830312728882,-0.133640557527542,-0.750144958496094,-0.660847783088684,-0.022186957299709
			 ,0.660878300666809,0.750144958496094,-0.022217474877834,0.157078772783279,-0.068788722157478,0.985167980194092
			 ,0.122745446860790,-0.122775964438915,0.984801769256592,-0.022400585934520,0.022400585934520,0.999481201171875
			 ,-0.029206212610006,0.013611255213618,0.999450683593750,0.167058318853378,0.000000000000000,0.985930979251862
			 ,0.232123777270317,0.000000000000000,0.972655415534973,-0.289803773164749,0.129581585526466,0.948240578174591
			 ,-0.225440233945847,0.225440233945847,0.947782814502716,-0.452833652496338,0.452833652496338,0.767998278141022
			 ,-0.583239257335663,0.259651482105255,0.769676804542542,-0.316934734582901,0.000000000000000,0.948423743247986
			 ,-0.035248879343271,0.000000000000000,0.999359130859375,-0.821436226367950,0.364452034235001,0.438581496477127
			 ,-0.636158347129822,0.636158347129822,0.436536759138107,-0.706228852272034,0.706228852272034,0.049226354807615
			 ,-0.913083255290985,0.404705941677094,0.049531541764736,-0.897396743297577,0.000000000000000,0.441145062446594
			 ,-0.636494040489197,0.000000000000000,0.771263778209686,-0.870113193988800,0.385937064886093,-0.306466877460480
			 ,-0.673451960086823,0.673451960086823,-0.304696798324585,-0.743430912494659,0.330301821231842,-0.581530213356018
			 ,-0.810754716396332,0.000000000000000,-0.585345029830933,-0.951017796993256,0.000000000000000,-0.309060931205750
			 ,-0.157078772783279,0.068788722157478,0.985167980194092,0.029206212610006,-0.013611255213618,0.999450683593750
			 ,-0.167058318853378,0.000000000000000,0.985930979251862,-0.122745446860790,0.122775964438915,0.984801769256592
			 ,0.022400585934520,-0.022400585934520,0.999481201171875,-0.289803773164749,-0.129581585526466,0.948240578174591
			 ,-0.583239257335663,-0.259651482105255,0.769676804542542,-0.452833652496338,-0.452833652496338,0.767998278141022
			 ,-0.225440233945847,-0.225440233945847,0.947782814502716,-0.029206212610006,-0.013611255213618,0.999450683593750
			 ,-0.278420358896255,-0.625873565673828,-0.728507339954376,0.000000000000000,-0.680257558822632,-0.732963025569916
			 ,-0.330301821231842,-0.743430912494659,-0.581530213356018,-0.576525151729584,-0.576525151729584,-0.578966617584229
			 ,-0.821436226367950,-0.364452034235001,0.438581496477127,-0.913083255290985,-0.404705941677094,0.049531541764736
			 ,-0.706228852272034,-0.706228852272034,0.049226354807615,-0.636158347129822,-0.636158347129822,0.436536759138107
			 ,-0.625873565673828,-0.278420358896255,-0.728507339954376,-0.486281931400299,-0.486281931400299,-0.725943803787231
			 ,-0.743430912494659,-0.330301821231842,-0.581530213356018,-0.680257558822632,0.000000000000000,-0.732963025569916
			 ,-0.638233602046967,0.000000000000000,-0.769798874855042,-0.385937064886093,0.870113193988800,-0.306466877460480
			 ,0.000000000000000,0.951017796993256,-0.309060931205750,0.000000000000000,0.810754716396332,-0.585345029830933
			 ,-0.330301821231842,0.743430912494659,-0.581530213356018,-0.404705941677094,0.913083255290985,0.049531541764736
			 ,-0.129581585526466,0.289803773164749,0.948240578174591,0.000000000000000,0.316934734582901,0.948423743247986
			 ,-0.259651482105255,0.583239257335663,0.769676804542542,-0.013611255213618,0.029206212610006,0.999450683593750
			 ,0.000000000000000,0.035248879343271,0.999359130859375,0.068697161972523,0.156987220048904,0.985198497772217
			 ,0.122745446860790,0.122775964438915,0.984801769256592,-0.022400585934520,-0.022400585934520,0.999481201171875
			 ,-0.013611255213618,-0.029206212610006,0.999450683593750,0.000000000000000,0.166905730962753,0.985961496829987
			 ,0.094882048666477,0.216376230120659,0.971678793430328,0.129581585526466,0.289803773164749,0.948240578174591
			 ,0.259651482105255,0.583239257335663,0.769676804542542,0.013611255213618,0.029206212610006,0.999450683593750
			 ,0.225440233945847,0.225440233945847,0.947782814502716,0.452833652496338,0.452833652496338,0.767998278141022
			 ,-0.870113193988800,-0.385937064886093,-0.306466877460480,-0.673451960086823,-0.673451960086823,-0.304696798324585
			 ,0.821436226367950,-0.364452034235001,0.438581496477127,0.913083255290985,-0.404705941677094,0.049531541764736
			 ,0.897396743297577,0.000000000000000,0.441145062446594,0.636494040489197,0.000000000000000,0.771263778209686
			 ,0.583239257335663,-0.259651482105255,0.769676804542542,0.636158347129822,-0.636158347129822,0.436536759138107
			 ,0.706228852272034,-0.706228852272034,0.049226354807615,-0.129581585526466,-0.289803773164749,0.948240578174591
			 ,-0.259651482105255,-0.583239257335663,0.769676804542542,0.000000000000000,-0.316934734582901,0.948423743247986
			 ,0.000000000000000,-0.035248879343271,0.999359130859375,-0.278420358896255,0.625873565673828,-0.728507339954376
			 ,-0.486281931400299,0.486281931400299,-0.725974321365356,-0.576525151729584,0.576525151729584,-0.578966617584229
			 ,0.000000000000000,0.680257558822632,-0.732963025569916,-0.068697161972523,0.156987220048904,0.985198497772217
			 ,0.013611255213618,-0.029206212610006,0.999450683593750,0.157078772783279,0.068788722157478,0.985167980194092
			 ,0.289803773164749,-0.129581585526466,0.948240578174591,0.316934734582901,0.000000000000000,0.948423743247986
			 ,0.035248879343271,0.000000000000000,0.999359130859375,0.225440233945847,-0.225440233945847,0.947782814502716
			 ,0.452833652496338,-0.452833652496338,0.767998278141022,0.870113193988800,0.385937064886093,-0.306466877460480
			 ,0.951017796993256,0.000000000000000,-0.309060931205750,0.810754716396332,0.000000000000000,-0.585345029830933
			 ,0.743430912494659,0.330301821231842,-0.581530213356018,0.673451960086823,0.673451960086823,-0.304696798324585
			 ,0.706228852272034,0.706228852272034,0.049226354807615,0.913083255290985,0.404705941677094,0.049531541764736
			 ,-0.625873565673828,0.278420358896255,-0.728507339954376,0.870113193988800,-0.385937064886093,-0.306466877460480
			 ,0.743430912494659,-0.330301821231842,-0.581530213356018,0.673451960086823,-0.673451960086823,-0.304696798324585
			 ,0.385937064886093,0.870113193988800,-0.306466877460480,0.330301821231842,0.743430912494659,-0.581530213356018
			 ,0.404705941677094,0.913083255290985,0.049531541764736,-0.364452034235001,0.821436226367950,0.438581496477127
			 ,0.000000000000000,0.897396743297577,0.441145062446594,0.000000000000000,0.636494040489197,0.771263778209686
			 ,0.625873565673828,-0.278420358896255,-0.728507339954376,0.680257558822632,0.000000000000000,-0.732963025569916
			 ,0.576525151729584,-0.576525151729584,-0.578966617584229,-0.157078772783279,-0.068788722157478,0.985167980194092
			 ,0.029206212610006,0.013611255213618,0.999450683593750,0.022400585934520,0.022400585934520,0.999481201171875
			 ,-0.122745446860790,-0.122775964438915,0.984801769256592,-0.216589868068695,-0.095034636557102,0.971617758274078
			 ,0.278420358896255,0.625873565673828,-0.728507339954376,0.576525151729584,0.576525151729584,-0.578966617584229
			 ,0.821436226367950,0.364452034235001,0.438581496477127,0.636158347129822,0.636158347129822,0.436536759138107
			 ,0.583239257335663,0.259651482105255,0.769676804542542,-0.385937064886093,-0.870113193988800,-0.306466877460480
			 ,0.000000000000000,-0.810754716396332,-0.585345029830933,0.000000000000000,-0.951017796993256,-0.309060931205750
			 ,-0.404705941677094,-0.913083255290985,0.049531541764736,0.385937064886093,-0.870113193988800,-0.306466877460480
			 ,0.330301821231842,-0.743430912494659,-0.581530213356018,0.404705941677094,-0.913083255290985,0.049531541764736
			 ,0.278420358896255,-0.625873565673828,-0.728507339954376,0.486281931400299,-0.486281931400299,-0.725943803787231
			 ,-0.068697161972523,-0.156987220048904,0.985198497772217,0.000000000000000,-0.166905730962753,0.985961496829987
			 ,0.000000000000000,-0.231757566332817,0.972746968269348,-0.094882048666477,-0.216376230120659,0.971678793430328
			 ,0.364452034235001,0.821436226367950,0.438581496477127,0.625873565673828,0.278420358896255,-0.728507339954376
			 ,0.486281931400299,0.486281931400299,-0.725943803787231,-0.364452034235001,-0.821436226367950,0.438581496477127
			 ,0.000000000000000,-0.897396743297577,0.441145062446594,0.000000000000000,-0.636494040489197,0.771263778209686
			 ,0.364452034235001,-0.821436226367950,0.438581496477127,0.259651482105255,-0.583239257335663,0.769676804542542
			 ,0.068697161972523,-0.156987220048904,0.985198497772217,0.094882048666477,-0.216376230120659,0.971678793430328
			 ,0.129581585526466,-0.289803773164749,0.948240578174591,0.289803773164749,0.129581585526466,0.948240578174591
			 ,-0.232123777270317,0.000000000000000,0.972655415534973,0.216589868068695,-0.095034636557102,0.971617758274078
			 ,0.000000000000000,0.231757566332817,0.972746968269348,-0.094882048666477,0.216376230120659,0.971678793430328
			 ,-0.216589868068695,0.095034636557102,0.971617758274078,0.216589868068695,0.095034636557102,0.971617758274078
			 ,0.000000000000000,-0.638264119625092,-0.769798874855042,0.263405263423920,0.587664425373077,-0.765007495880127
			 ,0.000000000000000,0.638233602046967,-0.769798874855042,-0.263405263423920,-0.587664425373077,-0.765007495880127
			 ,-0.263405263423920,0.587664425373077,-0.765007495880127,0.638264119625092,0.000000000000000,-0.769798874855042
			 ,0.263405263423920,-0.587664425373077,-0.765007495880127,0.587664425373077,-0.263405263423920,-0.765007495880127
			 ,0.587664425373077,0.263405263423920,-0.765007495880127,-0.587664425373077,0.263405263423920,-0.765007495880127
			 ,-0.587664425373077,-0.263405263423920,-0.765007495880127,-0.998748719692230,0.000000000000000,0.049989320337772
			 ,0.000000000000000,0.998748719692230,0.049989320337772,0.169194608926773,0.169255658984184,0.970915853977203
			 ,0.998748719692230,0.000000000000000,0.049989320337772,-0.169194608926773,-0.169255658984184,0.970915853977203
			 ,0.000000000000000,-0.998748719692230,0.049989320337772,0.169194608926773,-0.169255658984184,0.970915853977203
			 ,-0.169194608926773,0.169255658984184,0.970915853977203,-0.457441926002502,-0.457441926002502,-0.762504935264587
			 ,-0.457441926002502,0.457441926002502,-0.762504935264587,0.457441926002502,0.457441926002502,-0.762504935264587
			 ,0.457441926002502,-0.457441926002502,-0.762504935264587,0.000000000000000,-0.404370248317719,-0.914578676223755
			 ,-0.153904840350151,-0.371562838554382,-0.915524780750275,0.000000000000000,0.000000000000000,-1.000000000000000
			 ,-0.371562838554382,0.153904840350151,-0.915555298328400,-0.285897403955460,0.285897403955460,-0.914578676223755
			 ,0.371593356132507,-0.153904840350151,-0.915524780750275,0.285927921533585,-0.285927921533585,-0.914578676223755
			 ,0.000000000000000,0.404339730739594,-0.914578676223755,0.153904840350151,0.371562838554382,-0.915555298328400
			 ,-0.285897403955460,-0.285897403955460,-0.914578676223755,-0.371562838554382,-0.153904840350151,-0.915555298328400
			 ,0.371593356132507,0.153904840350151,-0.915524780750275,0.404370248317719,0.000000000000000,-0.914578676223755
			 ,-0.153904840350151,0.371562838554382,-0.915555298328400,-0.611011087894440,0.253059476613998,0.750053405761719
			 ,-0.808618426322937,0.334940642118454,0.483626812696457,-0.660267949104309,0.000000000000000,0.750999450683594
			 ,-0.648915052413940,0.000000000000000,0.760826468467712,-0.600604295730591,0.248786896467209,0.759819328784943
			 ,-0.458845794200897,0.458845794200897,0.760826468467712,-0.466872155666351,0.466872155666351,0.750999450683594
			 ,-0.253059476613998,0.611011087894440,0.750053405761719,-0.334940642118454,0.808618426322937,0.483626812696457
			 ,-0.248786896467209,0.600604295730591,0.759819328784943,0.000000000000000,0.648915052413940,0.760826468467712
			 ,0.000000000000000,0.660237431526184,0.751030027866364,0.253059476613998,0.611011087894440,0.750053405761719
			 ,0.334940642118454,0.808618426322937,0.483657330274582,0.248786896467209,0.600604295730591,0.759819328784943
			 ,0.458876311779022,0.458876311779022,0.760826468467712,0.466872155666351,0.466872155666351,0.751030027866364
			 ,0.610980570316315,0.253059476613998,0.750053405761719,0.808618426322937,0.334940642118454,0.483657330274582
			 ,0.600604295730591,0.248786896467209,0.759819328784943,0.648915052413940,0.000000000000000,0.760826468467712
			 ,0.660237431526184,0.000000000000000,0.751030027866364,0.610980570316315,-0.253059476613998,0.750053405761719
			 ,0.808618426322937,-0.334940642118454,0.483626812696457,0.600604295730591,-0.248756363987923,0.759819328784943
			 ,0.458845794200897,-0.458845794200897,0.760826468467712,0.466872155666351,-0.466872155666351,0.751030027866364
			 ,0.253059476613998,-0.610980570316315,0.750053405761719,0.334940642118454,-0.808618426322937,0.483626812696457
			 ,0.248756363987923,-0.600604295730591,0.759849846363068,0.000000000000000,-0.648884534835815,0.760856986045837
			 ,0.000000000000000,-0.660237431526184,0.751030027866364,-0.611011087894440,-0.253059476613998,0.750053405761719
			 ,-0.808618426322937,-0.334940642118454,0.483657330274582,-0.466872155666351,-0.466872155666351,0.751030027866364
			 ,-0.458876311779022,-0.458845794200897,0.760826468467712,-0.600604295730591,-0.248786896467209,0.759819328784943
			 ,-0.253059476613998,-0.610980570316315,0.750053405761719,-0.334940642118454,-0.808618426322937,0.483626812696457
			 ,-0.248786896467209,-0.600604295730591,0.759819328784943,-0.704702913761139,0.291879028081894,-0.646626174449921
			 ,-0.628559231758118,0.260353416204453,-0.732871472835541,-0.679189443588257,0.000000000000000,-0.733939647674561
			 ,-0.762260794639587,0.000000000000000,-0.647236526012421,-0.858668804168701,0.355662703514099,-0.368999302387238
			 ,-0.538987398147583,0.538987398147583,-0.647236526012421,-0.480239272117615,0.480239272117615,-0.733939647674561
			 ,-0.923734247684479,0.382610559463501,0.017334513366222,-0.929319143295288,0.000000000000000,-0.369182407855988
			 ,-0.999847412109375,0.000000000000000,0.017365030944347,-0.875423431396484,0.000000000000000,0.483352154493332
			 ,-0.619006931781769,0.619006931781769,0.483352154493332,-0.706991791725159,0.706991791725159,0.017365030944347
			 ,-0.657124519348145,0.657124519348145,-0.369182407855988,-0.291879028081894,0.704702913761139,-0.646626174449921
			 ,-0.260353416204453,0.628559231758118,-0.732871472835541,-0.355662703514099,0.858668804168701,-0.368999302387238
			 ,0.000000000000000,0.762260794639587,-0.647236526012421,0.000000000000000,0.679189443588257,-0.733939647674561
			 ,-0.382610559463501,0.923734247684479,0.017334513366222,0.000000000000000,0.875423431396484,0.483352154493332
			 ,0.000000000000000,0.999847412109375,0.017365030944347,0.000000000000000,0.929319143295288,-0.369182407855988
			 ,0.291879028081894,0.704702913761139,-0.646626174449921,0.260353416204453,0.628559231758118,-0.732871472835541
			 ,0.355662703514099,0.858668804168701,-0.368999302387238,0.538987398147583,0.538987398147583,-0.647236526012421
			 ,0.480269789695740,0.480269789695740,-0.733939647674561,0.382610559463501,0.923734247684479,0.017334513366222
			 ,0.619006931781769,0.619006931781769,0.483352154493332,0.706991791725159,0.706991791725159,0.017365030944347
			 ,0.657124519348145,0.657124519348145,-0.369182407855988,0.704702913761139,0.291879028081894,-0.646626174449921
			 ,0.628559231758118,0.260353416204453,-0.732871472835541,0.858668804168701,0.355662703514099,-0.368999302387238
			 ,0.762260794639587,0.000000000000000,-0.647236526012421,0.679189443588257,0.000000000000000,-0.733909130096436
			 ,0.923734247684479,0.382610559463501,0.017334513366222,0.875423431396484,0.000000000000000,0.483352154493332
			 ,0.999847412109375,0.000000000000000,0.017365030944347,0.929319143295288,0.000000000000000,-0.369182407855988
			 ,0.704702913761139,-0.291879028081894,-0.646626174449921,0.628559231758118,-0.260353416204453,-0.732871472835541
			 ,0.858668804168701,-0.355662703514099,-0.368999302387238,0.538987398147583,-0.538987398147583,-0.647236526012421
			 ,0.480269789695740,-0.480269789695740,-0.733939647674561,0.923734247684479,-0.382610559463501,0.017334513366222
			 ,0.619006931781769,-0.619006931781769,0.483321636915207,0.706991791725159,-0.706991791725159,0.017365030944347
			 ,0.657124519348145,-0.657124519348145,-0.369182407855988,0.291879028081894,-0.704702913761139,-0.646626174449921
			 ,0.260353416204453,-0.628559231758118,-0.732871472835541,0.355662703514099,-0.858668804168701,-0.368999302387238
			 ,0.000000000000000,-0.762260794639587,-0.647236526012421,0.000000000000000,-0.679189443588257,-0.733909130096436
			 ,0.382610559463501,-0.923734247684479,0.017334513366222,0.000000000000000,-0.875423431396484,0.483321636915207
			 ,0.000000000000000,-0.999847412109375,0.017365030944347,0.000000000000000,-0.929319143295288,-0.369182407855988
			 ,-0.704702913761139,-0.291879028081894,-0.646626174449921,-0.628559231758118,-0.260353416204453,-0.732871472835541
			 ,-0.480239272117615,-0.480239272117615,-0.733939647674561,-0.538987398147583,-0.538987398147583,-0.647236526012421
			 ,-0.858668804168701,-0.355662703514099,-0.368999302387238,-0.923734247684479,-0.382610559463501,0.017334513366222
			 ,-0.657124519348145,-0.657124519348145,-0.369182407855988,-0.706991791725159,-0.706991791725159,0.017365030944347
			 ,-0.619006931781769,-0.619006931781769,0.483352154493332,-0.291879028081894,-0.704702913761139,-0.646626174449921
			 ,-0.260353416204453,-0.628559231758118,-0.732871472835541,-0.355662703514099,-0.858668804168701,-0.368999302387238
			 ,-0.382610559463501,-0.923734247684479,0.017334513366222,-0.404339730739594,0.000000000000000,-0.914578676223755
			 ,0.285927921533585,0.285927921533585,-0.914578676223755,0.153904840350151,-0.371593356132507,-0.915524780750275
		}
		LayerElementSmoothing: 0 {
			Version: 102
			Name: ""
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "Direct"
			Smoothing: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
		}
		LayerElementUV: 0 {
			Version: 101
			Name: "diffuse"
			MappingInformationType: "ByPolygonVertex"
			ReferenceInformationType: "IndexToDirect"
			UV: 0.767299,0.942041,0.824523,0.941799,0.824405,0.949249,0.764928,0.949579,0.824405,0.949249,0.824523,0.941799,0.881684,0.943867
			 ,0.883944,0.951500,0.944764,0.951163,0.883944,0.951500,0.881684,0.943867,0.943003,0.943156,0.706123,0.986548,0.706217,0.978545
			 ,0.764784,0.979342,0.764726,0.987118,0.823911,0.979403,0.823773,0.987490,0.764726,0.987118,0.764784,0.979342,0.237580,0.948992
			 ,0.179697,0.949523,0.177348,0.942052,0.237493,0.941206,0.764884,0.959595,0.764845,0.969904,0.706323,0.969328,0.706439,0.959188
			 ,0.767299,0.942041,0.764928,0.949579,0.706553,0.949039,0.706641,0.941191,0.882612,0.996917,0.882931,0.989157,0.943821,0.992142
			 ,0.942064,0.999914,0.529897,0.992637,0.529881,0.984980,0.588691,0.984738,0.588641,0.992427,0.002475,0.991673,0.062788,0.988720
			 ,0.063103,0.996407,0.004215,0.999371,0.296217,0.993097,0.296112,0.985470,0.354671,0.984550,0.354709,0.992205,0.471549,0.985039
			 ,0.529881,0.984980,0.529897,0.992637,0.471542,0.992663,0.063103,0.996407,0.062788,0.988720,0.121386,0.987078,0.121519,0.994723
			 ,0.823773,0.987490,0.882931,0.989157,0.882612,0.996917,0.823637,0.995207,0.764884,0.959595,0.706439,0.959188,0.706553,0.949039
			 ,0.764928,0.949579,0.706323,0.969328,0.764845,0.969904,0.764784,0.979342,0.706217,0.978545,0.413253,0.992522,0.413282,0.984883
			 ,0.471549,0.985039,0.471542,0.992663,0.647459,0.993419,0.647574,0.985743,0.706123,0.986548,0.706033,0.994209,0.354671,0.984550
			 ,0.413282,0.984883,0.413253,0.992522,0.354709,0.992205,0.237989,0.986207,0.296112,0.985470,0.296217,0.993097,0.238071,0.993808
			 ,0.588691,0.984738,0.647574,0.985743,0.647459,0.993419,0.588641,0.992427,0.121386,0.987078,0.179887,0.986731,0.179947,0.994352
			 ,0.121519,0.994723,0.764660,0.994807,0.764726,0.987118,0.823773,0.987490,0.823637,0.995207,0.177348,0.942052,0.179697,0.949523
			 ,0.120766,0.949193,0.120649,0.941812,0.471566,0.947703,0.413517,0.947584,0.411245,0.940068,0.471567,0.939891,0.588922,0.946623
			 ,0.588964,0.939194,0.646030,0.940695,0.648229,0.948272,0.064027,0.943858,0.120649,0.941812,0.120766,0.949193,0.061788,0.951419
			 ,0.064027,0.943858,0.061788,0.951419,0.001543,0.951082,0.003288,0.943150,0.179947,0.994352,0.179887,0.986731,0.237989,0.986207
			 ,0.238071,0.993808,0.706553,0.949039,0.648229,0.948272,0.646030,0.940695,0.706641,0.941191,0.354471,0.946603,0.354430,0.939206
			 ,0.411245,0.940068,0.413517,0.947584,0.531958,0.940066,0.588964,0.939194,0.588922,0.946623,0.529680,0.947598,0.297671,0.940707
			 ,0.354430,0.939206,0.354471,0.946603,0.295486,0.948235,0.297671,0.940707,0.295486,0.948235,0.237580,0.948992,0.237493,0.941206
			 ,0.764784,0.979342,0.764845,0.969904,0.824067,0.970052,0.823911,0.979403,0.823911,0.979403,0.824067,0.970052,0.883519,0.971847
			 ,0.883229,0.981281,0.883229,0.981281,0.883519,0.971847,0.946234,0.973449,0.945492,0.983660,0.000820,0.983270,0.000086,0.973157
			 ,0.062207,0.971574,0.062494,0.980919,0.062494,0.980919,0.062207,0.971574,0.121098,0.969803,0.121252,0.979066,0.121252,0.979066
			 ,0.121098,0.969803,0.179776,0.969670,0.179833,0.979024,0.179833,0.979024,0.179776,0.969670,0.237802,0.969122,0.237902,0.978268
			 ,0.237902,0.978268,0.237802,0.969122,0.295851,0.968396,0.295999,0.977757,0.295999,0.977757,0.295851,0.968396,0.354582,0.967251
			 ,0.354630,0.976528,0.354630,0.976528,0.354582,0.967251,0.413369,0.967780,0.413318,0.977157,0.179833,0.979024,0.179887,0.986731
			 ,0.121386,0.987078,0.121252,0.979066,0.883229,0.981281,0.882931,0.989157,0.823773,0.987490,0.823911,0.979403,0.413318,0.977157
			 ,0.413369,0.967780,0.471560,0.967898,0.471555,0.977073,0.471555,0.977073,0.471560,0.967898,0.529817,0.967839,0.529857,0.977237
			 ,0.529857,0.977237,0.529817,0.967839,0.588800,0.967363,0.588742,0.976681,0.588742,0.976681,0.588800,0.967363,0.647853,0.968560
			 ,0.647697,0.977981,0.647697,0.977981,0.647853,0.968560,0.706323,0.969328,0.706217,0.978545,0.062494,0.980919,0.062788,0.988720
			 ,0.002475,0.991673,0.000820,0.983270,0.945492,0.983660,0.943821,0.992142,0.882931,0.989157,0.883229,0.981281,0.824405,0.949249
			 ,0.824237,0.959688,0.764884,0.959595,0.764928,0.949579,0.883944,0.951500,0.883773,0.961514,0.824237,0.959688,0.824405,0.949249
			 ,0.944764,0.951163,0.946028,0.962135,0.883773,0.961514,0.883944,0.951500,0.061788,0.951419,0.061957,0.961338,0.000291,0.961949
			 ,0.001543,0.951082,0.120766,0.949193,0.120931,0.959535,0.061957,0.961338,0.061788,0.951419,0.179697,0.949523,0.179740,0.959451
			 ,0.120931,0.959535,0.120766,0.949193,0.179740,0.959451,0.179697,0.949523,0.237580,0.948992,0.237692,0.959061,0.295486,0.948235
			 ,0.295662,0.958171,0.237692,0.959061,0.237580,0.948992,0.354471,0.946603,0.354527,0.956965,0.295662,0.958171,0.295486,0.948235
			 ,0.413517,0.947584,0.413449,0.957537,0.354527,0.956965,0.354471,0.946603,0.471566,0.947703,0.471564,0.957805,0.413449,0.957537
			 ,0.413517,0.947584,0.237902,0.978268,0.237989,0.986207,0.179887,0.986731,0.179833,0.979024,0.121252,0.979066,0.121386,0.987078
			 ,0.062788,0.988720,0.062494,0.980919,0.529680,0.947598,0.529745,0.957573,0.471564,0.957805,0.471566,0.947703,0.588922,0.946623
			 ,0.588862,0.957031,0.529745,0.957573,0.529680,0.947598,0.648229,0.948272,0.648049,0.958270,0.588862,0.957031,0.588922,0.946623
			 ,0.706553,0.949039,0.706439,0.959188,0.648049,0.958270,0.648229,0.948272,0.706123,0.986548,0.764726,0.987118,0.764660,0.994807
			 ,0.706033,0.994209,0.295999,0.977757,0.296112,0.985470,0.237989,0.986207,0.237902,0.978268,0.354630,0.976528,0.354671,0.984550
			 ,0.296112,0.985470,0.295999,0.977757,0.413318,0.977157,0.413282,0.984883,0.354671,0.984550,0.354630,0.976528,0.471555,0.977073
			 ,0.471549,0.985039,0.413282,0.984883,0.413318,0.977157,0.529857,0.977237,0.529881,0.984980,0.471549,0.985039,0.471555,0.977073
			 ,0.588742,0.976681,0.588691,0.984738,0.529881,0.984980,0.529857,0.977237,0.647697,0.977981,0.647574,0.985743,0.588691,0.984738
			 ,0.588742,0.976681,0.706217,0.978545,0.706123,0.986548,0.647574,0.985743,0.647697,0.977981,0.647853,0.968560,0.648049,0.958270
			 ,0.706439,0.959188,0.706323,0.969328,0.588800,0.967363,0.588862,0.957031,0.648049,0.958270,0.647853,0.968560,0.529817,0.967839
			 ,0.529745,0.957573,0.588862,0.957031,0.588800,0.967363,0.471560,0.967898,0.471564,0.957805,0.529745,0.957573,0.529817,0.967839
			 ,0.413369,0.967780,0.413449,0.957537,0.471564,0.957805,0.471560,0.967898,0.354582,0.967251,0.354527,0.956965,0.413449,0.957537
			 ,0.413369,0.967780,0.295851,0.968396,0.295662,0.958171,0.354527,0.956965,0.354582,0.967251,0.237802,0.969122,0.237692,0.959061
			 ,0.295662,0.958171,0.295851,0.968396,0.179776,0.969670,0.179740,0.959451,0.237692,0.959061,0.237802,0.969122,0.121098,0.969803
			 ,0.120931,0.959535,0.179740,0.959451,0.179776,0.969670,0.062207,0.971574,0.061957,0.961338,0.120931,0.959535,0.121098,0.969803
			 ,0.000086,0.973157,0.000291,0.961949,0.061957,0.961338,0.062207,0.971574,0.883519,0.971847,0.883773,0.961514,0.946028,0.962135
			 ,0.946234,0.973449,0.824067,0.970052,0.824237,0.959688,0.883773,0.961514,0.883519,0.971847,0.764845,0.969904,0.764884,0.959595
			 ,0.824237,0.959688,0.824067,0.970052,0.531958,0.940066,0.529680,0.947598,0.471566,0.947703,0.471567,0.939891,0.091658,0.593198
			 ,0.099742,0.593250,0.096964,0.630018,0.091487,0.620115,0.097436,0.556447,0.099742,0.593250,0.091658,0.593198,0.091832,0.566280
			 ,0.040168,0.626078,0.034649,0.639792,0.029088,0.626095,0.034613,0.616218,0.058714,0.453672,0.066800,0.453523,0.065171,0.503622
			 ,0.059392,0.490475,0.046223,0.404694,0.049695,0.454695,0.041610,0.454844,0.040932,0.418043,0.063329,0.403513,0.058036,0.416866
			 ,0.052256,0.403717,0.057462,0.385649,0.075817,0.452470,0.067732,0.452619,0.069360,0.402523,0.075139,0.415670,0.029120,0.405881
			 ,0.023829,0.419231,0.018050,0.406085,0.023254,0.388023,0.024506,0.456032,0.016421,0.456181,0.018050,0.406085,0.023829,0.419231
			 ,0.071203,0.502633,0.067732,0.452619,0.075817,0.452470,0.076495,0.489280,0.080430,0.402320,0.075139,0.415670,0.069360,0.402523
			 ,0.074565,0.384462,0.082277,0.502429,0.077071,0.520499,0.071203,0.502633,0.076495,0.489280,0.085884,0.629948,0.083573,0.593146
			 ,0.091658,0.593198,0.091487,0.620115,0.029120,0.405881,0.032591,0.455883,0.024506,0.456032,0.023829,0.419231,0.074568,0.594268
			 ,0.066483,0.594216,0.069266,0.557446,0.074742,0.567350,0.019892,0.506195,0.016421,0.456181,0.024506,0.456032,0.025185,0.492841
			 ,0.075817,0.452470,0.083902,0.452321,0.082277,0.502429,0.076495,0.489280,0.051652,0.588091,0.059737,0.588079,0.057252,0.624869
			 ,0.051696,0.615009,0.024506,0.456032,0.032591,0.455883,0.030966,0.505990,0.025185,0.492841,0.079868,0.631090,0.074240,0.644760
			 ,0.068789,0.631018,0.074393,0.621186,0.034571,0.589301,0.042656,0.589288,0.040168,0.626078,0.034613,0.616218,0.041610,0.454844
			 ,0.049695,0.454695,0.048070,0.504803,0.042288,0.491653,0.058714,0.453672,0.050629,0.453821,0.052256,0.403717,0.058036,0.416866
			 ,0.057135,0.551295,0.059737,0.588079,0.051652,0.588091,0.051610,0.561173,0.048070,0.504803,0.042864,0.522874,0.036995,0.505007
			 ,0.042288,0.491653,0.028973,0.552521,0.034492,0.538806,0.040054,0.552504,0.034529,0.562382,0.036995,0.505007,0.033524,0.454993
			 ,0.041610,0.454844,0.042288,0.491653,0.080346,0.557517,0.082652,0.594321,0.074568,0.594268,0.074742,0.567350,0.046223,0.404694
			 ,0.040932,0.418043,0.035153,0.404897,0.040358,0.386836,0.080430,0.402320,0.083902,0.452321,0.075817,0.452470,0.075139,0.415670
			 ,0.065171,0.503622,0.059966,0.521687,0.054099,0.503826,0.059392,0.490475,0.034571,0.589301,0.026486,0.589313,0.028973,0.552521
			 ,0.034529,0.562382,0.054099,0.503826,0.050629,0.453821,0.058714,0.453672,0.059392,0.490475,0.030966,0.505990,0.025760,0.524060
			 ,0.019892,0.506195,0.025185,0.492841,0.029088,0.626095,0.026486,0.589313,0.034571,0.589301,0.034613,0.616218,0.040054,0.552504
			 ,0.042656,0.589288,0.034571,0.589301,0.034529,0.562382,0.046054,0.551312,0.051573,0.537598,0.057135,0.551295,0.051610,0.561173
			 ,0.074568,0.594268,0.082652,0.594321,0.079868,0.631090,0.074393,0.621186,0.041610,0.454844,0.033524,0.454993,0.035153,0.404897
			 ,0.040932,0.418043,0.057252,0.624869,0.051734,0.638584,0.046171,0.624887,0.051696,0.615009,0.086356,0.556375,0.091986,0.542705
			 ,0.097436,0.556447,0.091832,0.566280,0.063329,0.403513,0.066800,0.453523,0.058714,0.453672,0.058036,0.416866,0.046171,0.624887
			 ,0.043567,0.588104,0.051652,0.588091,0.051696,0.615009,0.091658,0.593198,0.083573,0.593146,0.086356,0.556375,0.091832,0.566280
			 ,0.096964,0.630018,0.091338,0.643689,0.085884,0.629948,0.091487,0.620115,0.051652,0.588091,0.043567,0.588104,0.046054,0.551312
			 ,0.051610,0.561173,0.068789,0.631018,0.066483,0.594216,0.074568,0.594268,0.074393,0.621186,0.069266,0.557446,0.074895,0.543776
			 ,0.080346,0.557517,0.074742,0.567350,0.358695,0.454908,0.358700,0.480702,0.347823,0.478799,0.347411,0.457424,0.303355,0.415422
			 ,0.305266,0.404547,0.329520,0.413327,0.323315,0.423083,0.289090,0.468535,0.293867,0.469368,0.289895,0.472156,0.288318,0.470608
			 ,0.293026,0.474144,0.293867,0.469368,0.296650,0.473335,0.295098,0.474913,0.297839,0.466581,0.293867,0.469368,0.294708,0.464593
			 ,0.296920,0.464571,0.325321,0.514197,0.331662,0.523236,0.308280,0.534190,0.305769,0.522906,0.291084,0.465402,0.293867,0.469368
			 ,0.289090,0.468535,0.289072,0.466324,0.296650,0.473335,0.293867,0.469368,0.298644,0.470202,0.298662,0.472413,0.298644,0.470202
			 ,0.293867,0.469368,0.297839,0.466581,0.299416,0.468129,0.289895,0.472156,0.293867,0.469368,0.293026,0.474144,0.290814,0.474165
			 ,0.284378,0.523314,0.282468,0.534190,0.258214,0.525409,0.264419,0.515654,0.237816,0.433762,0.256072,0.415501,0.262413,0.424540
			 ,0.247573,0.439961,0.329520,0.413327,0.347754,0.431559,0.338714,0.437902,0.323315,0.423083,0.347823,0.478799,0.358700,0.480702
			 ,0.349918,0.504975,0.340161,0.498775,0.239911,0.459937,0.229034,0.458034,0.237816,0.433762,0.247573,0.439961,0.229039,0.483828
			 ,0.229034,0.458034,0.239911,0.459937,0.240323,0.481313,0.308280,0.534190,0.282468,0.534190,0.284378,0.523314,0.305769,0.522906
			 ,0.262413,0.424540,0.256072,0.415501,0.279454,0.404547,0.281964,0.415831,0.279454,0.404547,0.305266,0.404547,0.303355,0.415422
			 ,0.281964,0.415831,0.258214,0.525409,0.239980,0.507177,0.249019,0.500835,0.264419,0.515654,0.338714,0.437902,0.347754,0.431559
			 ,0.358695,0.454908,0.347411,0.457424,0.349918,0.504975,0.331662,0.523236,0.325321,0.514197,0.340161,0.498775,0.249019,0.500835
			 ,0.239980,0.507177,0.229039,0.483828,0.240323,0.481313,0.292187,0.478906,0.290758,0.487036,0.284375,0.484284,0.288509,0.477787
			 ,0.288509,0.477787,0.284375,0.484284,0.279175,0.479676,0.285934,0.474934,0.285934,0.474934,0.279175,0.479676,0.276612,0.473220
			 ,0.284127,0.471543,0.284127,0.471543,0.276612,0.473220,0.276195,0.466281,0.284327,0.467703,0.284327,0.467703,0.276195,0.466281
			 ,0.278952,0.459896,0.285449,0.464023,0.285449,0.464023,0.278952,0.459896,0.283568,0.454689,0.288308,0.461446,0.288308,0.461446
			 ,0.283568,0.454689,0.290034,0.452120,0.291705,0.459634,0.291705,0.459634,0.290034,0.452120,0.296976,0.451700,0.295547,0.459831
			 ,0.295547,0.459831,0.296976,0.451700,0.303359,0.454453,0.299226,0.460949,0.299226,0.460949,0.303359,0.454453,0.308559,0.459060
			 ,0.301800,0.463803,0.301800,0.463803,0.308559,0.459060,0.311122,0.465517,0.303607,0.467194,0.303607,0.467194,0.311122,0.465517
			 ,0.311539,0.472456,0.303407,0.471034,0.303407,0.471034,0.311539,0.472456,0.308782,0.478840,0.302285,0.474713,0.302285,0.474713
			 ,0.308782,0.478840,0.304166,0.484047,0.299426,0.477291,0.299426,0.477291,0.304166,0.484047,0.297700,0.486616,0.296029,0.479102
			 ,0.296029,0.479102,0.297700,0.486616,0.290758,0.487036,0.292187,0.478906,0.287066,0.438769,0.281964,0.415831,0.303355,0.415422
			 ,0.299350,0.438203,0.299350,0.438203,0.303355,0.415422,0.323315,0.423083,0.310702,0.442911,0.310702,0.442911,0.323315,0.423083
			 ,0.338714,0.437902,0.319779,0.451188,0.319779,0.451188,0.338714,0.437902,0.347411,0.457424,0.324474,0.462539,0.324474,0.462539
			 ,0.347411,0.457424,0.347823,0.478799,0.325039,0.474815,0.325039,0.474815,0.347823,0.478799,0.340161,0.498775,0.320327,0.486174
			 ,0.320327,0.486174,0.340161,0.498775,0.325321,0.514197,0.312037,0.495265,0.312037,0.495265,0.325321,0.514197,0.305769,0.522906
			 ,0.300668,0.499967,0.300668,0.499967,0.305769,0.522906,0.284378,0.523314,0.288383,0.500534,0.288383,0.500534,0.284378,0.523314
			 ,0.264419,0.515654,0.277032,0.495825,0.277032,0.495825,0.264419,0.515654,0.249019,0.500835,0.267955,0.487549,0.267955,0.487549
			 ,0.249019,0.500835,0.240323,0.481313,0.263261,0.476198,0.263261,0.476198,0.240323,0.481313,0.239911,0.459937,0.262695,0.463922
			 ,0.262695,0.463922,0.239911,0.459937,0.247573,0.439961,0.267407,0.452562,0.267407,0.452562,0.247573,0.439961,0.262413,0.424540
			 ,0.275697,0.443472,0.275697,0.443472,0.262413,0.424540,0.281964,0.415831,0.287066,0.438769,0.283568,0.454689,0.275697,0.443472
			 ,0.287066,0.438769,0.290034,0.452120,0.299350,0.438203,0.296976,0.451700,0.290034,0.452120,0.287066,0.438769,0.310702,0.442911
			 ,0.303359,0.454453,0.296976,0.451700,0.299350,0.438203,0.319779,0.451188,0.308559,0.459060,0.303359,0.454453,0.310702,0.442911
			 ,0.324474,0.462539,0.311122,0.465517,0.308559,0.459060,0.319779,0.451188,0.325039,0.474815,0.311539,0.472456,0.311122,0.465517
			 ,0.324474,0.462539,0.320327,0.486174,0.308782,0.478840,0.311539,0.472456,0.325039,0.474815,0.312037,0.495265,0.304166,0.484047
			 ,0.308782,0.478840,0.320327,0.486174,0.300668,0.499967,0.297700,0.486616,0.304166,0.484047,0.312037,0.495265,0.288383,0.500534
			 ,0.290758,0.487036,0.297700,0.486616,0.300668,0.499967,0.277032,0.495825,0.284375,0.484284,0.290758,0.487036,0.288383,0.500534
			 ,0.267955,0.487549,0.279175,0.479676,0.284375,0.484284,0.277032,0.495825,0.263261,0.476198,0.276612,0.473220,0.279175,0.479676
			 ,0.267955,0.487549,0.262695,0.463922,0.276195,0.466281,0.276612,0.473220,0.263261,0.476198,0.267407,0.452562,0.278952,0.459896
			 ,0.276195,0.466281,0.262695,0.463922,0.275697,0.443472,0.283568,0.454689,0.278952,0.459896,0.267407,0.452562,0.291084,0.465402
			 ,0.288308,0.461446,0.291705,0.459634,0.292636,0.463823,0.295547,0.459831,0.294708,0.464593,0.292636,0.463823,0.291705,0.459634
			 ,0.299226,0.460949,0.296920,0.464571,0.294708,0.464593,0.295547,0.459831,0.301800,0.463803,0.297839,0.466581,0.296920,0.464571
			 ,0.299226,0.460949,0.303607,0.467194,0.299416,0.468129,0.297839,0.466581,0.301800,0.463803,0.303407,0.471034,0.298644,0.470202
			 ,0.299416,0.468129,0.303607,0.467194,0.302285,0.474713,0.298662,0.472413,0.298644,0.470202,0.303407,0.471034,0.299426,0.477291
			 ,0.296650,0.473335,0.298662,0.472413,0.302285,0.474713,0.296029,0.479102,0.295098,0.474913,0.296650,0.473335,0.299426,0.477291
			 ,0.292187,0.478906,0.293026,0.474144,0.295098,0.474913,0.296029,0.479102,0.288509,0.477787,0.290814,0.474165,0.293026,0.474144
			 ,0.292187,0.478906,0.285934,0.474934,0.289895,0.472156,0.290814,0.474165,0.288509,0.477787,0.284127,0.471543,0.288318,0.470608
			 ,0.289895,0.472156,0.285934,0.474934,0.284327,0.467703,0.289090,0.468535,0.288318,0.470608,0.284127,0.471543,0.285449,0.464023
			 ,0.289072,0.466324,0.289090,0.468535,0.284327,0.467703,0.288308,0.461446,0.291084,0.465402,0.289072,0.466324,0.285449,0.464023
			 ,0.294708,0.464593,0.293867,0.469368,0.291084,0.465402,0.292636,0.463823,0.924942,0.486204,0.919878,0.480267,0.922651,0.446008
			 ,0.927138,0.447493,0.918548,0.800909,0.907723,0.800325,0.908151,0.760126,0.916537,0.756548,0.953732,0.486275,0.951410,0.447532
			 ,0.955898,0.446032,0.958782,0.480321,0.955980,0.754192,0.953252,0.799788,0.947370,0.799208,0.950376,0.753305,0.928902,0.491579
			 ,0.931508,0.451700,0.936421,0.453804,0.933524,0.493331,0.918548,0.800909,0.916537,0.756548,0.921849,0.754278,0.924187,0.799834
			 ,0.930067,0.799298,0.924187,0.799834,0.921849,0.754278,0.927456,0.753431,0.942134,0.453836,0.947048,0.451747,0.949783,0.491642
			 ,0.945161,0.493378,0.942134,0.453836,0.945161,0.493378,0.933524,0.493331,0.936421,0.453804,0.928902,0.491579,0.924942,0.486204
			 ,0.927138,0.447493,0.931508,0.451700,0.955980,0.754192,0.961277,0.756505,0.958891,0.800909,0.953252,0.799788,0.969638,0.760161
			 ,0.969734,0.800415,0.958891,0.800909,0.961277,0.756505,0.951410,0.447532,0.953732,0.486275,0.949783,0.491642,0.947048,0.451747
			 ,0.927456,0.753431,0.950376,0.753305,0.947370,0.799208,0.930067,0.799298,0.955609,0.523096,0.953732,0.486275,0.958782,0.480321
			 ,0.961859,0.515590,0.952004,0.527663,0.949783,0.491642,0.953732,0.486275,0.955609,0.523096,0.961859,0.515590,0.966628,0.549591
			 ,0.958279,0.557267,0.955609,0.523096,0.955609,0.523096,0.958279,0.557267,0.954731,0.560691,0.952004,0.527663,0.947784,0.528995
			 ,0.945161,0.493378,0.949783,0.491642,0.952004,0.527663,0.952004,0.527663,0.954731,0.560691,0.950743,0.561691,0.947784,0.528995
			 ,0.930995,0.528997,0.933524,0.493331,0.945161,0.493378,0.947784,0.528995,0.947784,0.528995,0.950743,0.561691,0.928095,0.561661
			 ,0.930995,0.528997,0.926777,0.527648,0.928902,0.491579,0.933524,0.493331,0.930995,0.528997,0.923163,0.523066,0.924942,0.486204
			 ,0.928902,0.491579,0.926777,0.527648,0.916892,0.515569,0.919878,0.480267,0.924942,0.486204,0.923163,0.523066,0.930995,0.528997
			 ,0.928095,0.561661,0.924109,0.560648,0.926777,0.527648,0.959974,0.588746,0.958279,0.557267,0.966628,0.549591,0.969866,0.581703
			 ,0.926777,0.527648,0.924109,0.560648,0.920561,0.557215,0.923163,0.523066,0.923163,0.523066,0.920561,0.557215,0.912205,0.549555
			 ,0.916892,0.515569,0.956527,0.590822,0.954731,0.560691,0.958279,0.557267,0.959974,0.588746,0.918888,0.588740,0.917410,0.617532
			 ,0.904328,0.613980,0.908981,0.581684,0.922340,0.590829,0.920992,0.618537,0.917410,0.617532,0.918888,0.588740,0.925997,0.591470
			 ,0.924618,0.618762,0.920992,0.618537,0.922340,0.590829,0.952876,0.591449,0.954186,0.618654,0.924618,0.618762,0.925997,0.591470
			 ,0.956527,0.590822,0.957811,0.618447,0.954186,0.618654,0.952876,0.591449,0.952876,0.591449,0.950743,0.561691,0.954731,0.560691
			 ,0.956527,0.590822,0.959974,0.588746,0.961395,0.617455,0.957811,0.618447,0.956527,0.590822,0.925997,0.591470,0.928095,0.561661
			 ,0.950743,0.561691,0.952876,0.591449,0.922340,0.590829,0.924109,0.560648,0.928095,0.561661,0.925997,0.591470,0.918888,0.588740
			 ,0.920561,0.557215,0.924109,0.560648,0.922340,0.590829,0.908981,0.581684,0.912205,0.549555,0.920561,0.557215,0.918888,0.588740
			 ,0.901994,0.647603,0.904328,0.613980,0.917410,0.617532,0.915996,0.646992,0.969866,0.581703,0.974482,0.613938,0.961395,0.617455
			 ,0.959974,0.588746,0.915996,0.646992,0.917410,0.617532,0.920992,0.618537,0.919923,0.646848,0.919923,0.646848,0.920992,0.618537
			 ,0.924618,0.618762,0.923713,0.646654,0.976731,0.647646,0.974961,0.682807,0.963110,0.678880,0.962716,0.646980,0.962716,0.646980
			 ,0.963110,0.678880,0.958997,0.677599,0.958788,0.646819,0.958788,0.646819,0.958997,0.677599,0.954745,0.677102,0.954994,0.646609
			 ,0.923713,0.646654,0.924618,0.618762,0.954186,0.618654,0.954994,0.646609,0.954994,0.646609,0.954745,0.677102,0.923800,0.677190
			 ,0.923713,0.646654,0.954994,0.646609,0.954186,0.618654,0.957811,0.618447,0.958788,0.646819,0.958788,0.646819,0.957811,0.618447
			 ,0.961395,0.617455,0.962716,0.646980,0.923713,0.646654,0.923800,0.677190,0.919543,0.677665,0.919923,0.646848,0.962716,0.646980
			 ,0.961395,0.617455,0.974482,0.613938,0.976731,0.647646,0.919923,0.646848,0.919543,0.677665,0.915421,0.678921,0.915996,0.646992
			 ,0.915996,0.646992,0.915421,0.678921,0.903549,0.682757,0.901994,0.647603,0.962274,0.714822,0.963110,0.678880,0.974961,0.682807
			 ,0.971834,0.719649,0.957708,0.712696,0.958997,0.677599,0.963110,0.678880,0.962274,0.714822,0.971834,0.719649,0.969638,0.760161
			 ,0.961277,0.756505,0.962274,0.714822,0.952885,0.711931,0.954745,0.677102,0.958997,0.677599,0.957708,0.712696,0.925359,0.712020
			 ,0.923800,0.677190,0.954745,0.677102,0.952885,0.711931,0.962274,0.714822,0.961277,0.756505,0.955980,0.754192,0.957708,0.712696
			 ,0.920532,0.712753,0.919543,0.677665,0.923800,0.677190,0.925359,0.712020,0.957708,0.712696,0.955980,0.754192,0.950376,0.753305
			 ,0.952885,0.711931,0.952885,0.711931,0.950376,0.753305,0.927456,0.753431,0.925359,0.712020,0.915948,0.714845,0.915421,0.678921
			 ,0.919543,0.677665,0.920532,0.712753,0.906344,0.719585,0.903549,0.682757,0.915421,0.678921,0.915948,0.714845,0.925359,0.712020
			 ,0.927456,0.753431,0.921849,0.754278,0.920532,0.712753,0.920532,0.712753,0.921849,0.754278,0.916537,0.756548,0.915948,0.714845
			 ,0.915948,0.714845,0.916537,0.756548,0.908151,0.760126,0.906344,0.719585,0.849502,0.486212,0.844432,0.480277,0.847181,0.446008
			 ,0.851670,0.447490,0.843300,0.800916,0.832478,0.800338,0.832886,0.760150,0.841267,0.756569,0.878299,0.486261,0.875947,0.447512
			 ,0.880435,0.446008,0.883345,0.480302,0.880700,0.754194,0.877995,0.799779,0.872113,0.799202,0.875097,0.753310,0.853467,0.491585
			 ,0.856044,0.451695,0.860959,0.453796,0.858090,0.493334,0.843300,0.800916,0.841267,0.756569,0.846577,0.754297,0.848937,0.799838
			 ,0.854815,0.799300,0.848937,0.799838,0.846577,0.754297,0.852182,0.753447,0.866674,0.453824,0.871587,0.451731,0.874352,0.491632
			 ,0.869730,0.493372,0.866674,0.453824,0.869730,0.493372,0.858090,0.493334,0.860959,0.453796,0.853467,0.491585,0.849502,0.486212
			 ,0.851670,0.447490,0.856044,0.451695,0.880700,0.754194,0.885997,0.756504,0.883632,0.800897,0.877995,0.799779,0.894357,0.760155
			 ,0.894472,0.800398,0.883632,0.800897,0.885997,0.756504,0.875947,0.447512,0.878299,0.486261,0.874352,0.491632,0.871587,0.451731
			 ,0.852182,0.753447,0.875097,0.753310,0.872113,0.799202,0.854815,0.799300,0.880203,0.523090,0.878299,0.486261,0.883345,0.480302
			 ,0.886449,0.515577,0.876600,0.527661,0.874352,0.491632,0.878299,0.486261,0.880203,0.523090,0.886449,0.515577,0.891243,0.549586
			 ,0.882897,0.557270,0.880203,0.523090,0.880203,0.523090,0.882897,0.557270,0.879350,0.560696,0.876600,0.527661,0.872380,0.528996
			 ,0.869730,0.493372,0.874352,0.491632,0.876600,0.527661,0.876600,0.527661,0.879350,0.560696,0.875362,0.561699,0.872380,0.528996
			 ,0.855587,0.529010,0.858090,0.493334,0.869730,0.493372,0.872380,0.528996,0.872380,0.528996,0.875362,0.561699,0.852709,0.561685
			 ,0.855587,0.529010,0.851367,0.527664,0.853467,0.491585,0.858090,0.493334,0.855587,0.529010,0.847749,0.523084,0.849502,0.486212
			 ,0.853467,0.491585,0.851367,0.527664,0.841471,0.515589,0.844432,0.480277,0.849502,0.486212,0.847749,0.523084,0.855587,0.529010
			 ,0.852709,0.561685,0.848721,0.560674,0.851367,0.527664,0.884610,0.588755,0.882897,0.557270,0.891243,0.549586,0.894501,0.581705
			 ,0.851367,0.527664,0.848721,0.560674,0.845170,0.557243,0.847749,0.523084,0.847749,0.523084,0.845170,0.557243,0.836807,0.549588
			 ,0.841471,0.515589,0.881164,0.590833,0.879350,0.560696,0.882897,0.557270,0.884610,0.588755,0.843519,0.588774,0.842060,0.617570
			 ,0.828975,0.614026,0.833606,0.581725,0.846972,0.590861,0.845642,0.618573,0.842060,0.617570,0.843519,0.588774,0.850630,0.591500
			 ,0.849268,0.618795,0.845642,0.618573,0.846972,0.590861,0.877513,0.591462,0.878838,0.618670,0.849268,0.618795,0.850630,0.591500
			 ,0.881164,0.590833,0.882464,0.618460,0.878838,0.618670,0.877513,0.591462,0.877513,0.591462,0.875362,0.561699,0.879350,0.560696
			 ,0.881164,0.590833,0.884610,0.588755,0.886048,0.617466,0.882464,0.618460,0.881164,0.590833,0.850630,0.591500,0.852709,0.561685
			 ,0.875362,0.561699,0.877513,0.591462,0.846972,0.590861,0.848721,0.560674,0.852709,0.561685,0.850630,0.591500,0.843519,0.588774
			 ,0.845170,0.557243,0.848721,0.560674,0.846972,0.590861,0.833606,0.581725,0.836807,0.549588,0.845170,0.557243,0.843519,0.588774
			 ,0.826663,0.647651,0.828975,0.614026,0.842060,0.617570,0.840665,0.647031,0.894501,0.581705,0.899134,0.613943,0.886048,0.617466
			 ,0.884610,0.588755,0.840665,0.647031,0.842060,0.617570,0.845642,0.618573,0.844591,0.646885,0.844591,0.646885,0.845642,0.618573
			 ,0.849268,0.618795,0.848381,0.646688,0.901400,0.647651,0.899645,0.682812,0.887793,0.678891,0.887384,0.646993,0.887384,0.646993
			 ,0.887793,0.678891,0.883680,0.677612,0.883455,0.646833,0.883455,0.646833,0.883680,0.677612,0.879428,0.677117,0.879662,0.646626
			 ,0.848381,0.646688,0.849268,0.618795,0.878838,0.618670,0.879662,0.646626,0.879662,0.646626,0.879428,0.677117,0.848486,0.677222
			 ,0.848381,0.646688,0.879662,0.646626,0.878838,0.618670,0.882464,0.618460,0.883455,0.646833,0.883455,0.646833,0.882464,0.618460
			 ,0.886048,0.617466,0.887384,0.646993,0.848381,0.646688,0.848486,0.677222,0.844230,0.677700,0.844591,0.646885,0.887384,0.646993
			 ,0.886048,0.617466,0.899134,0.613943,0.901400,0.647651,0.844591,0.646885,0.844230,0.677700,0.840109,0.678958,0.840665,0.647031
			 ,0.840665,0.647031,0.840109,0.678958,0.828241,0.682800,0.826663,0.647651,0.886975,0.714829,0.887793,0.678891,0.899645,0.682812
			 ,0.896535,0.719651,0.882408,0.712706,0.883680,0.677612,0.887793,0.678891,0.886975,0.714829,0.896535,0.719651,0.894357,0.760155
			 ,0.885997,0.756504,0.886975,0.714829,0.877585,0.711943,0.879428,0.677117,0.883680,0.677612,0.882408,0.712706,0.850064,0.712046
			 ,0.848486,0.677222,0.879428,0.677117,0.877585,0.711943,0.886975,0.714829,0.885997,0.756504,0.880700,0.754194,0.882408,0.712706
			 ,0.845238,0.712782,0.844230,0.677700,0.848486,0.677222,0.850064,0.712046,0.882408,0.712706,0.880700,0.754194,0.875097,0.753310
			 ,0.877585,0.711943,0.877585,0.711943,0.875097,0.753310,0.852182,0.753447,0.850064,0.712046,0.840656,0.714876,0.840109,0.678958
			 ,0.844230,0.677700,0.845238,0.712782,0.831058,0.719620,0.828241,0.682800,0.840109,0.678958,0.840656,0.714876,0.850064,0.712046
			 ,0.852182,0.753447,0.846577,0.754297,0.845238,0.712782,0.845238,0.712782,0.846577,0.754297,0.841267,0.756569,0.840656,0.714876
			 ,0.840656,0.714876,0.841267,0.756569,0.832886,0.760150,0.831058,0.719620,0.774297,0.486209,0.769233,0.480269,0.772013,0.446004
			 ,0.776501,0.447490,0.767891,0.800916,0.757068,0.800333,0.757496,0.760142,0.765879,0.756565,0.803092,0.486285,0.800778,0.447534
			 ,0.805266,0.446034,0.808144,0.480331,0.805315,0.754209,0.802588,0.799795,0.796707,0.799215,0.799713,0.753322,0.778256,0.491585
			 ,0.780870,0.451699,0.785784,0.453805,0.782878,0.493339,0.767891,0.800916,0.765879,0.756565,0.771191,0.754295,0.773530,0.799841
			 ,0.779408,0.799305,0.773530,0.799841,0.771191,0.754295,0.776796,0.753448,0.791498,0.453838,0.796414,0.451749,0.799141,0.491653
			 ,0.794518,0.493388,0.791498,0.453838,0.794518,0.493388,0.782878,0.493339,0.785784,0.453805,0.778256,0.491585,0.774297,0.486209
			 ,0.776501,0.447490,0.780870,0.451699,0.805315,0.754209,0.810612,0.756521,0.808226,0.800916,0.802588,0.799795,0.818970,0.760177
			 ,0.819067,0.800422,0.808226,0.800916,0.810612,0.756521,0.800778,0.447534,0.803092,0.486285,0.799141,0.491653,0.796414,0.451749
			 ,0.776796,0.753448,0.799713,0.753322,0.796707,0.799215,0.779408,0.799305,0.804961,0.523114,0.803092,0.486285,0.808144,0.480331
			 ,0.811214,0.515607,0.801355,0.527681,0.799141,0.491653,0.803092,0.486285,0.804961,0.523114,0.811214,0.515607,0.815977,0.549615
			 ,0.807626,0.557291,0.804961,0.523114,0.804961,0.523114,0.807626,0.557291,0.804077,0.560715,0.801355,0.527681,0.797134,0.529012
			 ,0.794518,0.493388,0.799141,0.491653,0.801355,0.527681,0.801355,0.527681,0.804077,0.560715,0.800089,0.561714,0.797134,0.529012
			 ,0.780341,0.529009,0.782878,0.493339,0.794518,0.493388,0.797134,0.529012,0.797134,0.529012,0.800089,0.561714,0.777436,0.561682
			 ,0.780341,0.529009,0.776123,0.527660,0.778256,0.491585,0.782878,0.493339,0.780341,0.529009,0.772509,0.523077,0.774297,0.486209
			 ,0.778256,0.491585,0.776123,0.527660,0.766238,0.515577,0.769233,0.480269,0.774297,0.486209,0.772509,0.523077,0.780341,0.529009
			 ,0.777436,0.561682,0.773450,0.560669,0.776123,0.527660,0.809317,0.588774,0.807626,0.557291,0.815977,0.549615,0.819211,0.581732
			 ,0.776123,0.527660,0.773450,0.560669,0.769902,0.557234,0.772509,0.523077,0.772509,0.523077,0.769902,0.557234,0.761545,0.549572
			 ,0.766238,0.515577,0.805870,0.590850,0.804077,0.560715,0.807626,0.557291,0.809317,0.588774,0.768227,0.588765,0.766749,0.617559
			 ,0.753666,0.614008,0.758318,0.581708,0.771679,0.590854,0.770331,0.618565,0.766749,0.617559,0.768227,0.588765,0.775336,0.591495
			 ,0.773956,0.618789,0.770331,0.618565,0.771679,0.590854,0.802218,0.591476,0.803526,0.618683,0.773956,0.618789,0.775336,0.591495
			 ,0.805870,0.590850,0.807151,0.618476,0.803526,0.618683,0.802218,0.591476,0.802218,0.591476,0.800089,0.561714,0.804077,0.560715
			 ,0.805870,0.590850,0.809317,0.588774,0.810736,0.617485,0.807151,0.618476,0.805870,0.590850,0.775336,0.591495,0.777436,0.561682
			 ,0.800089,0.561714,0.802218,0.591476,0.771679,0.590854,0.773450,0.560669,0.777436,0.561682,0.775336,0.591495,0.768227,0.588765
			 ,0.769902,0.557234,0.773450,0.560669,0.771679,0.590854,0.758318,0.581708,0.761545,0.549572,0.769902,0.557234,0.768227,0.588765
			 ,0.751333,0.647632,0.753666,0.614008,0.766749,0.617559,0.765335,0.647020,0.819211,0.581732,0.823823,0.613969,0.810736,0.617485
			 ,0.809317,0.588774,0.765335,0.647020,0.766749,0.617559,0.770331,0.618565,0.769262,0.646876,0.769262,0.646876,0.770331,0.618565
			 ,0.773956,0.618789,0.773052,0.646682,0.826069,0.647676,0.824296,0.682835,0.812446,0.678907,0.812054,0.647010,0.812054,0.647010
			 ,0.812446,0.678907,0.808334,0.677626,0.808126,0.646848,0.808126,0.646848,0.808334,0.677626,0.804082,0.677129,0.804333,0.646638
			 ,0.773052,0.646682,0.773956,0.618789,0.803526,0.618683,0.804333,0.646638,0.804333,0.646638,0.804082,0.677129,0.773139,0.677217
			 ,0.773052,0.646682,0.804333,0.646638,0.803526,0.618683,0.807151,0.618476,0.808126,0.646848,0.808126,0.646848,0.807151,0.618476
			 ,0.810736,0.617485,0.812054,0.647010,0.773052,0.646682,0.773139,0.677217,0.768882,0.677692,0.769262,0.646876,0.812054,0.647010
			 ,0.810736,0.617485,0.823823,0.613969,0.826069,0.647676,0.769262,0.646876,0.768882,0.677692,0.764761,0.678949,0.765335,0.647020
			 ,0.765335,0.647020,0.764761,0.678949,0.752890,0.682784,0.751333,0.647632,0.811609,0.714845,0.812446,0.678907,0.824296,0.682835
			 ,0.821167,0.719672,0.807044,0.712720,0.808334,0.677626,0.812446,0.678907,0.811609,0.714845,0.821167,0.719672,0.818970,0.760177
			 ,0.810612,0.756521,0.811609,0.714845,0.802221,0.711954,0.804082,0.677129,0.808334,0.677626,0.807044,0.712720,0.774699,0.712043
			 ,0.773139,0.677217,0.804082,0.677129,0.802221,0.711954,0.811609,0.714845,0.810612,0.756521,0.805315,0.754209,0.807044,0.712720
			 ,0.769872,0.712777,0.768882,0.677692,0.773139,0.677217,0.774699,0.712043,0.807044,0.712720,0.805315,0.754209,0.799713,0.753322
			 ,0.802221,0.711954,0.802221,0.711954,0.799713,0.753322,0.776796,0.753448,0.774699,0.712043,0.765289,0.714868,0.764761,0.678949
			 ,0.768882,0.677692,0.769872,0.712777,0.755687,0.719608,0.752890,0.682784,0.764761,0.678949,0.765289,0.714868,0.774699,0.712043
			 ,0.776796,0.753448,0.771191,0.754295,0.769872,0.712777,0.769872,0.712777,0.771191,0.754295,0.765879,0.756565,0.765289,0.714868
			 ,0.765289,0.714868,0.765879,0.756565,0.757496,0.760142,0.755687,0.719608,0.698952,0.486198,0.693889,0.480260,0.696666,0.446004
			 ,0.701153,0.447489,0.692559,0.800905,0.681734,0.800322,0.682163,0.760125,0.690547,0.756548,0.727741,0.486271,0.725423,0.447531
			 ,0.729910,0.446032,0.732791,0.480318,0.729988,0.754191,0.727261,0.799784,0.721379,0.799204,0.724385,0.753304,0.702912,0.491572
			 ,0.705522,0.451696,0.710434,0.453801,0.707533,0.493325,0.692559,0.800905,0.690547,0.756548,0.695859,0.754277,0.698198,0.799830
			 ,0.704077,0.799294,0.698198,0.799830,0.695859,0.754277,0.701465,0.753430,0.716147,0.453834,0.721061,0.451746,0.723792,0.491638
			 ,0.719169,0.493373,0.716147,0.453834,0.719169,0.493373,0.707533,0.493325,0.710434,0.453801,0.702912,0.491572,0.698952,0.486198
			 ,0.701153,0.447489,0.705522,0.451696,0.729988,0.754191,0.735285,0.756504,0.732899,0.800905,0.727261,0.799784,0.743645,0.760159
			 ,0.743742,0.800410,0.732899,0.800905,0.735285,0.756504,0.725423,0.447531,0.727741,0.486271,0.723792,0.491638,0.721061,0.451746
			 ,0.701465,0.753430,0.724385,0.753304,0.721379,0.799204,0.704077,0.799294,0.729615,0.523092,0.727741,0.486271,0.732791,0.480318
			 ,0.735865,0.515585,0.726009,0.527658,0.723792,0.491638,0.727741,0.486271,0.729615,0.523092,0.735865,0.515585,0.740633,0.549587
			 ,0.732284,0.557264,0.729615,0.523092,0.729615,0.523092,0.732284,0.557264,0.728736,0.560687,0.726009,0.527658,0.721789,0.528990
			 ,0.719169,0.493373,0.723792,0.491638,0.726009,0.527658,0.726009,0.527658,0.728736,0.560687,0.724748,0.561687,0.721789,0.528990
			 ,0.704999,0.528990,0.707533,0.493325,0.719169,0.493373,0.721789,0.528990,0.721789,0.528990,0.724748,0.561687,0.702098,0.561657
			 ,0.704999,0.528990,0.700781,0.527641,0.702912,0.491572,0.707533,0.493325,0.704999,0.528990,0.697168,0.523058,0.698952,0.486198
			 ,0.702912,0.491572,0.700781,0.527641,0.690898,0.515560,0.693889,0.480260,0.698952,0.486198,0.697168,0.523058,0.704999,0.528990
			 ,0.702098,0.561657,0.698112,0.560644,0.700781,0.527641,0.733979,0.588745,0.732284,0.557264,0.740633,0.549587,0.743872,0.581701
			 ,0.700781,0.527641,0.698112,0.560644,0.694564,0.557211,0.697168,0.523058,0.697168,0.523058,0.694564,0.557211,0.686207,0.549550
			 ,0.690898,0.515560,0.730532,0.590821,0.728736,0.560687,0.732284,0.557264,0.733979,0.588745,0.692891,0.588739,0.691414,0.617533
			 ,0.678331,0.613982,0.682983,0.581683,0.696343,0.590828,0.694996,0.618538,0.691414,0.617533,0.692891,0.588739,0.700000,0.591469
			 ,0.698622,0.618762,0.694996,0.618538,0.696343,0.590828,0.726881,0.591447,0.728192,0.618654,0.698622,0.618762,0.700000,0.591469
			 ,0.730532,0.590821,0.731817,0.618446,0.728192,0.618654,0.726881,0.591447,0.726881,0.591447,0.724748,0.561687,0.728736,0.560687
			 ,0.730532,0.590821,0.733979,0.588745,0.735401,0.617455,0.731817,0.618446,0.730532,0.590821,0.700000,0.591469,0.702098,0.561657
			 ,0.724748,0.561687,0.726881,0.591447,0.696343,0.590828,0.698112,0.560644,0.702098,0.561657,0.700000,0.591469,0.692891,0.588739
			 ,0.694564,0.557211,0.698112,0.560644,0.696343,0.590828,0.682983,0.581683,0.686207,0.549550,0.694564,0.557211,0.692891,0.588739
			 ,0.675999,0.647606,0.678331,0.613982,0.691414,0.617533,0.690002,0.646994,0.743872,0.581701,0.748489,0.613938,0.735401,0.617455
			 ,0.733979,0.588745,0.690002,0.646994,0.691414,0.617533,0.694996,0.618538,0.693928,0.646850,0.693928,0.646850,0.694996,0.618538
			 ,0.698622,0.618762,0.697719,0.646656,0.750739,0.647647,0.748968,0.682808,0.737117,0.678881,0.736722,0.646981,0.736722,0.646981
			 ,0.737117,0.678881,0.733004,0.677600,0.732794,0.646820,0.732794,0.646820,0.733004,0.677600,0.728752,0.677103,0.729001,0.646610
			 ,0.697719,0.646656,0.698622,0.618762,0.728192,0.618654,0.729001,0.646610,0.729001,0.646610,0.728752,0.677103,0.697807,0.677192
			 ,0.697719,0.646656,0.729001,0.646610,0.728192,0.618654,0.731817,0.618446,0.732794,0.646820,0.732794,0.646820,0.731817,0.618446
			 ,0.735401,0.617455,0.736722,0.646981,0.697719,0.646656,0.697807,0.677192,0.693550,0.677668,0.693928,0.646850,0.736722,0.646981
			 ,0.735401,0.617455,0.748489,0.613938,0.750739,0.647647,0.693928,0.646850,0.693550,0.677668,0.689429,0.678924,0.690002,0.646994
			 ,0.690002,0.646994,0.689429,0.678924,0.677556,0.682760,0.675999,0.647606,0.736282,0.714822,0.737117,0.678881,0.748968,0.682808
			 ,0.745841,0.719649,0.731716,0.712697,0.733004,0.677600,0.737117,0.678881,0.736282,0.714822,0.745841,0.719649,0.743645,0.760159
			 ,0.735285,0.756504,0.736282,0.714822,0.726892,0.711932,0.728752,0.677103,0.733004,0.677600,0.731716,0.712697,0.699367,0.712021
			 ,0.697807,0.677192,0.728752,0.677103,0.726892,0.711932,0.736282,0.714822,0.735285,0.756504,0.729988,0.754191,0.731716,0.712697
			 ,0.694541,0.712755,0.693550,0.677668,0.697807,0.677192,0.699367,0.712021,0.731716,0.712697,0.729988,0.754191,0.724385,0.753304
			 ,0.726892,0.711932,0.726892,0.711932,0.724385,0.753304,0.701465,0.753430,0.699367,0.712021,0.689957,0.714847,0.689429,0.678924
			 ,0.693550,0.677668,0.694541,0.712755,0.680354,0.719587,0.677556,0.682760,0.689429,0.678924,0.689957,0.714847,0.699367,0.712021
			 ,0.701465,0.753430,0.695859,0.754277,0.694541,0.712755,0.694541,0.712755,0.695859,0.754277,0.690547,0.756548,0.689957,0.714847
			 ,0.689957,0.714847,0.690547,0.756548,0.682163,0.760125,0.680354,0.719587,0.891343,0.371674,0.861943,0.354723,0.875310,0.313760
			 ,0.920166,0.335969,0.551313,0.093782,0.561175,0.130608,0.506468,0.137945,0.506468,0.101162,0.506468,0.058826,0.506468,0.101162
			 ,0.461623,0.093782,0.474990,0.052818,0.830465,0.269596,0.830465,0.239183,0.891426,0.245478,0.885172,0.276934,0.769505,0.245478
			 ,0.830465,0.239183,0.830465,0.269596,0.775759,0.276933,0.506468,0.137945,0.451762,0.130608,0.461623,0.093782,0.506468,0.101162
			 ,0.228560,0.370967,0.200046,0.403473,0.184843,0.394732,0.199165,0.354008,0.445588,0.035869,0.474990,0.052818,0.461623,0.093782
			 ,0.416767,0.071573,0.281965,0.299470,0.257393,0.335274,0.212546,0.313050,0.222420,0.276227,0.769505,0.245478,0.775759,0.276933
			 ,0.716205,0.300155,0.697793,0.265794,0.506468,0.058826,0.474990,0.052818,0.489298,0.012088,0.506468,0.015070,0.830465,0.348715
			 ,0.861943,0.354723,0.847665,0.395520,0.830465,0.392544,0.167717,0.268871,0.167727,0.238458,0.228685,0.244774,0.222420,0.276227
			 ,0.569556,0.571670,0.508596,0.577966,0.508596,0.547553,0.563301,0.540215,0.167717,0.268871,0.222420,0.276227,0.212546,0.313050
			 ,0.167704,0.305654,0.551313,0.093782,0.596169,0.071573,0.620728,0.107386,0.561175,0.130608,0.813265,0.395520,0.798035,0.404240
			 ,0.769587,0.371673,0.798987,0.354723,0.445588,0.035869,0.474092,0.003352,0.489298,0.012088,0.474990,0.052818,0.281965,0.299470
			 ,0.222420,0.276227,0.228685,0.244774,0.300389,0.265116,0.525793,0.421632,0.540072,0.462428,0.508595,0.468436,0.508594,0.424608
			 ,0.167689,0.347990,0.167704,0.305654,0.212546,0.313050,0.199165,0.354008,0.567429,0.162064,0.561175,0.130608,0.620728,0.107386
			 ,0.639140,0.141748,0.106765,0.244732,0.167727,0.238458,0.167717,0.268871,0.113008,0.276190,0.106765,0.244732,0.113008,0.276190
			 ,0.053447,0.299391,0.035046,0.265024,0.553439,0.503389,0.508595,0.510771,0.508595,0.468436,0.540072,0.462428,0.447718,0.445479
			 ,0.477117,0.462429,0.463751,0.503391,0.418896,0.481182,0.785621,0.313760,0.775759,0.276933,0.830465,0.269596,0.830465,0.306379
			 ,0.122857,0.313019,0.077994,0.335212,0.053447,0.299391,0.113008,0.276190,0.228560,0.370967,0.199165,0.354008,0.212546,0.313050
			 ,0.257393,0.335274,0.447718,0.445479,0.476165,0.412913,0.491394,0.421633,0.477117,0.462429,0.569556,0.571670,0.563301,0.540215
			 ,0.622854,0.516992,0.641267,0.551352,0.508596,0.547553,0.453890,0.540217,0.463751,0.503391,0.508595,0.510771,0.785621,0.313760
			 ,0.798987,0.354723,0.769587,0.371673,0.740764,0.335969,0.508596,0.547553,0.508596,0.577966,0.447636,0.571672,0.453890,0.540217
			 ,0.785621,0.313760,0.740764,0.335969,0.716205,0.300155,0.775759,0.276933,0.523639,0.012088,0.538845,0.003352,0.567348,0.035869
			 ,0.537947,0.052818,0.830465,0.348715,0.830465,0.306379,0.875310,0.313760,0.861943,0.354723,0.830465,0.269596,0.885172,0.276934
			 ,0.875310,0.313760,0.830465,0.306379,0.525793,0.421632,0.541022,0.412912,0.569471,0.445477,0.540072,0.462428,0.392208,0.107386
			 ,0.416767,0.071573,0.461623,0.093782,0.451762,0.130608,0.551313,0.093782,0.506468,0.101162,0.506468,0.058826,0.537947,0.052818
			 ,0.884283,0.024686,0.892023,0.078608,0.830465,0.082879,0.830465,0.027855,0.553439,0.503389,0.563301,0.540215,0.508596,0.547553
			 ,0.508595,0.510771,0.785621,0.313760,0.830465,0.306379,0.830465,0.348715,0.798987,0.354723,0.553439,0.503389,0.540072,0.462428
			 ,0.569471,0.445477,0.598294,0.481180,0.394337,0.516995,0.453890,0.540217,0.447636,0.571672,0.375925,0.551356,0.551313,0.093782
			 ,0.537947,0.052818,0.567348,0.035869,0.596169,0.071573,0.553439,0.503389,0.598294,0.481180,0.622854,0.516992,0.563301,0.540215
			 ,0.567429,0.162064,0.506468,0.168359,0.506468,0.137945,0.561175,0.130608,0.506468,0.137945,0.506468,0.168359,0.445508,0.162064
			 ,0.451762,0.130608,0.392208,0.107386,0.451762,0.130608,0.445508,0.162064,0.373796,0.141747,0.508595,0.468436,0.508595,0.510771
			 ,0.463751,0.503391,0.477117,0.462429,0.122857,0.313019,0.136209,0.353986,0.106803,0.370925,0.077994,0.335212,0.891343,0.371674
			 ,0.862895,0.404240,0.847665,0.395520,0.861943,0.354723,0.150503,0.394720,0.135295,0.403450,0.106803,0.370925,0.136209,0.353986
			 ,0.394337,0.516995,0.418896,0.481182,0.463751,0.503391,0.453890,0.540217,0.508595,0.468436,0.477117,0.462429,0.491394,0.421633
			 ,0.508594,0.424608,0.944726,0.300156,0.920166,0.335969,0.875310,0.313760,0.885172,0.276934,0.813265,0.395520,0.798987,0.354723
			 ,0.830465,0.348715,0.830465,0.392544,0.150503,0.394720,0.136209,0.353986,0.167689,0.347990,0.167674,0.391744,0.167689,0.347990
			 ,0.199165,0.354008,0.184843,0.394732,0.167674,0.391744,0.523639,0.012088,0.537947,0.052818,0.506468,0.058826,0.506468,0.015070
			 ,0.122857,0.313019,0.113008,0.276190,0.167717,0.268871,0.167704,0.305654,0.221621,0.023976,0.273923,0.010969,0.294890,0.063437
			 ,0.229342,0.077902,0.703366,0.064120,0.724351,0.011661,0.776647,0.024686,0.768908,0.078608,0.830465,0.082879,0.768908,0.078608
			 ,0.776647,0.024686,0.830465,0.027855,0.454780,0.792465,0.447040,0.738543,0.508598,0.734271,0.508599,0.789296,0.167781,0.082152
			 ,0.106223,0.077859,0.113981,0.023939,0.167800,0.027126,0.040685,0.063350,0.061688,0.010896,0.113981,0.023939,0.106223,0.077859
			 ,0.452649,0.382859,0.400352,0.395883,0.379367,0.343423,0.444909,0.328936,0.221621,0.023976,0.229342,0.077902,0.167781,0.082152
			 ,0.167800,0.027126,0.635699,0.753028,0.614715,0.805488,0.562418,0.792464,0.570156,0.738542,0.633570,0.343423,0.612585,0.395883
			 ,0.560288,0.382859,0.568027,0.328936,0.454780,0.792465,0.402482,0.805491,0.381497,0.753031,0.447040,0.738543,0.884283,0.024686
			 ,0.936580,0.011661,0.957564,0.064120,0.892023,0.078608,0.508598,0.734271,0.570156,0.738542,0.562418,0.792464,0.508599,0.789296
			 ,0.452649,0.382859,0.444909,0.328936,0.506468,0.324664,0.506468,0.379690,0.506468,0.324664,0.568027,0.328936,0.560288,0.382859
			 ,0.506468,0.379690,0.167754,0.161995,0.167765,0.128296,0.234171,0.125450,0.235303,0.161502,0.100204,0.161455,0.101361,0.125404
			 ,0.167765,0.128296,0.167754,0.161995,0.103174,0.217695,0.106765,0.244732,0.035046,0.265024,0.023135,0.232515,0.167736,0.213181
			 ,0.167727,0.238458,0.106765,0.244732,0.103174,0.217695,0.016666,0.160022,0.024033,0.115797,0.101361,0.125404,0.100204,0.161455
			 ,0.898014,0.162204,0.896869,0.126153,0.974199,0.116572,0.981551,0.160797,0.229342,0.077902,0.234171,0.125450,0.167765,0.128296
			 ,0.167781,0.082152,0.167781,0.082152,0.167765,0.128296,0.101361,0.125404,0.106223,0.077859,0.830466,0.162720,0.830466,0.129022
			 ,0.896869,0.126153,0.898014,0.162204,0.232295,0.217740,0.228685,0.244774,0.167727,0.238458,0.167736,0.213181,0.312324,0.232614
			 ,0.300389,0.265116,0.228685,0.244774,0.232295,0.217740,0.762917,0.162204,0.764061,0.126153,0.830466,0.129022,0.830466,0.162720
			 ,0.106223,0.077859,0.101361,0.125404,0.024033,0.115797,0.040685,0.063350,0.957564,0.064120,0.974199,0.116572,0.896869,0.126153
			 ,0.892023,0.078608,0.679380,0.160797,0.686732,0.116572,0.764061,0.126153,0.762917,0.162204,0.438919,0.245339,0.440063,0.281390
			 ,0.362732,0.290970,0.355381,0.246744,0.506468,0.244822,0.506468,0.278521,0.440063,0.281390,0.438919,0.245339,0.574017,0.245338
			 ,0.572873,0.281389,0.506468,0.278521,0.506468,0.244822,0.657556,0.246744,0.650204,0.290970,0.572873,0.281389,0.574017,0.245338
			 ,0.573157,0.598706,0.569556,0.571670,0.641267,0.551352,0.653190,0.583858,0.508596,0.603242,0.508596,0.577966,0.569556,0.571670
			 ,0.573157,0.598706,0.441048,0.654946,0.442193,0.690997,0.364862,0.700578,0.357510,0.656352,0.892023,0.078608,0.896869,0.126153
			 ,0.830466,0.129022,0.830465,0.082879,0.830465,0.082879,0.830466,0.129022,0.764061,0.126153,0.768908,0.078608,0.508597,0.654429
			 ,0.508597,0.688128,0.442193,0.690997,0.441048,0.654946,0.576146,0.654945,0.575002,0.690995,0.508597,0.688128,0.508597,0.654429
			 ,0.768908,0.078608,0.764061,0.126153,0.686732,0.116572,0.703366,0.064120,0.379367,0.343423,0.362732,0.290970,0.440063,0.281390
			 ,0.444909,0.328936,0.659684,0.656349,0.652333,0.700575,0.575002,0.690995,0.576146,0.654945,0.235303,0.161502,0.234171,0.125450
			 ,0.311506,0.115897,0.318843,0.160126,0.023135,0.232515,0.016468,0.198197,0.101251,0.190932,0.103174,0.217695,0.103174,0.217695
			 ,0.101251,0.190932,0.167744,0.188914,0.167736,0.213181,0.167736,0.213181,0.167744,0.188914,0.234236,0.190978,0.232295,0.217740
			 ,0.232295,0.217740,0.234236,0.190978,0.319014,0.198301,0.312324,0.232614,0.444036,0.598707,0.447636,0.571672,0.508596,0.577966
			 ,0.508596,0.603242,0.364003,0.583862,0.375925,0.551356,0.447636,0.571672,0.444036,0.598707,0.444909,0.328936,0.440063,0.281390
			 ,0.506468,0.278521,0.506468,0.324664,0.506468,0.324664,0.506468,0.278521,0.572873,0.281389,0.568027,0.328936,0.568027,0.328936
			 ,0.572873,0.281389,0.650204,0.290970,0.633570,0.343423,0.381497,0.753031,0.364862,0.700578,0.442193,0.690997,0.447040,0.738543
			 ,0.653190,0.583858,0.659869,0.618173,0.575088,0.625468,0.573157,0.598706,0.573157,0.598706,0.575088,0.625468,0.508597,0.627510
			 ,0.508596,0.603242,0.571029,0.189099,0.567429,0.162064,0.639140,0.141748,0.651062,0.174254,0.506468,0.193635,0.506468,0.168359
			 ,0.567429,0.162064,0.571029,0.189099,0.508596,0.603242,0.508597,0.627510,0.442105,0.625470,0.444036,0.598707,0.444036,0.598707
			 ,0.442105,0.625470,0.357325,0.618177,0.364003,0.583862,0.651062,0.174254,0.657741,0.208569,0.572960,0.215862,0.571029,0.189099
			 ,0.571029,0.189099,0.572960,0.215862,0.506468,0.217902,0.506468,0.193635,0.447040,0.738543,0.442193,0.690997,0.508597,0.688128
			 ,0.508598,0.734271,0.508598,0.734271,0.508597,0.688128,0.575002,0.690995,0.570156,0.738542,0.506468,0.193635,0.506468,0.217902
			 ,0.439976,0.215862,0.441908,0.189099,0.441908,0.189099,0.445508,0.162064,0.506468,0.168359,0.506468,0.193635,0.361874,0.174254
			 ,0.373796,0.141747,0.445508,0.162064,0.441908,0.189099,0.441908,0.189099,0.439976,0.215862,0.355195,0.208569,0.361874,0.174254
			 ,0.570156,0.738542,0.575002,0.690995,0.652333,0.700575,0.635699,0.753028,0.294890,0.063437,0.311506,0.115897,0.234171,0.125450
			 ,0.229342,0.077902,0.685871,0.233287,0.679194,0.198972,0.763974,0.191680,0.765905,0.218442,0.765905,0.218442,0.763974,0.191680
			 ,0.830466,0.189640,0.830466,0.213907,0.765905,0.218442,0.769505,0.245478,0.697793,0.265794,0.685871,0.233287,0.830466,0.213907
			 ,0.830465,0.239183,0.769505,0.245478,0.765905,0.218442,0.830466,0.213907,0.830466,0.189640,0.896957,0.191680,0.895026,0.218442
			 ,0.895026,0.218442,0.891426,0.245478,0.830465,0.239183,0.830466,0.213907,0.975060,0.233287,0.963138,0.265794,0.891426,0.245478
			 ,0.895026,0.218442,0.895026,0.218442,0.896957,0.191680,0.981737,0.198972,0.975060,0.233287,0.659869,0.618173,0.659684,0.656349
			 ,0.576146,0.654945,0.575088,0.625468,0.575088,0.625468,0.576146,0.654945,0.508597,0.654429,0.508597,0.627510,0.508597,0.627510
			 ,0.508597,0.654429,0.441048,0.654946,0.442105,0.625470,0.442105,0.625470,0.441048,0.654946,0.357510,0.656352,0.357325,0.618177
			 ,0.657741,0.208569,0.657556,0.246744,0.574017,0.245338,0.572960,0.215862,0.572960,0.215862,0.574017,0.245338,0.506468,0.244822
			 ,0.506468,0.217902,0.506468,0.217902,0.506468,0.244822,0.438919,0.245339,0.439976,0.215862,0.439976,0.215862,0.438919,0.245339
			 ,0.355381,0.246744,0.355195,0.208569,0.679194,0.198972,0.679380,0.160797,0.762917,0.162204,0.763974,0.191680,0.763974,0.191680
			 ,0.762917,0.162204,0.830466,0.162720,0.830466,0.189640,0.830466,0.189640,0.830466,0.162720,0.898014,0.162204,0.896957,0.191680
			 ,0.896957,0.191680,0.898014,0.162204,0.981551,0.160797,0.981737,0.198972,0.016468,0.198197,0.016666,0.160022,0.100204,0.161455
			 ,0.101251,0.190932,0.101251,0.190932,0.100204,0.161455,0.167754,0.161995,0.167744,0.188914,0.167744,0.188914,0.167754,0.161995
			 ,0.235303,0.161502,0.234236,0.190978,0.234236,0.190978,0.235303,0.161502,0.318843,0.160126,0.319014,0.198301,0.122857,0.313019
			 ,0.167704,0.305654,0.167689,0.347990,0.136209,0.353986,0.944726,0.300156,0.885172,0.276934,0.891426,0.245478,0.963138,0.265794
			 ,0.233127,1.404958,0.191605,1.363436,0.315879,1.278978,0.231420,1.154704,0.285311,1.131382,0.315879,1.278978,0.400337,1.403251
			 ,0.346446,1.426574,0.315879,1.278978,0.398630,1.152997,0.440152,1.194519,0.315879,1.278978,0.168283,1.309545,0.168283,1.250824
			 ,0.315879,1.278978,0.463475,1.307131,0.441860,1.361729,0.315879,1.278978,0.191605,1.363436,0.168283,1.309545,0.315879,1.278978
			 ,0.285311,1.131382,0.344032,1.131382,0.315879,1.278978,0.120554,0.813372,0.062900,0.823749,0.061586,0.816153,0.119312,0.805807
			 ,0.177361,0.797161,0.178407,0.804755,0.120554,0.813372,0.119312,0.805807,0.353329,0.787678,0.294799,0.791899,0.294161,0.784243
			 ,0.352897,0.779988,0.411864,0.777621,0.412087,0.785333,0.353329,0.787678,0.352897,0.779988,0.589067,0.787429,0.530069,0.785205
			 ,0.530274,0.777471,0.589483,0.779700,0.294161,0.784243,0.294799,0.791899,0.236468,0.797399,0.235625,0.789769,0.061586,0.816153
			 ,0.062900,0.823749,0.003252,0.833981,0.003280,0.826065,0.706742,0.796962,0.647959,0.791546,0.648583,0.783836,0.707576,0.789268
			 ,0.236468,0.797399,0.178407,0.804755,0.177361,0.797161,0.235625,0.789769,0.942189,0.833445,0.881951,0.823221,0.883264,0.815549
			 ,0.942147,0.825453,0.759377,0.848007,0.760405,0.840440,0.817862,0.848772,0.816612,0.856365,0.883264,0.815549,0.881951,0.823221
			 ,0.823729,0.812850,0.824968,0.805211,0.530274,0.777471,0.530069,0.785205,0.471033,0.784290,0.471023,0.776548,0.766360,0.796599
			 ,0.765320,0.804263,0.706742,0.796962,0.707576,0.789268,0.648583,0.783836,0.647959,0.791546,0.589067,0.787429,0.589483,0.779700
			 ,0.823729,0.812850,0.765320,0.804263,0.766360,0.796599,0.824968,0.805211,0.823729,0.812850,0.822433,0.820802,0.764270,0.811993
			 ,0.765320,0.804263,0.759377,0.848007,0.816612,0.856365,0.815403,0.863707,0.758359,0.855489,0.820947,0.829915,0.762999,0.821350
			 ,0.764270,0.811993,0.822433,0.820802,0.761643,0.831331,0.762999,0.821350,0.820947,0.829915,0.819355,0.839656,0.761643,0.831331
			 ,0.819355,0.839656,0.817862,0.848772,0.760405,0.840440,0.463475,1.248410,0.463475,1.307131,0.315879,1.278978,0.287725,1.426574
			 ,0.233127,1.404958,0.315879,1.278978,0.344032,1.131382,0.398630,1.152997,0.315879,1.278978,0.441860,1.361729,0.400337,1.403251
			 ,0.315879,1.278978,0.189898,1.196226,0.231420,1.154704,0.315879,1.278978,0.168283,1.250824,0.189898,1.196226,0.315879,1.278978
			 ,0.440152,1.194519,0.463475,1.248410,0.315879,1.278978,0.346446,1.426574,0.287725,1.426574,0.315879,1.278978,0.816612,0.856365
			 ,0.817862,0.848772,0.875181,0.859252,0.873621,0.866815,0.873621,0.866815,0.875181,0.859252,0.934655,0.872680,0.931644,0.880309
			 ,0.013778,0.880382,0.010783,0.872831,0.069668,0.859427,0.071227,0.866915,0.071227,0.866915,0.069668,0.859427,0.126428,0.848949
			 ,0.127678,0.856469,0.127678,0.856469,0.126428,0.848949,0.183341,0.840602,0.184372,0.848100,0.184372,0.848100,0.183341,0.840602
			 ,0.240419,0.833279,0.241251,0.840863,0.241251,0.840863,0.240419,0.833279,0.297788,0.828040,0.298409,0.835599,0.298409,0.835599
			 ,0.297788,0.828040,0.355330,0.823833,0.355747,0.831475,0.355747,0.831475,0.355330,0.823833,0.413107,0.821734,0.413313,0.829346
			 ,0.413313,0.829346,0.413107,0.821734,0.471056,0.820680,0.471056,0.828372,0.471056,0.828372,0.471056,0.820680,0.529098,0.821708
			 ,0.528894,0.829343,0.528894,0.829343,0.529098,0.821708,0.587113,0.823769,0.586700,0.831450,0.586700,0.831450,0.587113,0.823769
			 ,0.645011,0.827938,0.644395,0.835549,0.644395,0.835549,0.645011,0.827938,0.702822,0.833140,0.701993,0.840787,0.701993,0.840787
			 ,0.702822,0.833140,0.760405,0.840440,0.759377,0.848007,0.878900,0.840259,0.877000,0.850172,0.819355,0.839656,0.820947,0.829915
			 ,0.940506,0.852263,0.937944,0.863058,0.877000,0.850172,0.878900,0.840259,0.065952,0.840620,0.067851,0.850436,0.007508,0.863306
			 ,0.004952,0.852618,0.123339,0.830273,0.124933,0.839921,0.067851,0.850436,0.065952,0.840620,0.180739,0.821685,0.182100,0.831576
			 ,0.124933,0.839921,0.123339,0.830273,0.238348,0.814443,0.239419,0.824175,0.182100,0.831576,0.180739,0.821685,0.296215,0.808968
			 ,0.297039,0.818940,0.239419,0.824175,0.238348,0.814443,0.354285,0.804853,0.354827,0.814660,0.297039,0.818940,0.296215,0.808968
			 ,0.412576,0.802526,0.412855,0.812569,0.354827,0.814660,0.354285,0.804853,0.471048,0.801578,0.471053,0.811447,0.412855,0.812569
			 ,0.412576,0.802526,0.529610,0.802446,0.529342,0.812517,0.471053,0.811447,0.471048,0.801578,0.588138,0.804692,0.587609,0.814548
			 ,0.529342,0.812517,0.529610,0.802446,0.646566,0.808734,0.645753,0.818775,0.587609,0.814548,0.588138,0.804692,0.704880,0.814148
			 ,0.703817,0.823961,0.645753,0.818775,0.646566,0.808734,0.762999,0.821350,0.761643,0.831331,0.703817,0.823961,0.704880,0.814148
			 ,0.881951,0.823221,0.880594,0.830988,0.822433,0.820802,0.823729,0.812850,0.942189,0.833445,0.941991,0.842113,0.880594,0.830988
			 ,0.881951,0.823221,0.062900,0.823749,0.064258,0.831440,0.003463,0.842566,0.003252,0.833981,0.120554,0.813372,0.121852,0.821248
			 ,0.064258,0.831440,0.062900,0.823749,0.178407,0.804755,0.179463,0.812414,0.121852,0.821248,0.120554,0.813372,0.236468,0.797399
			 ,0.237345,0.805341,0.179463,0.812414,0.178407,0.804755,0.294799,0.791899,0.295440,0.799621,0.237345,0.805341,0.236468,0.797399
			 ,0.353329,0.787678,0.353776,0.795681,0.295440,0.799621,0.294799,0.791899,0.412087,0.785333,0.412310,0.793111,0.353776,0.795681
			 ,0.353329,0.787678,0.471033,0.784290,0.471041,0.792346,0.412310,0.793111,0.412087,0.785333,0.530069,0.785205,0.529861,0.793005
			 ,0.471041,0.792346,0.471033,0.784290,0.589067,0.787429,0.588634,0.795473,0.529861,0.793005,0.530069,0.785205,0.647959,0.791546
			 ,0.647329,0.799322,0.588634,0.795473,0.589067,0.787429,0.706742,0.796962,0.705874,0.804970,0.647329,0.799322,0.647959,0.791546
			 ,0.765320,0.804263,0.764270,0.811993,0.705874,0.804970,0.706742,0.796962,0.701192,0.848183,0.701993,0.840787,0.759377,0.848007
			 ,0.758359,0.855489,0.643785,0.843076,0.644395,0.835549,0.701993,0.840787,0.701192,0.848183,0.586301,0.838880,0.586700,0.831450
			 ,0.644395,0.835549,0.643785,0.843076,0.528693,0.836893,0.528894,0.829343,0.586700,0.831450,0.586301,0.838880,0.471055,0.835814
			 ,0.471056,0.828372,0.528894,0.829343,0.528693,0.836893,0.413514,0.836874,0.413313,0.829346,0.471056,0.828372,0.471055,0.835814
			 ,0.356148,0.838866,0.355747,0.831475,0.413313,0.829346,0.413514,0.836874,0.299020,0.843073,0.298409,0.835599,0.355747,0.831475
			 ,0.356148,0.838866,0.242055,0.848198,0.241251,0.840863,0.298409,0.835599,0.299020,0.843073,0.185390,0.855513,0.184372,0.848100
			 ,0.241251,0.840863,0.242055,0.848198,0.128887,0.863740,0.127678,0.856469,0.184372,0.848100,0.185390,0.855513,0.072787,0.874277
			 ,0.071227,0.866915,0.127678,0.856469,0.128887,0.863740,0.016808,0.887353,0.013778,0.880382,0.071227,0.866915,0.072787,0.874277
			 ,0.872059,0.874249,0.873621,0.866815,0.931644,0.880309,0.928598,0.887352,0.815403,0.863707,0.816612,0.856365,0.873621,0.866815
			 ,0.872059,0.874249,0.702822,0.833140,0.703817,0.823961,0.761643,0.831331,0.760405,0.840440,0.645011,0.827938,0.645753,0.818775
			 ,0.703817,0.823961,0.702822,0.833140,0.587113,0.823769,0.587609,0.814548,0.645753,0.818775,0.645011,0.827938,0.529098,0.821708
			 ,0.529342,0.812517,0.587609,0.814548,0.587113,0.823769,0.471056,0.820680,0.471053,0.811447,0.529342,0.812517,0.529098,0.821708
			 ,0.413107,0.821734,0.412855,0.812569,0.471053,0.811447,0.471056,0.820680,0.355330,0.823833,0.354827,0.814660,0.412855,0.812569
			 ,0.413107,0.821734,0.297788,0.828040,0.297039,0.818940,0.354827,0.814660,0.355330,0.823833,0.240419,0.833279,0.239419,0.824175
			 ,0.297039,0.818940,0.297788,0.828040,0.183341,0.840602,0.182100,0.831576,0.239419,0.824175,0.240419,0.833279,0.126428,0.848949
			 ,0.124933,0.839921,0.182100,0.831576,0.183341,0.840602,0.069668,0.859427,0.067851,0.850436,0.124933,0.839921,0.126428,0.848949
			 ,0.010783,0.872831,0.007508,0.863306,0.067851,0.850436,0.069668,0.859427,0.875181,0.859252,0.877000,0.850172,0.937944,0.863058
			 ,0.934655,0.872680,0.817862,0.848772,0.819355,0.839656,0.877000,0.850172,0.875181,0.859252,0.704880,0.814148,0.705874,0.804970
			 ,0.764270,0.811993,0.762999,0.821350,0.646566,0.808734,0.647329,0.799322,0.705874,0.804970,0.704880,0.814148,0.588138,0.804692
			 ,0.588634,0.795473,0.647329,0.799322,0.646566,0.808734,0.529610,0.802446,0.529861,0.793005,0.588634,0.795473,0.588138,0.804692
			 ,0.471048,0.801578,0.471041,0.792346,0.529861,0.793005,0.529610,0.802446,0.412576,0.802526,0.412310,0.793111,0.471041,0.792346
			 ,0.471048,0.801578,0.354285,0.804853,0.353776,0.795681,0.412310,0.793111,0.412576,0.802526,0.296215,0.808968,0.295440,0.799621
			 ,0.353776,0.795681,0.354285,0.804853,0.238348,0.814443,0.237345,0.805341,0.295440,0.799621,0.296215,0.808968,0.180739,0.821685
			 ,0.179463,0.812414,0.237345,0.805341,0.238348,0.814443,0.123339,0.830273,0.121852,0.821248,0.179463,0.812414,0.180739,0.821685
			 ,0.065952,0.840620,0.064258,0.831440,0.121852,0.821248,0.123339,0.830273,0.004952,0.852618,0.003463,0.842566,0.064258,0.831440
			 ,0.065952,0.840620,0.878900,0.840259,0.880594,0.830988,0.941991,0.842113,0.940506,0.852263,0.820947,0.829915,0.822433,0.820802
			 ,0.880594,0.830988,0.878900,0.840259,0.471033,0.784290,0.412087,0.785333,0.411864,0.777621,0.471023,0.776548
			UVIndex: 0,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,3183
		}
		LayerElementTexture: 0 {
			Version: 101
			Name: "diffuse"
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "IndexToDirect"
			BlendMode: "Translucent"
			TextureAlpha: 1
			TextureId: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
			 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
		}
		LayerElementUV: 1 {
			Version: 101
			Name: "lightMap"
			MappingInformationType: "ByPolygonVertex"
			ReferenceInformationType: "IndexToDirect"
			UV: 0.899957,0.664663,0.899957,0.590239,0.894161,0.590239,0.894161,0.664663,0.076427,0.968584,0.076427,0.962788,0.002004,0.962788
			 ,0.002004,0.968584,0.958780,0.233290,0.958780,0.158867,0.952984,0.158867,0.952984,0.233290,0.154859,0.968584,0.154859,0.962788
			 ,0.080435,0.962788,0.080435,0.968584,0.958780,0.668671,0.952984,0.668671,0.952984,0.743094,0.958780,0.743094,0.080435,0.958780
			 ,0.154859,0.958780,0.154859,0.952984,0.080435,0.952984,0.958780,0.747102,0.952984,0.747102,0.952984,0.821525,0.958780,0.821525
			 ,0.899957,0.958780,0.899957,0.952984,0.825533,0.952984,0.825533,0.958780,0.958780,0.590239,0.952984,0.590239,0.952984,0.664663
			 ,0.958780,0.664663,0.390153,0.958780,0.390153,0.952984,0.315729,0.952984,0.315729,0.958780,0.948976,0.076427,0.948976,0.002004
			 ,0.943181,0.002004,0.943181,0.076427,0.233290,0.958780,0.233290,0.952984,0.158867,0.952984,0.158867,0.958780,0.948976,0.664663
			 ,0.948976,0.590239,0.943181,0.590239,0.943181,0.664663,0.468584,0.958780,0.468584,0.952984,0.394161,0.952984,0.394161,0.958780
			 ,0.948976,0.507800,0.948976,0.433377,0.943181,0.433377,0.943181,0.507800,0.590239,0.958780,0.664663,0.958780,0.664663,0.952984
			 ,0.590239,0.952984,0.948976,0.429369,0.948976,0.354945,0.943181,0.354945,0.943181,0.429369,0.821525,0.948976,0.821525,0.943181
			 ,0.747102,0.943181,0.747102,0.948976,0.948976,0.080435,0.943181,0.080435,0.943181,0.154859,0.948976,0.154859,0.668671,0.948976
			 ,0.743094,0.948976,0.743094,0.943181,0.668671,0.943181,0.948976,0.350937,0.948976,0.276514,0.943181,0.276514,0.943181,0.350937
			 ,0.590239,0.948976,0.664663,0.948976,0.664663,0.943181,0.590239,0.943181,0.939172,0.899957,0.939172,0.825533,0.933377,0.825533
			 ,0.933377,0.899957,0.076427,0.948976,0.076427,0.943181,0.002004,0.943181,0.002004,0.948976,0.933377,0.154859,0.939172,0.154859
			 ,0.939172,0.080435,0.933377,0.080435,0.394161,0.948976,0.468584,0.948976,0.468584,0.943181,0.394161,0.943181,0.939172,0.747102
			 ,0.933377,0.747102,0.933377,0.821525,0.939172,0.821525,0.002004,0.939172,0.076427,0.939172,0.076427,0.933377,0.002004,0.933377
			 ,0.939172,0.198082,0.933377,0.198082,0.933377,0.272506,0.939172,0.272506,0.272506,0.939172,0.272506,0.933377,0.198082,0.933377
			 ,0.198082,0.939172,0.929369,0.076427,0.929369,0.002004,0.923573,0.002004,0.923573,0.076427,0.194074,0.939172,0.194074,0.933377
			 ,0.119651,0.933377,0.119651,0.939172,0.929369,0.821525,0.929369,0.747102,0.923573,0.747102,0.923573,0.821525,0.276514,0.929369
			 ,0.350937,0.929369,0.350937,0.923573,0.276514,0.923573,0.929369,0.668671,0.923573,0.668671,0.923573,0.743094,0.929369,0.743094
			 ,0.194074,0.929369,0.194074,0.923573,0.119651,0.923573,0.119651,0.929369,0.919565,0.668671,0.913769,0.668671,0.913769,0.743094
			 ,0.919565,0.743094,0.076427,0.929369,0.076427,0.923573,0.002004,0.923573,0.002004,0.929369,0.919565,0.198082,0.913769,0.198082
			 ,0.913769,0.272506,0.919565,0.272506,0.664663,0.929369,0.664663,0.923573,0.590239,0.923573,0.590239,0.929369,0.919565,0.080435
			 ,0.913769,0.080435,0.913769,0.154859,0.919565,0.154859,0.743094,0.929369,0.743094,0.923573,0.668671,0.923573,0.668671,0.929369
			 ,0.919565,0.747102,0.913769,0.747102,0.913769,0.821525,0.919565,0.821525,0.899957,0.929369,0.899957,0.923573,0.825533,0.923573
			 ,0.825533,0.929369,0.919565,0.276514,0.913769,0.276514,0.913769,0.350937,0.919565,0.350937,0.586231,0.929369,0.586231,0.923573
			 ,0.511808,0.923573,0.511808,0.929369,0.919565,0.825533,0.913769,0.825533,0.913769,0.899957,0.919565,0.899957,0.821525,0.919565
			 ,0.821525,0.913769,0.747102,0.913769,0.747102,0.919565,0.919565,0.433377,0.913769,0.433377,0.913769,0.507800,0.919565,0.507800
			 ,0.899957,0.919565,0.899957,0.913769,0.825533,0.913769,0.825533,0.919565,0.919565,0.354945,0.913769,0.354945,0.913769,0.429369
			 ,0.919565,0.429369,0.154859,0.919565,0.154859,0.913769,0.080435,0.913769,0.080435,0.919565,0.919565,0.002004,0.913769,0.002004
			 ,0.913769,0.076427,0.919565,0.076427,0.233290,0.919565,0.233290,0.913769,0.158867,0.913769,0.158867,0.919565,0.909761,0.002004
			 ,0.903965,0.002004,0.903965,0.076427,0.909761,0.076427,0.311721,0.919565,0.311721,0.913769,0.237298,0.913769,0.237298,0.919565
			 ,0.909761,0.668671,0.903965,0.668671,0.903965,0.743094,0.909761,0.743094,0.664663,0.919565,0.664663,0.913769,0.590239,0.913769
			 ,0.590239,0.919565,0.909761,0.354945,0.903965,0.354945,0.903965,0.429369,0.909761,0.429369,0.899957,0.909761,0.899957,0.903965
			 ,0.825533,0.903965,0.825533,0.909761,0.894161,0.429369,0.899957,0.429369,0.899957,0.354945,0.894161,0.354945,0.664663,0.909761
			 ,0.664663,0.903965,0.590239,0.903965,0.590239,0.909761,0.899957,0.433377,0.894161,0.433377,0.894161,0.507800,0.899957,0.507800
			 ,0.233290,0.909761,0.233290,0.903965,0.158867,0.903965,0.158867,0.909761,0.899957,0.080435,0.894161,0.080435,0.894161,0.154859
			 ,0.899957,0.154859,0.821525,0.909761,0.821525,0.903965,0.747102,0.903965,0.747102,0.909761,0.899957,0.668671,0.894161,0.668671
			 ,0.894161,0.743094,0.899957,0.743094,0.743094,0.909761,0.743094,0.903965,0.668671,0.903965,0.668671,0.909761,0.899957,0.198082
			 ,0.894161,0.198082,0.894161,0.272506,0.899957,0.272506,0.154859,0.899957,0.154859,0.894161,0.080435,0.894161,0.080435,0.899957
			 ,0.890153,0.198082,0.884357,0.198082,0.884357,0.272506,0.890153,0.272506,0.002004,0.899957,0.076427,0.899957,0.076427,0.894161
			 ,0.002004,0.894161,0.890153,0.590239,0.884357,0.590239,0.884357,0.664663,0.890153,0.664663,0.350937,0.899957,0.350937,0.894161
			 ,0.276514,0.894161,0.276514,0.899957,0.890153,0.433377,0.884357,0.433377,0.884357,0.507800,0.890153,0.507800,0.821525,0.899957
			 ,0.821525,0.894161,0.747102,0.894161,0.747102,0.899957,0.890153,0.747102,0.884357,0.747102,0.884357,0.821525,0.890153,0.821525
			 ,0.507800,0.899957,0.507800,0.894161,0.433377,0.894161,0.433377,0.899957,0.890153,0.002004,0.884357,0.002004,0.884357,0.076427
			 ,0.890153,0.076427,0.743094,0.899957,0.743094,0.894161,0.668671,0.894161,0.668671,0.899957,0.890153,0.080435,0.884357,0.080435
			 ,0.884357,0.154859,0.890153,0.154859,0.429369,0.899957,0.429369,0.894161,0.354945,0.894161,0.354945,0.899957,0.890153,0.668671
			 ,0.884357,0.668671,0.884357,0.743094,0.890153,0.743094,0.154859,0.890153,0.154859,0.884357,0.080435,0.884357,0.080435,0.890153
			 ,0.880349,0.002004,0.874553,0.002004,0.874553,0.076427,0.880349,0.076427,0.076427,0.890153,0.076427,0.884357,0.002004,0.884357
			 ,0.002004,0.890153,0.880349,0.198082,0.874553,0.198082,0.874553,0.272506,0.880349,0.272506,0.586231,0.890153,0.586231,0.884357
			 ,0.511808,0.884357,0.511808,0.890153,0.880349,0.668671,0.874553,0.668671,0.874553,0.743094,0.880349,0.743094,0.664663,0.890153
			 ,0.664663,0.884357,0.590239,0.884357,0.590239,0.890153,0.880349,0.747102,0.874553,0.747102,0.874553,0.821525,0.880349,0.821525
			 ,0.350937,0.890153,0.350937,0.884357,0.276514,0.884357,0.276514,0.890153,0.870545,0.590239,0.864749,0.590239,0.864749,0.664663
			 ,0.870545,0.664663,0.429369,0.880349,0.429369,0.874553,0.354945,0.874553,0.354945,0.880349,0.870545,0.668671,0.864749,0.668671
			 ,0.864749,0.743094,0.870545,0.743094,0.743094,0.880349,0.743094,0.874553,0.668671,0.874553,0.668671,0.880349,0.997996,0.825533
			 ,0.992200,0.825533,0.992200,0.841133,0.997996,0.841133,0.100043,0.997996,0.115643,0.997996,0.115643,0.992200,0.100043,0.992200
			 ,0.997996,0.992200,0.992200,0.992200,0.992200,0.997996,0.997996,0.997996,0.988192,0.511808,0.982396,0.511808,0.982396,0.547016
			 ,0.988192,0.547016,0.864749,0.988192,0.899957,0.988192,0.899957,0.982396,0.864749,0.982396,0.988192,0.992200,0.982396,0.992200
			 ,0.982396,0.997996,0.988192,0.997996,0.988192,0.394161,0.982396,0.394161,0.982396,0.429369,0.988192,0.429369,0.997996,0.982396
			 ,0.992200,0.982396,0.992200,0.988192,0.997996,0.988192,0.860741,0.988192,0.860741,0.982396,0.825533,0.982396,0.825533,0.988192
			 ,0.997996,0.743094,0.997996,0.707886,0.992200,0.707886,0.992200,0.743094,0.988192,0.982396,0.982396,0.982396,0.982396,0.988192
			 ,0.988192,0.988192,0.997996,0.600043,0.992200,0.600043,0.992200,0.605839,0.997996,0.605839,0.903965,0.997996,0.919565,0.997996
			 ,0.919565,0.992200,0.903965,0.992200,0.997996,0.939172,0.997996,0.903965,0.992200,0.903965,0.992200,0.939172,0.841133,0.997996
			 ,0.841133,0.992200,0.825533,0.992200,0.825533,0.997996,0.997996,0.547016,0.997996,0.511808,0.992200,0.511808,0.992200,0.547016
			 ,0.448976,0.988192,0.448976,0.982396,0.413769,0.982396,0.413769,0.988192,0.997996,0.845141,0.992200,0.845141,0.992200,0.860741
			 ,0.997996,0.860741,0.115643,0.988192,0.115643,0.982396,0.080435,0.982396,0.080435,0.988192,0.988192,0.600043,0.982396,0.600043
			 ,0.982396,0.605839,0.988192,0.605839,0.997996,0.119651,0.992200,0.119651,0.992200,0.135251,0.997996,0.135251,0.076427,0.988192
			 ,0.076427,0.982396,0.041220,0.982396,0.041220,0.988192,0.997996,0.747102,0.992200,0.747102,0.992200,0.782310,0.997996,0.782310
			 ,0.413769,0.997996,0.429369,0.997996,0.429369,0.992200,0.413769,0.992200,0.997996,0.590239,0.992200,0.590239,0.992200,0.596035
			 ,0.997996,0.596035,0.988192,0.590239,0.982396,0.590239,0.982396,0.596035,0.988192,0.596035,0.997996,0.821525,0.997996,0.786318
			 ,0.992200,0.786318,0.992200,0.821525,0.864749,0.997996,0.880349,0.997996,0.880349,0.992200,0.864749,0.992200,0.997996,0.580435
			 ,0.992200,0.580435,0.992200,0.586231,0.997996,0.586231,0.997996,0.115643,0.997996,0.080435,0.992200,0.080435,0.992200,0.115643
			 ,0.988192,0.580435,0.982396,0.580435,0.982396,0.586231,0.988192,0.586231,0.978388,0.988192,0.978388,0.982396,0.962788,0.982396
			 ,0.962788,0.988192,0.997996,0.076427,0.997996,0.041220,0.992200,0.041220,0.992200,0.076427,0.997996,0.570631,0.992200,0.570631
			 ,0.992200,0.576427,0.997996,0.576427,0.237298,0.988192,0.252898,0.988192,0.252898,0.982396,0.237298,0.982396,0.752898,0.997996
			 ,0.752898,0.982396,0.747102,0.982396,0.747102,0.997996,0.988192,0.570631,0.982396,0.570631,0.982396,0.576427,0.988192,0.576427
			 ,0.233290,0.988192,0.233290,0.982396,0.217690,0.982396,0.217690,0.988192,0.997996,0.394161,0.992200,0.394161,0.992200,0.429369
			 ,0.997996,0.429369,0.997996,0.482396,0.992200,0.482396,0.992200,0.488192,0.997996,0.488192,0.988192,0.482396,0.982396,0.482396
			 ,0.982396,0.488192,0.988192,0.488192,0.688278,0.988192,0.723486,0.988192,0.723486,0.982396,0.688278,0.982396,0.988192,0.390153
			 ,0.988192,0.374553,0.982396,0.374553,0.982396,0.390153,0.194074,0.988192,0.194074,0.982396,0.178475,0.982396,0.178475,0.988192
			 ,0.997996,0.472592,0.992200,0.472592,0.992200,0.478388,0.997996,0.478388,0.988192,0.551024,0.982396,0.551024,0.982396,0.566623
			 ,0.988192,0.566623,0.119651,0.988192,0.135251,0.988192,0.135251,0.982396,0.119651,0.982396,0.988192,0.472592,0.982396,0.472592
			 ,0.982396,0.478388,0.988192,0.478388,0.988192,0.507800,0.988192,0.492200,0.982396,0.492200,0.982396,0.507800,0.821525,0.988192
			 ,0.821525,0.982396,0.805926,0.982396,0.805926,0.988192,0.997996,0.462788,0.992200,0.462788,0.992200,0.468584,0.997996,0.468584
			 ,0.988192,0.462788,0.982396,0.462788,0.982396,0.468584,0.988192,0.468584,0.997996,0.452984,0.992200,0.452984,0.992200,0.458780
			 ,0.997996,0.458780,0.988192,0.884357,0.982396,0.884357,0.982396,0.899957,0.988192,0.899957,0.988192,0.452984,0.982396,0.452984
			 ,0.982396,0.458780,0.988192,0.458780,0.997996,0.168671,0.992200,0.168671,0.992200,0.174467,0.997996,0.174467,0.988192,0.168671
			 ,0.982396,0.168671,0.982396,0.174467,0.988192,0.174467,0.997996,0.158867,0.992200,0.158867,0.992200,0.164663,0.997996,0.164663
			 ,0.468584,0.988192,0.468584,0.982396,0.452984,0.982396,0.452984,0.988192,0.988192,0.448976,0.988192,0.433377,0.982396,0.433377
			 ,0.982396,0.448976,0.903965,0.988192,0.919565,0.988192,0.919565,0.982396,0.903965,0.982396,0.997996,0.296122,0.992200,0.296122
			 ,0.992200,0.311721,0.997996,0.311721,0.213682,0.988192,0.213682,0.982396,0.198082,0.982396,0.198082,0.988192,0.733290,0.997996
			 ,0.733290,0.982396,0.727494,0.982396,0.727494,0.997996,0.021612,0.988192,0.037212,0.988192,0.037212,0.982396,0.021612,0.982396
			 ,0.743094,0.982396,0.737298,0.982396,0.737298,0.997996,0.743094,0.997996,0.845141,0.997996,0.860741,0.997996,0.860741,0.992200
			 ,0.845141,0.992200,0.762702,0.997996,0.762702,0.982396,0.756906,0.982396,0.756906,0.997996,0.468584,0.997996,0.468584,0.992200
			 ,0.452984,0.992200,0.452984,0.997996,0.997996,0.154859,0.997996,0.139259,0.992200,0.139259,0.992200,0.154859,0.899957,0.997996
			 ,0.899957,0.992200,0.884357,0.992200,0.884357,0.997996,0.997996,0.507800,0.997996,0.492200,0.992200,0.492200,0.992200,0.507800
			 ,0.472592,0.997996,0.488192,0.997996,0.488192,0.992200,0.472592,0.992200,0.997996,0.566623,0.997996,0.551024,0.992200,0.551024
			 ,0.992200,0.566623,0.433377,0.997996,0.448976,0.997996,0.448976,0.992200,0.433377,0.992200,0.997996,0.292114,0.997996,0.276514
			 ,0.992200,0.276514,0.992200,0.292114,0.119651,0.997996,0.135251,0.997996,0.135251,0.992200,0.119651,0.992200,0.997996,0.272506
			 ,0.997996,0.256906,0.992200,0.256906,0.992200,0.272506,0.080435,0.997996,0.096035,0.997996,0.096035,0.992200,0.080435,0.992200
			 ,0.997996,0.390153,0.997996,0.374553,0.992200,0.374553,0.992200,0.390153,0.060828,0.997996,0.076427,0.997996,0.076427,0.992200
			 ,0.060828,0.992200,0.997996,0.899957,0.997996,0.884357,0.992200,0.884357,0.992200,0.899957,0.041220,0.997996,0.056820,0.997996
			 ,0.056820,0.992200,0.041220,0.992200,0.997996,0.448976,0.997996,0.433377,0.992200,0.433377,0.992200,0.448976,0.237298,0.997996
			 ,0.252898,0.997996,0.252898,0.992200,0.237298,0.992200,0.997996,0.252898,0.997996,0.237298,0.992200,0.237298,0.992200,0.252898
			 ,0.021612,0.997996,0.037212,0.997996,0.037212,0.992200,0.021612,0.992200,0.997996,0.315729,0.982396,0.315729,0.982396,0.331329
			 ,0.997996,0.331329,0.997996,0.002004,0.982396,0.002004,0.982396,0.017604,0.997996,0.017604,0.997996,0.021612,0.982396,0.021612
			 ,0.982396,0.037212,0.997996,0.037212,0.997996,0.864749,0.982396,0.864749,0.982396,0.880349,0.997996,0.880349,0.997996,0.688278
			 ,0.982396,0.688278,0.982396,0.703878,0.997996,0.703878,0.390153,0.982396,0.374553,0.982396,0.374553,0.997996,0.390153,0.997996
			 ,0.409761,0.982396,0.394161,0.982396,0.394161,0.997996,0.409761,0.997996,0.350937,0.982396,0.335337,0.982396,0.335337,0.997996
			 ,0.350937,0.997996,0.370545,0.982396,0.354945,0.982396,0.354945,0.997996,0.370545,0.997996,0.311721,0.982396,0.296122,0.982396
			 ,0.296122,0.997996,0.311721,0.997996,0.331329,0.982396,0.315729,0.982396,0.315729,0.997996,0.331329,0.997996,0.586231,0.982396
			 ,0.570631,0.982396,0.570631,0.997996,0.586231,0.997996,0.605839,0.982396,0.590239,0.982396,0.590239,0.997996,0.605839,0.997996
			 ,0.272506,0.982396,0.256906,0.982396,0.256906,0.997996,0.272506,0.997996,0.292114,0.982396,0.276514,0.982396,0.276514,0.997996
			 ,0.292114,0.997996,0.997996,0.178475,0.982396,0.178475,0.982396,0.194074,0.997996,0.194074,0.664663,0.982396,0.649063,0.982396
			 ,0.649063,0.997996,0.664663,0.997996,0.684271,0.982396,0.668671,0.982396,0.668671,0.997996,0.684271,0.997996,0.625447,0.982396
			 ,0.609847,0.982396,0.609847,0.997996,0.625447,0.997996,0.645055,0.982396,0.629455,0.982396,0.629455,0.997996,0.645055,0.997996
			 ,0.997996,0.943181,0.982396,0.943181,0.982396,0.958780,0.997996,0.958780,0.997996,0.962788,0.982396,0.962788,0.982396,0.978388
			 ,0.997996,0.978388,0.566623,0.982396,0.551024,0.982396,0.551024,0.997996,0.566623,0.997996,0.939172,0.982396,0.923573,0.982396
			 ,0.923573,0.997996,0.939172,0.997996,0.958780,0.982396,0.943181,0.982396,0.943181,0.997996,0.958780,0.997996,0.782310,0.982396
			 ,0.766710,0.982396,0.766710,0.997996,0.782310,0.997996,0.801918,0.982396,0.786318,0.982396,0.786318,0.997996,0.801918,0.997996
			 ,0.154859,0.982396,0.139259,0.982396,0.139259,0.997996,0.154859,0.997996,0.174467,0.982396,0.158867,0.982396,0.158867,0.997996
			 ,0.174467,0.997996,0.017604,0.982396,0.002004,0.982396,0.002004,0.997996,0.017604,0.997996,0.841133,0.237298,0.825533,0.237298
			 ,0.825533,0.252898,0.841133,0.252898,0.821525,0.315729,0.805926,0.315729,0.805926,0.331329,0.821525,0.331329,0.988192,0.158867
			 ,0.982396,0.158867,0.982396,0.164663,0.988192,0.164663,0.997996,0.619651,0.992200,0.619651,0.992200,0.625447,0.997996,0.625447
			 ,0.988192,0.619651,0.982396,0.619651,0.982396,0.625447,0.988192,0.625447,0.997996,0.609847,0.992200,0.609847,0.992200,0.615643
			 ,0.997996,0.615643,0.988192,0.609847,0.982396,0.609847,0.982396,0.615643,0.988192,0.615643,0.997996,0.678475,0.992200,0.678475
			 ,0.992200,0.684271,0.997996,0.684271,0.988192,0.678475,0.982396,0.678475,0.982396,0.684271,0.988192,0.684271,0.997996,0.668671
			 ,0.992200,0.668671,0.992200,0.674467,0.997996,0.674467,0.988192,0.668671,0.982396,0.668671,0.982396,0.674467,0.988192,0.674467
			 ,0.997996,0.364749,0.992200,0.364749,0.992200,0.370545,0.997996,0.370545,0.988192,0.364749,0.982396,0.364749,0.982396,0.370545
			 ,0.988192,0.370545,0.997996,0.354945,0.992200,0.354945,0.992200,0.360741,0.997996,0.360741,0.988192,0.354945,0.982396,0.354945
			 ,0.982396,0.360741,0.988192,0.360741,0.997996,0.345141,0.992200,0.345141,0.992200,0.350937,0.997996,0.350937,0.988192,0.345141
			 ,0.982396,0.345141,0.982396,0.350937,0.988192,0.350937,0.997996,0.335337,0.992200,0.335337,0.992200,0.341133,0.997996,0.341133
			 ,0.988192,0.335337,0.982396,0.335337,0.982396,0.341133,0.988192,0.341133,0.988192,0.198082,0.982396,0.198082,0.982396,0.233290
			 ,0.988192,0.233290,0.664663,0.821525,0.664663,0.805926,0.590239,0.805926,0.590239,0.821525,0.988192,0.743094,0.988192,0.707886
			 ,0.982396,0.707886,0.982396,0.743094,0.354945,0.890153,0.429369,0.890153,0.429369,0.884357,0.354945,0.884357,0.870545,0.429369
			 ,0.870545,0.354945,0.864749,0.354945,0.864749,0.429369,0.433377,0.880349,0.507800,0.880349,0.507800,0.874553,0.433377,0.874553
			 ,0.870545,0.198082,0.864749,0.198082,0.864749,0.272506,0.870545,0.272506,0.821525,0.870545,0.821525,0.864749,0.747102,0.864749
			 ,0.747102,0.870545,0.860741,0.154859,0.860741,0.080435,0.854945,0.080435,0.854945,0.154859,0.350937,0.870545,0.350937,0.864749
			 ,0.276514,0.864749,0.276514,0.870545,0.860741,0.590239,0.854945,0.590239,0.854945,0.664663,0.860741,0.664663,0.590239,0.841133
			 ,0.664663,0.841133,0.664663,0.825533,0.590239,0.825533,0.850937,0.154859,0.850937,0.080435,0.845141,0.080435,0.845141,0.154859
			 ,0.547016,0.782310,0.547016,0.747102,0.472592,0.747102,0.472592,0.782310,0.988192,0.782310,0.988192,0.747102,0.982396,0.747102
			 ,0.982396,0.782310,0.472592,0.988192,0.507800,0.988192,0.507800,0.982396,0.472592,0.982396,0.841133,0.233290,0.841133,0.198082
			 ,0.825533,0.198082,0.825533,0.233290,0.511808,0.988192,0.547016,0.988192,0.547016,0.982396,0.511808,0.982396,0.988192,0.272506
			 ,0.988192,0.237298,0.982396,0.237298,0.982396,0.272506,0.511808,0.978388,0.547016,0.978388,0.547016,0.972592,0.511808,0.972592
			 ,0.841133,0.782310,0.841133,0.747102,0.825533,0.747102,0.825533,0.782310,0.821525,0.080435,0.786318,0.080435,0.786318,0.115643
			 ,0.821525,0.115643,0.590239,0.978388,0.625447,0.978388,0.625447,0.972592,0.590239,0.972592,0.988192,0.311721,0.988192,0.276514
			 ,0.982396,0.276514,0.982396,0.311721,0.629455,0.978388,0.664663,0.978388,0.664663,0.972592,0.629455,0.972592,0.988192,0.076427
			 ,0.988192,0.041220,0.982396,0.041220,0.982396,0.076427,0.786318,0.292114,0.821525,0.292114,0.821525,0.276514,0.786318,0.276514
			 ,0.988192,0.115643,0.988192,0.080435,0.982396,0.080435,0.982396,0.115643,0.786318,0.017604,0.821525,0.017604,0.821525,0.002004
			 ,0.786318,0.002004,0.988192,0.154859,0.988192,0.119651,0.982396,0.119651,0.982396,0.154859,0.786318,0.037212,0.821525,0.037212
			 ,0.821525,0.021612,0.786318,0.021612,0.988192,0.860741,0.988192,0.825533,0.982396,0.825533,0.982396,0.860741,0.472592,0.978388
			 ,0.507800,0.978388,0.507800,0.972592,0.472592,0.972592,0.821525,0.668671,0.786318,0.668671,0.786318,0.703878,0.821525,0.703878
			 ,0.988192,0.664663,0.988192,0.629455,0.982396,0.629455,0.982396,0.664663,0.825533,0.978388,0.860741,0.978388,0.860741,0.972592
			 ,0.825533,0.972592,0.988192,0.821525,0.988192,0.786318,0.982396,0.786318,0.982396,0.821525,0.821525,0.041220,0.786318,0.041220
			 ,0.786318,0.076427,0.821525,0.076427,0.864749,0.978388,0.899957,0.978388,0.899957,0.972592,0.864749,0.972592,0.988192,0.939172
			 ,0.988192,0.903965,0.982396,0.903965,0.982396,0.939172,0.786318,0.350937,0.821525,0.350937,0.821525,0.335337,0.786318,0.335337
			 ,0.801918,0.331329,0.801918,0.296122,0.786318,0.296122,0.786318,0.331329,0.805926,0.311721,0.841133,0.311721,0.841133,0.296122
			 ,0.805926,0.296122,0.978388,0.625447,0.978388,0.590239,0.972592,0.590239,0.972592,0.625447,0.276514,0.978388,0.311721,0.978388
			 ,0.311721,0.972592,0.276514,0.972592,0.841133,0.821525,0.841133,0.786318,0.825533,0.786318,0.825533,0.821525,0.041220,0.978388
			 ,0.076427,0.978388,0.076427,0.972592,0.041220,0.972592,0.978388,0.547016,0.978388,0.511808,0.972592,0.511808,0.972592,0.547016
			 ,0.782310,0.786318,0.747102,0.786318,0.747102,0.821525,0.782310,0.821525,0.821525,0.354945,0.786318,0.354945,0.786318,0.390153
			 ,0.821525,0.390153,0.315729,0.978388,0.350937,0.978388,0.350937,0.972592,0.315729,0.972592,0.978388,0.468584,0.978388,0.433377
			 ,0.972592,0.433377,0.972592,0.468584,0.707886,0.978388,0.743094,0.978388,0.743094,0.972592,0.707886,0.972592,0.841133,0.507800
			 ,0.841133,0.472592,0.825533,0.472592,0.825533,0.507800,0.903965,0.978388,0.939172,0.978388,0.939172,0.972592,0.903965,0.972592
			 ,0.841133,0.292114,0.841133,0.256906,0.825533,0.256906,0.825533,0.292114,0.080435,0.841133,0.115643,0.841133,0.115643,0.825533
			 ,0.080435,0.825533,0.978388,0.743094,0.978388,0.707886,0.972592,0.707886,0.972592,0.743094,0.276514,0.841133,0.350937,0.841133
			 ,0.350937,0.825533,0.276514,0.825533,0.978388,0.311721,0.978388,0.276514,0.972592,0.276514,0.972592,0.311721,0.821525,0.551024
			 ,0.786318,0.551024,0.786318,0.586231,0.821525,0.586231,0.590239,0.850937,0.664663,0.850937,0.664663,0.845141,0.590239,0.845141
			 ,0.978388,0.154859,0.978388,0.119651,0.972592,0.119651,0.972592,0.154859,0.747102,0.850937,0.821525,0.850937,0.821525,0.845141
			 ,0.747102,0.845141,0.743094,0.154859,0.743094,0.080435,0.707886,0.080435,0.707886,0.154859,0.668671,0.978388,0.703878,0.978388
			 ,0.703878,0.972592,0.668671,0.972592,0.841133,0.115643,0.841133,0.080435,0.825533,0.080435,0.825533,0.115643,0.511808,0.850937
			 ,0.586231,0.850937,0.586231,0.845141,0.511808,0.845141,0.831329,0.390153,0.831329,0.315729,0.825533,0.315729,0.825533,0.390153
			 ,0.511808,0.841133,0.586231,0.841133,0.586231,0.825533,0.511808,0.825533,0.978388,0.315729,0.972592,0.315729,0.972592,0.350937
			 ,0.978388,0.350937,0.743094,0.841133,0.743094,0.825533,0.668671,0.825533,0.668671,0.841133,0.978388,0.390153,0.978388,0.354945
			 ,0.972592,0.354945,0.972592,0.390153,0.747102,0.860741,0.821525,0.860741,0.821525,0.854945,0.747102,0.854945,0.841133,0.194074
			 ,0.841133,0.119651,0.835337,0.119651,0.835337,0.194074,0.354945,0.860741,0.429369,0.860741,0.429369,0.854945,0.354945,0.854945
			 ,0.841133,0.511808,0.835337,0.511808,0.835337,0.586231,0.841133,0.586231,0.664663,0.860741,0.664663,0.854945,0.590239,0.854945
			 ,0.590239,0.860741,0.841133,0.743094,0.841133,0.668671,0.835337,0.668671,0.835337,0.743094,0.076427,0.860741,0.076427,0.854945
			 ,0.002004,0.854945,0.002004,0.860741,0.841133,0.394161,0.835337,0.394161,0.835337,0.468584,0.841133,0.468584,0.747102,0.841133
			 ,0.821525,0.841133,0.821525,0.825533,0.747102,0.825533,0.850937,0.272506,0.850937,0.198082,0.845141,0.198082,0.845141,0.272506
			 ,0.625447,0.743094,0.625447,0.707886,0.551024,0.707886,0.551024,0.743094,0.978388,0.429369,0.978388,0.394161,0.972592,0.394161
			 ,0.972592,0.429369,0.237298,0.978388,0.272506,0.978388,0.272506,0.972592,0.237298,0.972592,0.860741,0.311721,0.860741,0.276514
			 ,0.845141,0.276514,0.845141,0.311721,0.354945,0.978388,0.390153,0.978388,0.390153,0.972592,0.354945,0.972592,0.978388,0.782310
			 ,0.978388,0.747102,0.972592,0.747102,0.972592,0.782310,0.394161,0.978388,0.429369,0.978388,0.429369,0.972592,0.394161,0.972592
			 ,0.860741,0.194074,0.860741,0.158867,0.845141,0.158867,0.845141,0.194074,0.821525,0.590239,0.786318,0.590239,0.786318,0.625447
			 ,0.821525,0.625447,0.433377,0.978388,0.468584,0.978388,0.468584,0.972592,0.433377,0.972592,0.978388,0.194074,0.978388,0.158867
			 ,0.972592,0.158867,0.972592,0.194074,0.080435,0.978388,0.115643,0.978388,0.115643,0.972592,0.080435,0.972592,0.978388,0.233290
			 ,0.978388,0.198082,0.972592,0.198082,0.972592,0.233290,0.825533,0.841133,0.860741,0.841133,0.860741,0.825533,0.825533,0.825533
			 ,0.978388,0.664663,0.978388,0.629455,0.972592,0.629455,0.972592,0.664663,0.825533,0.860741,0.860741,0.860741,0.860741,0.845141
			 ,0.825533,0.845141,0.978388,0.703878,0.978388,0.668671,0.972592,0.668671,0.972592,0.703878,0.158867,0.870545,0.194074,0.870545
			 ,0.194074,0.854945,0.158867,0.854945,0.978388,0.939172,0.978388,0.903965,0.972592,0.903965,0.972592,0.939172,0.002004,0.978388
			 ,0.037212,0.978388,0.037212,0.972592,0.002004,0.972592,0.821525,0.629455,0.786318,0.629455,0.786318,0.664663,0.821525,0.664663
			 ,0.978388,0.115643,0.978388,0.080435,0.972592,0.080435,0.972592,0.115643,0.551024,0.978388,0.586231,0.978388,0.586231,0.972592
			 ,0.551024,0.972592,0.978388,0.821525,0.978388,0.786318,0.972592,0.786318,0.972592,0.821525,0.821525,0.707886,0.786318,0.707886
			 ,0.786318,0.743094,0.821525,0.743094,0.943181,0.948976,0.978388,0.948976,0.978388,0.943181,0.943181,0.943181,0.978388,0.272506
			 ,0.978388,0.237298,0.972592,0.237298,0.972592,0.272506,0.825533,0.880349,0.860741,0.880349,0.860741,0.864749,0.825533,0.864749
			 ,0.860741,0.429369,0.860741,0.394161,0.845141,0.394161,0.845141,0.429369,0.237298,0.880349,0.272506,0.880349,0.272506,0.864749
			 ,0.237298,0.864749,0.978388,0.860741,0.978388,0.825533,0.972592,0.825533,0.972592,0.860741,0.943181,0.978388,0.978388,0.978388
			 ,0.978388,0.972592,0.943181,0.972592,0.870545,0.782310,0.870545,0.747102,0.854945,0.747102,0.854945,0.782310,0.943181,0.958780
			 ,0.978388,0.958780,0.978388,0.952984,0.943181,0.952984,0.978388,0.899957,0.978388,0.864749,0.972592,0.864749,0.972592,0.899957
			 ,0.821525,0.747102,0.786318,0.747102,0.786318,0.782310,0.821525,0.782310,0.821525,0.433377,0.786318,0.433377,0.786318,0.468584
			 ,0.821525,0.468584,0.943181,0.968584,0.978388,0.968584,0.978388,0.962788,0.943181,0.962788,0.978388,0.586231,0.978388,0.551024
			 ,0.972592,0.551024,0.972592,0.586231,0.747102,0.978388,0.782310,0.978388,0.782310,0.972592,0.747102,0.972592,0.870545,0.821525
			 ,0.870545,0.786318,0.854945,0.786318,0.854945,0.821525,0.119651,0.978388,0.154859,0.978388,0.154859,0.972592,0.119651,0.972592
			 ,0.880349,0.115643,0.880349,0.080435,0.864749,0.080435,0.864749,0.115643,0.198082,0.880349,0.233290,0.880349,0.233290,0.864749
			 ,0.198082,0.864749,0.978388,0.507800,0.978388,0.472592,0.972592,0.472592,0.972592,0.507800,0.002004,0.841133,0.076427,0.841133
			 ,0.076427,0.825533,0.002004,0.825533,0.978388,0.076427,0.978388,0.041220,0.972592,0.041220,0.972592,0.076427,0.821525,0.511808
			 ,0.786318,0.511808,0.786318,0.547016,0.821525,0.547016,0.747102,0.880349,0.821525,0.880349,0.821525,0.874553,0.747102,0.874553
			 ,0.978388,0.037212,0.978388,0.002004,0.972592,0.002004,0.972592,0.037212,0.276514,0.880349,0.350937,0.880349,0.350937,0.874553
			 ,0.276514,0.874553,0.664663,0.429369,0.664663,0.354945,0.629455,0.354945,0.629455,0.429369,0.786318,0.978388,0.821525,0.978388
			 ,0.821525,0.972592,0.786318,0.972592,0.880349,0.547016,0.880349,0.511808,0.864749,0.511808,0.864749,0.547016,0.002004,0.880349
			 ,0.076427,0.880349,0.076427,0.874553,0.002004,0.874553,0.870545,0.507800,0.870545,0.433377,0.864749,0.433377,0.864749,0.507800
			 ,0.158867,0.821525,0.233290,0.821525,0.233290,0.805926,0.158867,0.805926,0.968584,0.198082,0.962788,0.198082,0.962788,0.233290
			 ,0.968584,0.233290,0.429369,0.821525,0.429369,0.805926,0.354945,0.805926,0.354945,0.821525,0.968584,0.586231,0.968584,0.551024
			 ,0.962788,0.551024,0.962788,0.586231,0.668671,0.968584,0.743094,0.968584,0.743094,0.962788,0.668671,0.962788,0.870545,0.194074
			 ,0.870545,0.119651,0.864749,0.119651,0.864749,0.194074,0.668671,0.890153,0.743094,0.890153,0.743094,0.884357,0.668671,0.884357
			 ,0.880349,0.354945,0.874553,0.354945,0.874553,0.429369,0.880349,0.429369,0.507800,0.890153,0.507800,0.884357,0.433377,0.884357
			 ,0.433377,0.890153,0.880349,0.664663,0.880349,0.590239,0.874553,0.590239,0.874553,0.664663,0.821525,0.890153,0.821525,0.884357
			 ,0.747102,0.884357,0.747102,0.890153,0.880349,0.119651,0.874553,0.119651,0.874553,0.194074,0.880349,0.194074,0.668671,0.821525
			 ,0.743094,0.821525,0.743094,0.805926,0.668671,0.805926,0.880349,0.350937,0.880349,0.276514,0.874553,0.276514,0.874553,0.350937
			 ,0.625447,0.664663,0.625447,0.629455,0.551024,0.629455,0.551024,0.664663,0.968584,0.194074,0.968584,0.158867,0.962788,0.158867
			 ,0.962788,0.194074,0.158867,0.978388,0.194074,0.978388,0.194074,0.972592,0.158867,0.972592,0.880349,0.880349,0.880349,0.845141
			 ,0.864749,0.845141,0.864749,0.880349,0.198082,0.978388,0.233290,0.978388,0.233290,0.972592,0.198082,0.972592,0.968584,0.154859
			 ,0.968584,0.119651,0.962788,0.119651,0.962788,0.154859,0.198082,0.968584,0.233290,0.968584,0.233290,0.962788,0.198082,0.962788
			 ,0.880349,0.586231,0.880349,0.551024,0.864749,0.551024,0.864749,0.586231,0.821525,0.472592,0.786318,0.472592,0.786318,0.507800
			 ,0.821525,0.507800,0.903965,0.968584,0.939172,0.968584,0.939172,0.962788,0.903965,0.962788,0.968584,0.037212,0.968584,0.002004
			 ,0.962788,0.002004,0.962788,0.037212,0.237298,0.968584,0.272506,0.968584,0.272506,0.962788,0.237298,0.962788,0.968584,0.076427
			 ,0.968584,0.041220,0.962788,0.041220,0.962788,0.076427,0.864749,0.841133,0.899957,0.841133,0.899957,0.825533,0.864749,0.825533
			 ,0.968584,0.115643,0.968584,0.080435,0.962788,0.080435,0.962788,0.115643,0.237298,0.899957,0.272506,0.899957,0.272506,0.884357
			 ,0.237298,0.884357,0.968584,0.664663,0.968584,0.629455,0.962788,0.629455,0.962788,0.664663,0.864749,0.899957,0.899957,0.899957
			 ,0.899957,0.884357,0.864749,0.884357,0.968584,0.311721,0.968584,0.276514,0.962788,0.276514,0.962788,0.311721,0.786318,0.968584
			 ,0.821525,0.968584,0.821525,0.962788,0.786318,0.962788,0.154859,0.786318,0.119651,0.786318,0.119651,0.821525,0.154859,0.821525
			 ,0.968584,0.939172,0.968584,0.903965,0.962788,0.903965,0.962788,0.939172,0.864749,0.968584,0.899957,0.968584,0.899957,0.962788
			 ,0.864749,0.962788,0.968584,0.899957,0.968584,0.864749,0.962788,0.864749,0.962788,0.899957,0.350937,0.786318,0.315729,0.786318
			 ,0.315729,0.821525,0.350937,0.821525,0.825533,0.968584,0.860741,0.968584,0.860741,0.962788,0.825533,0.962788,0.968584,0.821525
			 ,0.968584,0.786318,0.962788,0.786318,0.962788,0.821525,0.825533,0.899957,0.860741,0.899957,0.860741,0.884357,0.825533,0.884357
			 ,0.899957,0.586231,0.899957,0.551024,0.884357,0.551024,0.884357,0.586231,0.511808,0.909761,0.547016,0.909761,0.547016,0.894161
			 ,0.511808,0.894161,0.968584,0.860741,0.968584,0.825533,0.962788,0.825533,0.962788,0.860741,0.158867,0.968584,0.194074,0.968584
			 ,0.194074,0.962788,0.158867,0.962788,0.899957,0.311721,0.899957,0.276514,0.884357,0.276514,0.884357,0.311721,0.354945,0.968584
			 ,0.390153,0.968584,0.390153,0.962788,0.354945,0.962788,0.968584,0.507800,0.968584,0.472592,0.962788,0.472592,0.962788,0.507800
			 ,0.468584,0.786318,0.433377,0.786318,0.433377,0.821525,0.468584,0.821525,0.468584,0.747102,0.433377,0.747102,0.433377,0.782310
			 ,0.468584,0.782310,0.276514,0.968584,0.311721,0.968584,0.311721,0.962788,0.276514,0.962788,0.968584,0.625447,0.968584,0.590239
			 ,0.962788,0.590239,0.962788,0.625447,0.315729,0.968584,0.350937,0.968584,0.350937,0.962788,0.315729,0.962788,0.899957,0.350937
			 ,0.899957,0.315729,0.884357,0.315729,0.884357,0.350937,0.433377,0.968584,0.468584,0.968584,0.468584,0.962788,0.433377,0.962788
			 ,0.899957,0.880349,0.899957,0.845141,0.884357,0.845141,0.884357,0.880349,0.551024,0.909761,0.586231,0.909761,0.586231,0.894161
			 ,0.551024,0.894161,0.968584,0.429369,0.968584,0.394161,0.962788,0.394161,0.962788,0.429369,0.041220,0.821525,0.115643,0.821525
			 ,0.115643,0.805926,0.041220,0.805926,0.968584,0.350937,0.968584,0.315729,0.962788,0.315729,0.962788,0.350937,0.037212,0.786318
			 ,0.002004,0.786318,0.002004,0.821525,0.037212,0.821525,0.080435,0.909761,0.154859,0.909761,0.154859,0.903965,0.080435,0.903965
			 ,0.968584,0.390153,0.968584,0.354945,0.962788,0.354945,0.962788,0.390153,0.354945,0.909761,0.429369,0.909761,0.429369,0.903965
			 ,0.354945,0.903965,0.586231,0.076427,0.586231,0.002004,0.551024,0.002004,0.551024,0.076427,0.394161,0.968584,0.429369,0.968584
			 ,0.429369,0.962788,0.394161,0.962788,0.899957,0.194074,0.899957,0.158867,0.884357,0.158867,0.884357,0.194074,0.002004,0.909761
			 ,0.076427,0.909761,0.076427,0.903965,0.002004,0.903965,0.899957,0.821525,0.899957,0.747102,0.894161,0.747102,0.894161,0.821525
			 ,0.668671,0.801918,0.743094,0.801918,0.743094,0.786318,0.668671,0.786318,0.968584,0.237298,0.962788,0.237298,0.962788,0.272506
			 ,0.968584,0.272506,0.115643,0.801918,0.115643,0.786318,0.041220,0.786318,0.041220,0.801918,0.968584,0.743094,0.968584,0.707886
			 ,0.962788,0.707886,0.962788,0.743094,0.511808,0.919565,0.586231,0.919565,0.586231,0.913769,0.511808,0.913769,0.909761,0.350937
			 ,0.909761,0.276514,0.903965,0.276514,0.903965,0.350937,0.433377,0.919565,0.507800,0.919565,0.507800,0.913769,0.433377,0.913769
			 ,0.909761,0.080435,0.903965,0.080435,0.903965,0.154859,0.909761,0.154859,0.743094,0.919565,0.743094,0.913769,0.668671,0.913769
			 ,0.668671,0.919565,0.909761,0.899957,0.909761,0.825533,0.903965,0.825533,0.903965,0.899957,0.429369,0.919565,0.429369,0.913769
			 ,0.354945,0.913769,0.354945,0.919565,0.909761,0.747102,0.903965,0.747102,0.903965,0.821525,0.909761,0.821525,0.590239,0.801918
			 ,0.664663,0.801918,0.664663,0.786318,0.590239,0.786318,0.909761,0.625447,0.909761,0.551024,0.903965,0.551024,0.903965,0.625447
			 ,0.507800,0.547016,0.507800,0.511808,0.433377,0.511808,0.433377,0.547016,0.968584,0.782310,0.968584,0.747102,0.962788,0.747102
			 ,0.962788,0.782310,0.747102,0.968584,0.782310,0.968584,0.782310,0.962788,0.747102,0.962788,0.899957,0.547016,0.899957,0.511808
			 ,0.884357,0.511808,0.884357,0.547016,0.551024,0.968584,0.586231,0.968584,0.586231,0.962788,0.551024,0.962788,0.968584,0.547016
			 ,0.968584,0.511808,0.962788,0.511808,0.962788,0.547016,0.903965,0.958780,0.939172,0.958780,0.939172,0.952984,0.903965,0.952984
			 ,0.919565,0.194074,0.919565,0.158867,0.903965,0.158867,0.903965,0.194074,0.507800,0.786318,0.472592,0.786318,0.472592,0.821525
			 ,0.507800,0.821525,0.551024,0.958780,0.586231,0.958780,0.586231,0.952984,0.551024,0.952984,0.968584,0.468584,0.968584,0.433377
			 ,0.962788,0.433377,0.962788,0.468584,0.354945,0.948976,0.390153,0.948976,0.390153,0.943181,0.354945,0.943181,0.968584,0.703878
			 ,0.968584,0.668671,0.962788,0.668671,0.962788,0.703878,0.315729,0.919565,0.350937,0.919565,0.350937,0.903965,0.315729,0.903965
			 ,0.958780,0.037212,0.958780,0.002004,0.952984,0.002004,0.952984,0.037212,0.903965,0.664663,0.939172,0.664663,0.939172,0.649063
			 ,0.903965,0.649063,0.958780,0.899957,0.958780,0.864749,0.952984,0.864749,0.952984,0.899957,0.472592,0.939172,0.507800,0.939172
			 ,0.507800,0.923573,0.472592,0.923573,0.958780,0.939172,0.958780,0.903965,0.952984,0.903965,0.952984,0.939172,0.551024,0.948976
			 ,0.586231,0.948976,0.586231,0.943181,0.551024,0.943181,0.547016,0.786318,0.511808,0.786318,0.511808,0.821525,0.547016,0.821525
			 ,0.958780,0.860741,0.958780,0.825533,0.952984,0.825533,0.952984,0.860741,0.903965,0.948976,0.939172,0.948976,0.939172,0.943181
			 ,0.903965,0.943181,0.958780,0.076427,0.958780,0.041220,0.952984,0.041220,0.952984,0.076427,0.586231,0.786318,0.551024,0.786318
			 ,0.551024,0.821525,0.586231,0.821525,0.237298,0.948976,0.272506,0.948976,0.272506,0.943181,0.237298,0.943181,0.958780,0.272506
			 ,0.958780,0.237298,0.952984,0.237298,0.952984,0.272506,0.903965,0.645055,0.939172,0.645055,0.939172,0.629455,0.903965,0.629455
			 ,0.929369,0.625447,0.929369,0.590239,0.913769,0.590239,0.913769,0.625447,0.080435,0.939172,0.115643,0.939172,0.115643,0.923573
			 ,0.080435,0.923573,0.948976,0.939172,0.948976,0.903965,0.943181,0.903965,0.943181,0.939172,0.903965,0.909761,0.939172,0.909761
			 ,0.939172,0.903965,0.903965,0.903965,0.939172,0.194074,0.939172,0.158867,0.923573,0.158867,0.923573,0.194074,0.903965,0.939172
			 ,0.939172,0.939172,0.939172,0.933377,0.903965,0.933377,0.948976,0.194074,0.948976,0.158867,0.943181,0.158867,0.943181,0.194074
			 ,0.272506,0.786318,0.237298,0.786318,0.237298,0.821525,0.272506,0.821525,0.311721,0.786318,0.276514,0.786318,0.276514,0.821525
			 ,0.311721,0.821525,0.433377,0.939172,0.468584,0.939172,0.468584,0.933377,0.433377,0.933377,0.939172,0.429369,0.939172,0.394161
			 ,0.933377,0.394161,0.933377,0.429369,0.433377,0.929369,0.468584,0.929369,0.468584,0.923573,0.433377,0.923573,0.939172,0.507800
			 ,0.939172,0.472592,0.923573,0.472592,0.923573,0.507800,0.158867,0.880349,0.194074,0.880349,0.194074,0.874553,0.158867,0.874553
			 ,0.939172,0.468584,0.939172,0.433377,0.923573,0.433377,0.923573,0.468584,0.903965,0.929369,0.939172,0.929369,0.939172,0.913769
			 ,0.903965,0.913769,0.939172,0.625447,0.939172,0.590239,0.933377,0.590239,0.933377,0.625447,0.158867,0.801918,0.233290,0.801918
			 ,0.233290,0.786318,0.158867,0.786318,0.929369,0.429369,0.929369,0.394161,0.923573,0.394161,0.923573,0.429369,0.782310,0.002004
			 ,0.747102,0.002004,0.747102,0.037212,0.782310,0.037212,0.511808,0.939172,0.586231,0.939172,0.586231,0.933377,0.511808,0.933377
			 ,0.909761,0.547016,0.909761,0.511808,0.903965,0.511808,0.903965,0.547016,0.825533,0.939172,0.899957,0.939172,0.899957,0.933377
			 ,0.825533,0.933377,0.507800,0.233290,0.507800,0.158867,0.472592,0.158867,0.472592,0.233290,0.080435,0.850937,0.115643,0.850937
			 ,0.115643,0.845141,0.080435,0.845141,0.939172,0.390153,0.939172,0.354945,0.923573,0.354945,0.923573,0.390153,0.747102,0.939172
			 ,0.821525,0.939172,0.821525,0.933377,0.747102,0.933377,0.939172,0.350937,0.939172,0.276514,0.933377,0.276514,0.933377,0.350937
			 ,0.354945,0.801918,0.429369,0.801918,0.429369,0.786318,0.354945,0.786318,0.782310,0.629455,0.747102,0.629455,0.747102,0.664663
			 ,0.782310,0.664663,0.507800,0.080435,0.472592,0.080435,0.472592,0.154859,0.507800,0.154859,0.782310,0.668671,0.747102,0.668671
			 ,0.747102,0.703878,0.782310,0.703878,0.154859,0.507800,0.154859,0.472592,0.080435,0.472592,0.080435,0.507800,0.507800,0.076427
			 ,0.507800,0.002004,0.472592,0.002004,0.472592,0.076427,0.315729,0.507800,0.390153,0.507800,0.390153,0.472592,0.315729,0.472592
			 ,0.782310,0.472592,0.747102,0.472592,0.747102,0.507800,0.782310,0.507800,0.782310,0.511808,0.747102,0.511808,0.747102,0.547016
			 ,0.782310,0.547016,0.429369,0.472592,0.394161,0.472592,0.394161,0.547016,0.429369,0.547016,0.311721,0.547016,0.311721,0.511808
			 ,0.237298,0.511808,0.237298,0.547016,0.782310,0.198082,0.747102,0.198082,0.747102,0.233290,0.782310,0.233290,0.782310,0.551024
			 ,0.747102,0.551024,0.747102,0.586231,0.782310,0.586231,0.547016,0.394161,0.511808,0.394161,0.511808,0.468584,0.547016,0.468584
			 ,0.511808,0.507800,0.586231,0.507800,0.586231,0.472592,0.511808,0.472592,0.586231,0.311721,0.586231,0.237298,0.551024,0.237298
			 ,0.551024,0.311721,0.433377,0.586231,0.507800,0.586231,0.507800,0.551024,0.433377,0.551024,0.782310,0.590239,0.747102,0.590239
			 ,0.747102,0.625447,0.782310,0.625447,0.782310,0.394161,0.747102,0.394161,0.747102,0.429369,0.782310,0.429369,0.350937,0.625447
			 ,0.350937,0.551024,0.315729,0.551024,0.315729,0.625447,0.782310,0.433377,0.747102,0.433377,0.747102,0.468584,0.782310,0.468584
			 ,0.782310,0.041220,0.747102,0.041220,0.747102,0.076427,0.782310,0.076427,0.311721,0.625447,0.311721,0.590239,0.237298,0.590239
			 ,0.237298,0.625447,0.625447,0.507800,0.625447,0.433377,0.590239,0.433377,0.590239,0.507800,0.154859,0.625447,0.154859,0.590239
			 ,0.080435,0.590239,0.080435,0.625447,0.782310,0.080435,0.747102,0.080435,0.747102,0.115643,0.782310,0.115643,0.782310,0.119651
			 ,0.747102,0.119651,0.747102,0.154859,0.782310,0.154859,0.625447,0.002004,0.590239,0.002004,0.590239,0.076427,0.625447,0.076427
			 ,0.590239,0.115643,0.664663,0.115643,0.664663,0.080435,0.590239,0.080435,0.782310,0.158867,0.747102,0.158867,0.747102,0.194074
			 ,0.782310,0.194074,0.037212,0.747102,0.002004,0.747102,0.002004,0.782310,0.037212,0.782310,0.390153,0.590239,0.354945,0.590239
			 ,0.354945,0.664663,0.390153,0.664663,0.237298,0.664663,0.311721,0.664663,0.311721,0.629455,0.237298,0.629455,0.664663,0.747102
			 ,0.629455,0.747102,0.629455,0.782310,0.664663,0.782310,0.664663,0.198082,0.629455,0.198082,0.629455,0.272506,0.664663,0.272506
			 ,0.158867,0.664663,0.233290,0.664663,0.233290,0.629455,0.158867,0.629455,0.311721,0.747102,0.276514,0.747102,0.276514,0.782310
			 ,0.311721,0.782310,0.703878,0.747102,0.668671,0.747102,0.668671,0.782310,0.703878,0.782310,0.664663,0.664663,0.664663,0.590239
			 ,0.629455,0.590239,0.629455,0.664663,0.233290,0.747102,0.198082,0.747102,0.198082,0.782310,0.233290,0.782310,0.154859,0.664663
			 ,0.154859,0.629455,0.080435,0.629455,0.080435,0.664663,0.272506,0.747102,0.237298,0.747102,0.237298,0.782310,0.272506,0.782310
			 ,0.076427,0.158867,0.002004,0.158867,0.002004,0.233290,0.076427,0.233290,0.664663,0.511808,0.629455,0.511808,0.629455,0.586231
			 ,0.664663,0.586231,0.154859,0.747102,0.119651,0.747102,0.119651,0.782310,0.154859,0.782310,0.194074,0.747102,0.158867,0.747102
			 ,0.158867,0.782310,0.194074,0.782310,0.002004,0.664663,0.076427,0.664663,0.076427,0.629455,0.002004,0.629455,0.076427,0.747102
			 ,0.041220,0.747102,0.041220,0.782310,0.076427,0.782310,0.664663,0.507800,0.664663,0.433377,0.629455,0.433377,0.629455,0.507800
			 ,0.629455,0.076427,0.703878,0.076427,0.703878,0.041220,0.629455,0.041220,0.703878,0.198082,0.668671,0.198082,0.668671,0.272506
			 ,0.703878,0.272506,0.472592,0.703878,0.547016,0.703878,0.547016,0.668671,0.472592,0.668671,0.115643,0.747102,0.080435,0.747102
			 ,0.080435,0.782310,0.115643,0.782310,0.390153,0.747102,0.354945,0.747102,0.354945,0.782310,0.390153,0.782310,0.429369,0.747102
			 ,0.394161,0.747102,0.394161,0.782310,0.429369,0.782310,0.821525,0.786318,0.786318,0.786318,0.786318,0.821525,0.821525,0.821525
			 ,0.743094,0.354945,0.707886,0.354945,0.707886,0.429369,0.743094,0.429369,0.782310,0.707886,0.747102,0.707886,0.747102,0.743094
			 ,0.782310,0.743094,0.311721,0.507800,0.311721,0.472592,0.237298,0.472592,0.237298,0.507800,0.782310,0.354945,0.747102,0.354945
			 ,0.747102,0.390153,0.782310,0.390153,0.782310,0.315729,0.747102,0.315729,0.747102,0.350937,0.782310,0.350937,0.782310,0.276514
			 ,0.747102,0.276514,0.747102,0.311721,0.782310,0.311721,0.782310,0.237298,0.747102,0.237298,0.747102,0.272506,0.782310,0.272506
			 ,0.507800,0.394161,0.472592,0.394161,0.472592,0.468584,0.507800,0.468584,0.390153,0.394161,0.315729,0.394161,0.315729,0.468584
			 ,0.390153,0.468584,0.468584,0.315729,0.394161,0.315729,0.394161,0.390153,0.468584,0.390153,0.468584,0.394161,0.394161,0.394161
			 ,0.394161,0.468584,0.468584,0.468584,0.076427,0.472592,0.002004,0.472592,0.002004,0.547016,0.076427,0.547016,0.547016,0.315729
			 ,0.472592,0.315729,0.472592,0.390153,0.547016,0.390153,0.547016,0.237298,0.472592,0.237298,0.472592,0.311721,0.547016,0.311721
			 ,0.233290,0.472592,0.158867,0.472592,0.158867,0.547016,0.233290,0.547016,0.468584,0.002004,0.394161,0.002004,0.394161,0.076427
			 ,0.468584,0.076427,0.233290,0.394161,0.158867,0.394161,0.158867,0.468584,0.233290,0.468584,0.311721,0.394161,0.237298,0.394161
			 ,0.237298,0.468584,0.311721,0.468584,0.468584,0.080435,0.394161,0.080435,0.394161,0.154859,0.468584,0.154859,0.076427,0.394161
			 ,0.002004,0.394161,0.002004,0.468584,0.076427,0.468584,0.154859,0.394161,0.080435,0.394161,0.080435,0.468584,0.154859,0.468584
			 ,0.468584,0.158867,0.394161,0.158867,0.394161,0.233290,0.468584,0.233290,0.468584,0.237298,0.394161,0.237298,0.394161,0.311721
			 ,0.468584,0.311721,0.507800,0.507800,0.507800,0.472592,0.433377,0.472592,0.433377,0.507800,0.547016,0.002004,0.511808,0.002004
			 ,0.511808,0.076427,0.547016,0.076427,0.154859,0.547016,0.154859,0.511808,0.080435,0.511808,0.080435,0.547016,0.547016,0.080435
			 ,0.511808,0.080435,0.511808,0.154859,0.547016,0.154859,0.390153,0.547016,0.390153,0.511808,0.315729,0.511808,0.315729,0.547016
			 ,0.547016,0.158867,0.511808,0.158867,0.511808,0.233290,0.547016,0.233290,0.390153,0.315729,0.315729,0.315729,0.315729,0.390153
			 ,0.390153,0.390153,0.390153,0.237298,0.315729,0.237298,0.315729,0.311721,0.390153,0.311721,0.311721,0.703878,0.311721,0.668671
			 ,0.237298,0.668671,0.237298,0.703878,0.547016,0.511808,0.511808,0.511808,0.511808,0.586231,0.547016,0.586231,0.233290,0.586231
			 ,0.233290,0.551024,0.158867,0.551024,0.158867,0.586231,0.586231,0.080435,0.551024,0.080435,0.551024,0.154859,0.586231,0.154859
			 ,0.390153,0.002004,0.315729,0.002004,0.315729,0.076427,0.390153,0.076427,0.390153,0.080435,0.315729,0.080435,0.315729,0.154859
			 ,0.390153,0.154859,0.429369,0.586231,0.429369,0.551024,0.354945,0.551024,0.354945,0.586231,0.586231,0.158867,0.551024,0.158867
			 ,0.551024,0.233290,0.586231,0.233290,0.311721,0.586231,0.311721,0.551024,0.237298,0.551024,0.237298,0.586231,0.586231,0.315729
			 ,0.551024,0.315729,0.551024,0.390153,0.586231,0.390153,0.154859,0.586231,0.154859,0.551024,0.080435,0.551024,0.080435,0.586231
			 ,0.586231,0.394161,0.551024,0.394161,0.551024,0.468584,0.586231,0.468584,0.076427,0.586231,0.076427,0.551024,0.002004,0.551024
			 ,0.002004,0.586231,0.586231,0.511808,0.551024,0.511808,0.551024,0.586231,0.586231,0.586231,0.390153,0.158867,0.315729,0.158867
			 ,0.315729,0.233290,0.390153,0.233290,0.154859,0.315729,0.080435,0.315729,0.080435,0.390153,0.154859,0.390153,0.233290,0.625447
			 ,0.233290,0.590239,0.158867,0.590239,0.158867,0.625447,0.625447,0.511808,0.590239,0.511808,0.590239,0.586231,0.625447,0.586231
			 ,0.233290,0.315729,0.158867,0.315729,0.158867,0.390153,0.233290,0.390153,0.076427,0.315729,0.002004,0.315729,0.002004,0.390153
			 ,0.076427,0.390153,0.625447,0.625447,0.625447,0.590239,0.551024,0.590239,0.551024,0.625447,0.625447,0.354945,0.590239,0.354945
			 ,0.590239,0.429369,0.625447,0.429369,0.547016,0.625447,0.547016,0.590239,0.472592,0.590239,0.472592,0.625447,0.625447,0.276514
			 ,0.590239,0.276514,0.590239,0.350937,0.625447,0.350937,0.468584,0.625447,0.468584,0.590239,0.394161,0.590239,0.394161,0.625447
			 ,0.625447,0.198082,0.590239,0.198082,0.590239,0.272506,0.625447,0.272506,0.076427,0.625447,0.076427,0.590239,0.002004,0.590239
			 ,0.002004,0.625447,0.625447,0.119651,0.590239,0.119651,0.590239,0.194074,0.625447,0.194074,0.311721,0.237298,0.237298,0.237298
			 ,0.237298,0.311721,0.311721,0.311721,0.311721,0.158867,0.237298,0.158867,0.237298,0.233290,0.311721,0.233290,0.311721,0.002004
			 ,0.237298,0.002004,0.237298,0.076427,0.311721,0.076427,0.311721,0.080435,0.237298,0.080435,0.237298,0.154859,0.311721,0.154859
			 ,0.547016,0.664663,0.547016,0.629455,0.472592,0.629455,0.472592,0.664663,0.664663,0.119651,0.629455,0.119651,0.629455,0.194074
			 ,0.664663,0.194074,0.468584,0.664663,0.468584,0.629455,0.394161,0.629455,0.394161,0.664663,0.664663,0.276514,0.629455,0.276514
			 ,0.629455,0.350937,0.664663,0.350937,0.703878,0.037212,0.703878,0.002004,0.629455,0.002004,0.629455,0.037212,0.350937,0.629455
			 ,0.315729,0.629455,0.315729,0.703878,0.350937,0.703878,0.076427,0.703878,0.076427,0.668671,0.002004,0.668671,0.002004,0.703878
			 ,0.703878,0.276514,0.668671,0.276514,0.668671,0.350937,0.703878,0.350937,0.154859,0.002004,0.080435,0.002004,0.080435,0.076427
			 ,0.154859,0.076427,0.076427,0.080435,0.002004,0.080435,0.002004,0.154859,0.076427,0.154859,0.468584,0.703878,0.468584,0.668671
			 ,0.394161,0.668671,0.394161,0.703878,0.703878,0.433377,0.668671,0.433377,0.668671,0.507800,0.703878,0.507800,0.233290,0.703878
			 ,0.233290,0.668671,0.158867,0.668671,0.158867,0.703878,0.703878,0.354945,0.668671,0.354945,0.668671,0.429369,0.703878,0.429369
			 ,0.311721,0.315729,0.237298,0.315729,0.237298,0.390153,0.311721,0.390153,0.076427,0.002004,0.002004,0.002004,0.002004,0.076427
			 ,0.076427,0.076427,0.625447,0.703878,0.625447,0.668671,0.551024,0.668671,0.551024,0.703878,0.703878,0.511808,0.668671,0.511808
			 ,0.668671,0.586231,0.703878,0.586231,0.703878,0.703878,0.703878,0.668671,0.629455,0.668671,0.629455,0.703878,0.703878,0.590239
			 ,0.668671,0.590239,0.668671,0.664663,0.703878,0.664663,0.743094,0.194074,0.743094,0.158867,0.668671,0.158867,0.668671,0.194074
			 ,0.703878,0.080435,0.668671,0.080435,0.668671,0.154859,0.703878,0.154859,0.311721,0.743094,0.311721,0.707886,0.237298,0.707886
			 ,0.237298,0.743094,0.390153,0.668671,0.354945,0.668671,0.354945,0.743094,0.390153,0.743094,0.233290,0.743094,0.233290,0.707886
			 ,0.158867,0.707886,0.158867,0.743094,0.743094,0.590239,0.707886,0.590239,0.707886,0.664663,0.743094,0.664663,0.154859,0.743094
			 ,0.154859,0.707886,0.080435,0.707886,0.080435,0.743094,0.743094,0.511808,0.707886,0.511808,0.707886,0.586231,0.743094,0.586231
			 ,0.076427,0.743094,0.076427,0.707886,0.002004,0.707886,0.002004,0.743094,0.743094,0.433377,0.707886,0.433377,0.707886,0.507800
			 ,0.743094,0.507800,0.703878,0.743094,0.703878,0.707886,0.629455,0.707886,0.629455,0.743094,0.743094,0.276514,0.707886,0.276514
			 ,0.707886,0.350937,0.743094,0.350937,0.154859,0.703878,0.154859,0.668671,0.080435,0.668671,0.080435,0.703878,0.743094,0.198082
			 ,0.707886,0.198082,0.707886,0.272506,0.743094,0.272506,0.547016,0.743094,0.547016,0.707886,0.472592,0.707886,0.472592,0.743094
			 ,0.743094,0.002004,0.707886,0.002004,0.707886,0.076427,0.743094,0.076427,0.468584,0.743094,0.468584,0.707886,0.394161,0.707886
			 ,0.394161,0.743094,0.743094,0.668671,0.707886,0.668671,0.707886,0.743094,0.743094,0.743094,0.782310,0.782310,0.782310,0.747102
			 ,0.707886,0.747102,0.707886,0.782310,0.350937,0.707886,0.315729,0.707886,0.315729,0.782310,0.350937,0.782310,0.821525,0.394161
			 ,0.786318,0.394161,0.786318,0.429369,0.821525,0.429369,0.551024,0.782310,0.625447,0.782310,0.625447,0.747102,0.551024,0.747102
			 ,0.160871,0.233290,0.233290,0.233290,0.233290,0.160871,0.154859,0.311721,0.082439,0.311721,0.154859,0.239302,0.076427,0.311721
			 ,0.004008,0.311721,0.076427,0.239302,0.160871,0.311721,0.233290,0.311721,0.233290,0.239302,0.074423,0.237298,0.002004,0.237298
			 ,0.002004,0.309717,0.233290,0.076427,0.160871,0.076427,0.233290,0.004008,0.154859,0.154859,0.082439,0.154859,0.154859,0.082439
			 ,0.160871,0.154859,0.233290,0.154859,0.233290,0.082439,0.831329,0.664663,0.831329,0.590239,0.825533,0.590239,0.825533,0.664663
			 ,0.194074,0.841133,0.194074,0.835337,0.119651,0.835337,0.119651,0.841133,0.821525,0.272506,0.821525,0.198082,0.815729,0.198082
			 ,0.815729,0.272506,0.429369,0.841133,0.429369,0.835337,0.354945,0.835337,0.354945,0.841133,0.821525,0.194074,0.821525,0.119651
			 ,0.815729,0.119651,0.815729,0.194074,0.272506,0.841133,0.272506,0.835337,0.198082,0.835337,0.198082,0.841133,0.811722,0.198082
			 ,0.805926,0.198082,0.805926,0.272506,0.811722,0.272506,0.433377,0.841133,0.507800,0.841133,0.507800,0.835337,0.433377,0.835337
			 ,0.801918,0.194074,0.801918,0.119651,0.796122,0.119651,0.796122,0.194074,0.354945,0.831329,0.429369,0.831329,0.429369,0.825533
			 ,0.354945,0.825533,0.801918,0.198082,0.796122,0.198082,0.796122,0.272506,0.801918,0.272506,0.507800,0.831329,0.507800,0.825533
			 ,0.433377,0.825533,0.433377,0.831329,0.792114,0.198082,0.786318,0.198082,0.786318,0.272506,0.792114,0.272506,0.194074,0.831329
			 ,0.194074,0.825533,0.119651,0.825533,0.119651,0.831329,0.792114,0.119651,0.786318,0.119651,0.786318,0.194074,0.792114,0.194074
			 ,0.198082,0.831329,0.272506,0.831329,0.272506,0.825533,0.198082,0.825533,0.811722,0.119651,0.805926,0.119651,0.805926,0.194074
			 ,0.811722,0.194074,0.002004,0.850937,0.076427,0.850937,0.076427,0.845141,0.002004,0.845141,0.831329,0.743094,0.831329,0.668671
			 ,0.825533,0.668671,0.825533,0.743094,0.507800,0.850937,0.507800,0.845141,0.433377,0.845141,0.433377,0.850937,0.841133,0.076427
			 ,0.841133,0.002004,0.835337,0.002004,0.835337,0.076427,0.152855,0.237298,0.080435,0.237298,0.080435,0.309717,0.158867,0.237298
			 ,0.231286,0.237298,0.158867,0.309717,0.158867,0.158867,0.231286,0.158867,0.158867,0.231286,0.082439,0.233290,0.154859,0.233290
			 ,0.154859,0.160871,0.152855,0.158867,0.080435,0.158867,0.080435,0.231286,0.158867,0.002004,0.231286,0.002004,0.158867,0.074423
			 ,0.158867,0.080435,0.231286,0.080435,0.158867,0.152855,0.152855,0.080435,0.080435,0.080435,0.080435,0.152855,0.507800,0.860741
			 ,0.507800,0.854945,0.433377,0.854945,0.433377,0.860741,0.870545,0.002004,0.864749,0.002004,0.864749,0.076427,0.870545,0.076427
			 ,0.233290,0.890153,0.233290,0.884357,0.158867,0.884357,0.158867,0.890153,0.880349,0.433377,0.874553,0.433377,0.874553,0.507800
			 ,0.880349,0.507800,0.233290,0.899957,0.233290,0.894161,0.158867,0.894161,0.158867,0.899957,0.890153,0.354945,0.884357,0.354945
			 ,0.884357,0.429369,0.890153,0.429369,0.664663,0.899957,0.664663,0.894161,0.590239,0.894161,0.590239,0.899957,0.899957,0.002004
			 ,0.894161,0.002004,0.894161,0.076427,0.899957,0.076427,0.311721,0.909761,0.311721,0.903965,0.237298,0.903965,0.237298,0.909761
			 ,0.909761,0.433377,0.903965,0.433377,0.903965,0.507800,0.909761,0.507800,0.507800,0.909761,0.507800,0.903965,0.433377,0.903965
			 ,0.433377,0.909761,0.909761,0.198082,0.903965,0.198082,0.903965,0.272506,0.909761,0.272506,0.076427,0.919565,0.076427,0.913769
			 ,0.002004,0.913769,0.002004,0.919565,0.919565,0.511808,0.913769,0.511808,0.913769,0.586231,0.919565,0.586231,0.821525,0.929369
			 ,0.821525,0.923573,0.747102,0.923573,0.747102,0.929369,0.929369,0.080435,0.923573,0.080435,0.923573,0.154859,0.929369,0.154859
			 ,0.429369,0.929369,0.429369,0.923573,0.354945,0.923573,0.354945,0.929369,0.929369,0.511808,0.923573,0.511808,0.923573,0.586231
			 ,0.929369,0.586231,0.272506,0.929369,0.272506,0.923573,0.198082,0.923573,0.198082,0.929369,0.929369,0.825533,0.923573,0.825533
			 ,0.923573,0.899957,0.929369,0.899957,0.350937,0.939172,0.350937,0.933377,0.276514,0.933377,0.276514,0.939172,0.929369,0.276514
			 ,0.923573,0.276514,0.923573,0.350937,0.929369,0.350937,0.429369,0.939172,0.429369,0.933377,0.354945,0.933377,0.354945,0.939172
			 ,0.929369,0.198082,0.923573,0.198082,0.923573,0.272506,0.929369,0.272506,0.743094,0.939172,0.743094,0.933377,0.668671,0.933377
			 ,0.668671,0.939172,0.939172,0.511808,0.933377,0.511808,0.933377,0.586231,0.939172,0.586231,0.664663,0.939172,0.664663,0.933377
			 ,0.590239,0.933377,0.590239,0.939172,0.939172,0.668671,0.933377,0.668671,0.933377,0.743094,0.939172,0.743094,0.547016,0.948976
			 ,0.547016,0.943181,0.472592,0.943181,0.472592,0.948976,0.939172,0.002004,0.933377,0.002004,0.933377,0.076427,0.939172,0.076427
			 ,0.154859,0.948976,0.154859,0.943181,0.080435,0.943181,0.080435,0.948976,0.948976,0.198082,0.943181,0.198082,0.943181,0.272506
			 ,0.948976,0.272506,0.233290,0.948976,0.233290,0.943181,0.158867,0.943181,0.158867,0.948976,0.948976,0.825533,0.943181,0.825533
			 ,0.943181,0.899957,0.948976,0.899957,0.350937,0.948976,0.350937,0.943181,0.276514,0.943181,0.276514,0.948976,0.948976,0.511808
			 ,0.943181,0.511808,0.943181,0.586231,0.948976,0.586231,0.899957,0.948976,0.899957,0.943181,0.825533,0.943181,0.825533,0.948976
			 ,0.948976,0.747102,0.943181,0.747102,0.943181,0.821525,0.948976,0.821525,0.547016,0.958780,0.547016,0.952984,0.472592,0.952984
			 ,0.472592,0.958780,0.948976,0.668671,0.943181,0.668671,0.943181,0.743094,0.948976,0.743094,0.311721,0.958780,0.311721,0.952984
			 ,0.237298,0.952984,0.237298,0.958780,0.958780,0.511808,0.952984,0.511808,0.952984,0.586231,0.958780,0.586231,0.821525,0.958780
			 ,0.821525,0.952984,0.747102,0.952984,0.747102,0.958780,0.958780,0.080435,0.952984,0.080435,0.952984,0.154859,0.958780,0.154859
			 ,0.743094,0.958780,0.743094,0.952984,0.668671,0.952984,0.668671,0.958780,0.958780,0.433377,0.952984,0.433377,0.952984,0.507800
			 ,0.958780,0.507800,0.076427,0.958780,0.076427,0.952984,0.002004,0.952984,0.002004,0.958780,0.958780,0.354945,0.952984,0.354945
			 ,0.952984,0.429369,0.958780,0.429369,0.547016,0.968584,0.547016,0.962788,0.472592,0.962788,0.472592,0.968584,0.958780,0.276514
			 ,0.952984,0.276514,0.952984,0.350937,0.958780,0.350937,0.664663,0.968584,0.664663,0.962788,0.590239,0.962788,0.590239,0.968584
			 ,0.841133,0.315729,0.835337,0.315729,0.835337,0.390153,0.841133,0.390153,0.350937,0.850937,0.350937,0.845141,0.276514,0.845141
			 ,0.276514,0.850937,0.831329,0.394161,0.825533,0.394161,0.825533,0.468584,0.831329,0.468584,0.194074,0.850937,0.194074,0.845141
			 ,0.119651,0.845141,0.119651,0.850937,0.831329,0.119651,0.825533,0.119651,0.825533,0.194074,0.831329,0.194074,0.429369,0.850937
			 ,0.429369,0.845141,0.354945,0.845141,0.354945,0.850937,0.831329,0.002004,0.825533,0.002004,0.825533,0.076427,0.831329,0.076427
			 ,0.743094,0.850937,0.743094,0.845141,0.668671,0.845141,0.668671,0.850937,0.831329,0.511808,0.825533,0.511808,0.825533,0.586231
			 ,0.831329,0.586231,0.272506,0.850937,0.272506,0.845141,0.198082,0.845141,0.198082,0.850937,0.841133,0.590239,0.835337,0.590239
			 ,0.835337,0.664663,0.841133,0.664663,0.743094,0.860741,0.743094,0.854945,0.668671,0.854945,0.668671,0.860741,0.850937,0.315729
			 ,0.845141,0.315729,0.845141,0.390153,0.850937,0.390153,0.272506,0.860741,0.272506,0.854945,0.198082,0.854945,0.198082,0.860741
			 ,0.850937,0.668671,0.845141,0.668671,0.845141,0.743094,0.850937,0.743094,0.586231,0.860741,0.586231,0.854945,0.511808,0.854945
			 ,0.511808,0.860741,0.850937,0.590239,0.845141,0.590239,0.845141,0.664663,0.850937,0.664663,0.350937,0.860741,0.350937,0.854945
			 ,0.276514,0.854945,0.276514,0.860741,0.850937,0.747102,0.845141,0.747102,0.845141,0.821525,0.850937,0.821525,0.154859,0.860741
			 ,0.154859,0.854945,0.080435,0.854945,0.080435,0.860741,0.850937,0.511808,0.845141,0.511808,0.845141,0.586231,0.850937,0.586231
			 ,0.507800,0.870545,0.507800,0.864749,0.433377,0.864749,0.433377,0.870545,0.850937,0.002004,0.845141,0.002004,0.845141,0.076427
			 ,0.850937,0.076427,0.586231,0.870545,0.586231,0.864749,0.511808,0.864749,0.511808,0.870545,0.850937,0.433377,0.845141,0.433377
			 ,0.845141,0.507800,0.850937,0.507800,0.154859,0.870545,0.154859,0.864749,0.080435,0.864749,0.080435,0.870545,0.860741,0.668671
			 ,0.854945,0.668671,0.854945,0.743094,0.860741,0.743094,0.429369,0.870545,0.429369,0.864749,0.354945,0.864749,0.354945,0.870545
			 ,0.860741,0.198082,0.854945,0.198082,0.854945,0.272506,0.860741,0.272506,0.076427,0.870545,0.076427,0.864749,0.002004,0.864749
			 ,0.002004,0.870545,0.860741,0.511808,0.854945,0.511808,0.854945,0.586231,0.860741,0.586231,0.743094,0.870545,0.743094,0.864749
			 ,0.668671,0.864749,0.668671,0.870545,0.860741,0.433377,0.854945,0.433377,0.854945,0.507800,0.860741,0.507800,0.664663,0.870545
			 ,0.664663,0.864749,0.590239,0.864749,0.590239,0.870545,0.860741,0.315729,0.854945,0.315729,0.854945,0.390153,0.860741,0.390153
			 ,0.154859,0.880349,0.154859,0.874553,0.080435,0.874553,0.080435,0.880349,0.860741,0.002004,0.854945,0.002004,0.854945,0.076427
			 ,0.860741,0.076427,0.664663,0.880349,0.664663,0.874553,0.590239,0.874553,0.590239,0.880349,0.870545,0.276514,0.864749,0.276514
			 ,0.864749,0.350937,0.870545,0.350937,0.511808,0.880349,0.586231,0.880349,0.586231,0.874553,0.511808,0.874553
			UVIndex: 0,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,3183
		}
		LayerElementTexture: 1 {
			Version: 101
			Name: "lightMap"
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "IndexToDirect"
			BlendMode: "Translucent"
			TextureAlpha: 1
			TextureId: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
			 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
		}
		LayerElementMaterial: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "IndexToDirect"
			Materials: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
				,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
		}
		Layer: 0 {
			Version: 100
			LayerElement:  {
				Type: "LayerElementNormal"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementMaterial"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementSmoothing"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementTexture"
				TypedIndex: 0
			}
			LayerElement:  {
				Type: "LayerElementUV"
				TypedIndex: 0
			}
		}
		Layer: 1 {
			Version: 100
			LayerElement:  {
				Type: "LayerElementUV"
				TypedIndex: 1
			}
			LayerElement:  {
				Type: "LayerElementTexture"
				TypedIndex: 1
			}
		}
	}
	Material: "Material::None__ao", "" {
		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", "",0.0000,0.0000,0.0000
			Property: "AmbientFactor", "double", "",0.5000
			Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "DiffuseFactor", "double", "",1.0000
			Property: "Bump", "Vector3D", "",0,0,0
			Property: "TransparentColor", "ColorRGB", "",1,1,1
			Property: "TransparencyFactor", "double", "",0.0000
			Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "SpecularFactor", "double", "",0.2000
			Property: "ShininessExponent", "double", "",80.0
			Property: "ReflectionColor", "ColorRGB", "",0,0,0
			Property: "ReflectionFactor", "double", "",1
			Property: "Emissive", "ColorRGB", "",0,0,0
			Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0
			Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8
			Property: "Specular", "ColorRGB", "",0.8,0.8,0.8
			Property: "Shininess", "double", "",20.0
			Property: "Opacity", "double", "",1.0
			Property: "Reflectivity", "double", "",0
		}
	}
	Material: "Material::None__wood-1_jpg", "" {
		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", "",0.0000,0.0000,0.0000
			Property: "AmbientFactor", "double", "",0.5000
			Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "DiffuseFactor", "double", "",1.0000
			Property: "Bump", "Vector3D", "",0,0,0
			Property: "TransparentColor", "ColorRGB", "",1,1,1
			Property: "TransparencyFactor", "double", "",0.0000
			Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000
			Property: "SpecularFactor", "double", "",0.2000
			Property: "ShininessExponent", "double", "",80.0
			Property: "ReflectionColor", "ColorRGB", "",0,0,0
			Property: "ReflectionFactor", "double", "",1
			Property: "Emissive", "ColorRGB", "",0,0,0
			Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0
			Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8
			Property: "Specular", "ColorRGB", "",0.8,0.8,0.8
			Property: "Shininess", "double", "",20.0
			Property: "Opacity", "double", "",1.0
			Property: "Reflectivity", "double", "",0
		}
	}
	Video: "Video::ao", "Clip" {
		Type: "Clip"
		Properties60:  {
			Property: "FrameRate", "double", "",0
			Property: "LastFrame", "int", "",0
			Property: "Width", "int", "",0
			Property: "Height", "int", "",0
			Property: "Path", "charptr", "", "king-ao.jpg"
			Property: "StartFrame", "int", "",0
			Property: "StopFrame", "int", "",0
			Property: "PlaySpeed", "double", "",1
			Property: "Offset", "KTime", "",0
			Property: "InterlaceMode", "enum", "",0
			Property: "FreeRunning", "bool", "",0
			Property: "Loop", "bool", "",0
			Property: "AccessMode", "enum", "",0
		}
		UseMipMap: 0
		Filename: "king-ao.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\king-ao.jpg"
	}
	Video: "Video::wood-1_jpg", "Clip" {
		Type: "Clip"
		Properties60:  {
			Property: "FrameRate", "double", "",0
			Property: "LastFrame", "int", "",0
			Property: "Width", "int", "",0
			Property: "Height", "int", "",0
			Property: "Path", "charptr", "", "wood-1.jpg"
			Property: "StartFrame", "int", "",0
			Property: "StopFrame", "int", "",0
			Property: "PlaySpeed", "double", "",1
			Property: "Offset", "KTime", "",0
			Property: "InterlaceMode", "enum", "",0
			Property: "FreeRunning", "bool", "",0
			Property: "Loop", "bool", "",0
			Property: "AccessMode", "enum", "",0
		}
		UseMipMap: 0
		Filename: "wood-1.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\wood-1.jpg"
	}
	Texture: "Texture::ao", "TextureVideoClip" {
		Type: "TextureVideoClip"
		Version: 202
		TextureName: "Texture::ao"
		Properties60:  {
			Property: "Translation", "Vector", "A+",0,0,0
			Property: "Rotation", "Vector", "A+",0,0,0
			Property: "Scaling", "Vector", "A+",1,1,1
			Property: "Texture alpha", "Number", "A+",0
			Property: "TextureTypeUse", "enum", "",0
			Property: "CurrentTextureBlendMode", "enum", "",1
			Property: "UseMaterial", "bool", "",0
			Property: "UseMipMap", "bool", "",0
			Property: "CurrentMappingType", "enum", "",0
			Property: "UVSwap", "bool", "",0
			Property: "WrapModeU", "enum", "",0
			Property: "WrapModeV", "enum", "",0
			Property: "TextureRotationPivot", "Vector3D", "",0,0,0
			Property: "TextureScalingPivot", "Vector3D", "",0,0,0
			Property: "VideoProperty", "object", ""
		}
		Media: "Video::ao"
		FileName: "king-ao.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\king-ao.jpg"
		ModelUVTranslation: 0,0
		ModelUVScaling: 1,1
		Texture_Alpha_Source: "None"
		Cropping: 0,0,0,0
	}
	Texture: "Texture::wood-1_jpg", "TextureVideoClip" {
		Type: "TextureVideoClip"
		Version: 202
		TextureName: "Texture::wood-1_jpg"
		Properties60:  {
			Property: "Translation", "Vector", "A+",0,0,0
			Property: "Rotation", "Vector", "A+",0,0,0
			Property: "Scaling", "Vector", "A+",1,1,1
			Property: "Texture alpha", "Number", "A+",1
			Property: "TextureTypeUse", "enum", "",0
			Property: "CurrentTextureBlendMode", "enum", "",1
			Property: "UseMaterial", "bool", "",0
			Property: "UseMipMap", "bool", "",0
			Property: "CurrentMappingType", "enum", "",0
			Property: "UVSwap", "bool", "",0
			Property: "WrapModeU", "enum", "",0
			Property: "WrapModeV", "enum", "",0
			Property: "TextureRotationPivot", "Vector3D", "",0,0,0
			Property: "TextureScalingPivot", "Vector3D", "",0,0,0
			Property: "VideoProperty", "object", ""
		}
		Media: "Video::wood-1_jpg"
		FileName: "wood-1.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\wood-1.jpg"
		ModelUVTranslation: 0,0
		ModelUVScaling: 1,1
		Texture_Alpha_Source: "None"
		Cropping: 0,0,0,0
	}
	Pose: "Pose::BIND_POSES", "BindPose" {
		Type: "BindPose"
		Version: 100
		Properties60:  {
		}
		NbPoseNodes: 1
		PoseNode:  {
			Node: "Model::Cube_002"
			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.000000000000000,0.000000000000000,0.000000000000000,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::Cube_002", "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::None__ao", "" {
	}
	Material: "Material::None__wood-1_jpg", "" {
	}
	Texture: "Texture::ao", "TextureVideoClip" {
	}
	Texture: "Texture::wood-1_jpg", "TextureVideoClip" {
	}
	Video: "Video::ao", "Clip" {
	}
	Video: "Video::wood-1_jpg", "Clip" {
	}
}

; Object connections
;------------------------------------------------------------------

Connections:  {
	Connect: "OO", "Model::Cube_002", "Model::Scene"
	Connect: "OO", "Material::None__ao", "Model::Cube_002"
	Connect: "OO", "Material::None__wood-1_jpg", "Model::Cube_002"
	Connect: "OO", "Texture::ao", "Model::Cube_002"
	Connect: "OO", "Texture::wood-1_jpg", "Model::Cube_002"
	Connect: "OO", "Video::ao", "Texture::ao"
	Connect: "OO", "Video::wood-1_jpg", "Texture::wood-1_jpg"
}
;Takes and animation section
;----------------------------------------------------

Takes:  {
	Current: ""
}
;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
	}
}