Socialify

Folder ..

Viewing rook.fbx
1682 lines (1671 loc) • 180.3 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
; 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: 05
		Minute: 06
		Second: 49
		Millisecond: 0
	}
	Creator: "FBX SDK/FBX Plugins build 20070228"
	OtherFlags:  {
		FlagPLE: 0
	}
}
CreationTime: "2013-06-05 05:06:49: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::Cylinder", "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.586556,0.586556,0.169212,0.829515,0.000000,0.169212,0.586556,-0.586556,0.169212,-0.586556,-0.586556,0.169212,-0.515548,-0.515548,0.179572,-0.586556,0.586556,0.169212,-0.829515,-0.000000,0.169212
		,0.511651,-0.511651,0.334742,-0.515548,0.515548,0.179572,0.515548,0.515548,0.179572,0.729095,0.000000,0.179572,0.000000,-0.729095,0.179572,-0.000271,-0.667661,0.344277,-0.723584,-0.000000,0.334742
		,0.723584,0.000000,0.334742,-0.511651,-0.511651,0.334742,0.511651,0.511651,0.334742,0.000000,-0.723584,0.334742,-0.511651,0.511651,0.334742,-0.000000,0.723584,0.334742,0.472309,-0.471913,0.344277
		,-0.668600,0.000667,0.344277,-0.472851,-0.471913,0.344277,-0.634624,0.005338,0.369669,-0.464306,0.467080,0.366042,-0.001897,0.658616,0.366042,0.460512,-0.457738,0.366042,-0.655841,0.004671,0.366042
		,-0.429122,0.432292,1.220612,0.630288,0.005339,0.369669,-0.449381,-0.441876,0.369669,0.445046,0.452552,0.369669,-0.002168,-0.627118,0.369669,-0.449382,0.452552,0.369669,-0.002168,0.637794,0.369669
		,0.445046,-0.441875,0.369669,0.441020,0.448526,1.227416,-0.002168,0.609143,1.220612,0.424787,-0.421616,1.220612,-0.605972,0.005338,1.220612,0.601637,0.005339,1.220612,-0.429122,-0.421616,1.220612
		,0.424787,0.432293,1.220612,-0.002168,-0.598466,1.220612,0.647553,0.005339,1.277185,-0.002168,-0.621424,1.227416,-0.445356,0.448526,1.227416,-0.002168,0.632101,1.227416,0.441020,-0.437849,1.227416
		,-0.628930,0.005338,1.227416,0.624595,0.005339,1.227416,-0.445355,-0.437849,1.227416,-0.461589,-0.454083,1.277185,0.457254,0.464760,1.277185,-0.002168,-0.644382,1.277185,-0.461589,0.464760,1.277185
		,-0.002168,0.655059,1.277185,0.457254,-0.454083,1.277185,-0.651888,0.005338,1.277185,0.510803,0.518309,1.505561,0.504109,-0.500938,1.282222,0.713816,0.005339,1.282222,-0.508444,-0.500938,1.282222
		,-0.508444,0.511615,1.282222,-0.002167,-0.720111,1.505561,-0.515138,0.518308,1.505561,-0.002168,0.730788,1.505561,0.723282,0.005339,1.505561,-0.515138,-0.507632,1.505561,-0.507414,0.005338,1.344738
		,0.355096,-0.351925,1.344738,-0.359431,0.362601,1.344738,-0.002168,-0.499908,1.344738,-0.002168,0.510585,1.344738,0.355096,0.362602,1.344738,-0.359431,-0.351925,1.344738,0.510803,-0.507632,1.505561
		,0.000000,-0.823548,0.001727,-0.000000,0.829515,0.169212,-0.727617,0.005338,1.287377,0.510803,0.518309,1.287377,-0.515138,0.518308,1.287377,0.582336,0.582337,0.001727,-0.823548,-0.000000,0.001727
		,-0.582336,-0.582336,0.001727,0.822118,0.000000,0.179572,-0.723584,-0.000000,0.189222,-0.509987,0.509987,0.340650,-0.729095,-0.000000,0.179572,0.581325,-0.581325,0.179572,0.000000,-0.822118,0.179572
		,0.581325,0.581325,0.179572,-0.000000,0.822118,0.179572,-0.581325,-0.581325,0.179572,-0.822118,-0.000000,0.179572,-0.581325,0.581325,0.179572,0.509987,0.509987,0.340650,-0.000000,0.721230,0.340650
		,-0.721230,-0.000000,0.340650,0.511651,0.511651,0.189222,-0.461589,0.464760,1.250642,0.000000,-0.723584,0.189222,0.457254,-0.454083,1.250642,0.601637,0.005339,0.376549,-0.002168,0.655059,1.250642
		,0.424786,0.432293,0.376549,-0.429122,-0.421616,0.376549,-0.651888,0.005338,1.250642,0.647553,0.005339,1.250642,0.355096,0.362602,1.505562,-0.507414,0.005338,1.505562,-0.002168,0.510585,1.505562
		,0.503079,0.005339,1.344738,-0.000000,0.827666,0.176982,-0.318437,0.768775,0.169212,0.585248,0.585248,0.176982,0.763245,0.316147,0.001727,0.827666,0.000000,0.176982,0.763245,-0.316146,0.001727
		,0.585248,-0.585248,0.176982,0.000000,-0.827666,0.176982,-0.316147,-0.763245,0.001727,-0.585248,-0.585248,0.176982,-0.763245,-0.316147,0.001727,-0.827666,-0.000000,0.176982,-0.763245,0.316146,0.001727
		,-0.585248,0.585248,0.176982,-0.000000,0.724962,0.181985,0.512625,0.512625,0.181985,0.724962,0.000000,0.181985,0.512625,-0.512625,0.181985,0.000000,-0.724962,0.181985,-0.512625,-0.512625,0.181985
		,-0.724962,-0.000000,0.181985,-0.512625,0.512625,0.181985,-0.761920,-0.315598,0.179572,-0.761920,0.315597,0.179572,-0.315598,0.761920,0.179572,0.761920,0.315598,0.179572,0.761920,-0.315597,0.179572
		,0.315598,-0.761920,0.179572,-0.000000,0.722996,0.339173,0.511235,0.511235,0.339173,0.722996,0.000000,0.339173,0.511235,-0.511235,0.339173,0.000000,-0.722996,0.339173,-0.511235,-0.511235,0.339173
		,-0.722996,-0.000000,0.339173,-0.511235,0.511235,0.339173,0.670601,-0.277772,0.334742,-0.670601,-0.277772,0.334742,-0.670601,0.277772,0.189222,0.670601,0.277772,0.334742,-0.277772,-0.670601,0.334742
		,0.277772,0.670601,0.334742,-0.000271,0.668996,0.344277,0.472309,0.473247,0.344277,0.668058,0.000667,0.344277,-0.472851,0.473247,0.344277,-0.276869,0.668420,0.340650,0.276868,0.668420,0.340650
		,0.619121,-0.255893,0.344277,-0.619662,-0.255893,0.344277,0.619121,0.257228,0.344277,0.460512,0.467080,0.366042,0.652048,0.004671,0.366042,-0.001897,-0.649274,0.366042,-0.464305,-0.457738,0.366042
		,-0.252935,-0.601390,0.366042,0.249142,0.610732,0.366042,0.604164,0.255710,0.366042,-0.607957,0.255710,0.366042,-0.252935,0.610732,0.366042,-0.002168,0.616306,0.371389,0.429851,0.437358,0.371389
		,0.608800,0.005339,0.371389,0.429851,-0.426681,0.371389,-0.002168,-0.605629,0.371389,-0.434187,-0.426681,0.371389,-0.613135,0.005338,0.371389,-0.434187,0.437357,0.371389,-0.588313,-0.237451,0.369669
		,-0.588313,0.248128,0.369669,0.583978,0.248128,0.369669,0.583978,-0.237451,0.369669,-0.244957,-0.580807,0.369669,0.240622,0.591484,0.369669,0.240622,-0.580807,0.369669,-0.244957,0.591484,0.369669
		,-0.002168,0.614882,1.225715,0.428845,0.436351,1.225715,0.607376,0.005339,1.225715,0.428845,-0.425674,1.225715,-0.002168,-0.604205,1.225715,-0.433180,-0.425674,1.225715,-0.611711,0.005338,1.225715
		,-0.433180,0.436351,1.225715,-0.561759,0.237129,1.220612,-0.233958,0.564930,0.376549,0.557424,-0.226452,1.220612,-0.561759,-0.226452,1.220612,0.557424,0.237129,1.220612,-0.233958,-0.554253,1.220612
		,-0.002168,0.649319,1.233223,0.453196,0.460702,1.233223,0.641813,0.005339,1.233223,0.453196,-0.450025,1.233223,-0.002168,-0.638642,1.233223,-0.457531,-0.450025,1.233223,-0.646148,0.005338,1.233223
		,-0.457531,0.460701,1.233223,0.238436,0.586207,1.227416,0.578701,0.245942,1.227416,0.238436,-0.575530,1.227416,-0.242771,-0.575530,1.227416,-0.583036,0.245942,1.227416,-0.242771,0.586207,1.227416
		,0.578701,-0.235265,1.227416,-0.583036,-0.235265,1.227416,-0.002168,0.664525,1.279674,0.463948,0.471454,1.279674,0.657019,0.005339,1.279674,0.463948,-0.460777,1.279674,-0.002168,-0.653848,1.279674
		,-0.468283,-0.460777,1.279674,-0.661354,0.005338,1.279674,-0.468283,0.471453,1.279674,0.599978,0.254755,1.277185,-0.251584,-0.596807,1.277185,-0.604313,-0.244079,1.250642,0.247249,0.607484,1.277185
		,0.247249,-0.596807,1.277185,-0.604313,0.254755,1.277185,-0.002168,0.721322,1.282222,0.504109,0.511615,1.282222,-0.002167,-0.710645,1.282222,-0.718151,0.005338,1.282222,-0.277022,0.668895,1.282222
		,0.272686,0.668895,1.282222,0.272687,-0.658218,1.282222,-0.665724,-0.269516,1.282222,0.661389,0.280193,1.282222,-0.277022,-0.658218,1.282222,0.276320,0.677668,1.505561,0.670162,0.283827,1.287377
		,-0.280655,-0.666991,1.287377,-0.674497,0.283826,1.505561,-0.280656,0.677668,1.287377,-0.470418,0.199294,1.344738,0.191788,-0.462912,1.344738,-0.196123,0.473589,1.344738,0.191788,0.473589,1.344738
		,0.466083,0.199294,1.344738,0.466083,-0.188617,1.505561,-0.196123,-0.462912,1.344738,0.276320,0.677668,1.287377,0.276320,-0.666991,1.287377,-0.674497,0.283826,1.287377,-0.280656,0.677668,1.505561
		,0.670162,-0.273149,1.287377,-0.674497,-0.273150,1.287377,-0.727617,0.005338,1.505561,-0.675708,0.279887,0.179572,0.675708,0.279888,0.179572,0.318437,0.768776,0.169212,0.768775,0.318437,0.169212
		,0.768776,-0.318437,0.169212,-0.316147,0.763245,0.001727,0.515548,-0.515548,0.179572,-0.280655,-0.666991,1.505561,0.670162,0.283827,1.505561,0.670162,-0.273149,1.505561,-0.277772,0.670601,0.334742
		,-0.277772,-0.670601,0.189222,-0.002168,0.730788,1.287377,-0.002167,-0.720111,1.287377,0.000000,-0.829515,0.169212,-0.605972,0.005338,0.376549,0.424787,-0.421616,0.376549,-0.000000,0.823548,0.001727
		,-0.582337,0.582336,0.001727,0.582336,-0.582336,0.001727,-0.515138,-0.507632,1.287377,0.510803,-0.507632,1.287377,0.723282,0.005339,1.287377,0.823548,0.000000,0.001727,0.318437,-0.768775,0.169212
		,-0.768775,-0.318437,0.169212,-0.315598,-0.761920,0.179572,-0.675708,-0.279888,0.179572,-0.279888,0.675708,0.179572,-0.509987,-0.509987,0.340650,0.721230,0.000000,0.340650,0.315597,0.761920,0.179572
		,-0.000000,0.729095,0.179572,-0.670601,0.277772,0.334742,0.277772,-0.670601,0.334742,0.668420,0.276869,0.340650,-0.670601,-0.277772,0.189222,-0.000000,0.723584,0.189222,-0.511651,0.511651,0.189222
		,0.509987,-0.509987,0.340650,0.000000,-0.721230,0.340650,0.466083,-0.188617,1.344738,-0.470418,-0.188617,1.344738,-0.256831,-0.618724,0.344277,0.276869,-0.668420,0.340650,-0.251585,0.607484,1.277185
		,0.247249,-0.596807,1.250642,0.247249,0.607484,1.250642,-0.604313,0.254755,1.250642,0.229623,0.564930,1.220612,-0.233958,0.564930,1.220612,-0.511651,-0.511651,0.189222,0.511651,-0.511651,0.189222
		,0.723584,0.000000,0.189222,0.229623,-0.554253,1.220612,0.557424,0.237129,0.376549,-0.002168,-0.598466,0.376549,-0.002168,0.609143,0.376549,-0.429122,0.432292,0.376549,-0.002168,-0.499908,1.505562
		,0.355096,-0.351925,1.505562,-0.359431,0.362601,1.505562,0.191788,-0.462912,1.505562,-0.233958,-0.554253,0.376549,-0.604313,-0.244079,1.277185,0.599978,-0.244078,1.277185,0.599978,0.254755,1.250642
		,-0.251584,-0.596807,1.250642,-0.002168,-0.644382,1.250642,-0.461589,-0.454083,1.250642,0.457254,0.464760,1.250642,0.191788,0.473589,1.505562,-0.470418,0.199294,1.505562,-0.359431,-0.351925,1.505562
		,0.503079,0.005339,1.505561,-0.317727,0.767062,0.176982,0.317727,0.767062,0.176982,0.767062,0.317727,0.176982,0.767062,-0.317727,0.176982,0.317727,-0.767062,0.176982,-0.317727,-0.767062,0.176982
		,-0.767062,-0.317727,0.176982,-0.767062,0.317727,0.176982,-0.278301,0.671878,0.181985,0.278301,0.671878,0.181985,0.671878,0.278301,0.181985,0.671878,-0.278301,0.181985,0.278301,-0.671878,0.181985
		,-0.278301,-0.671878,0.181985,-0.671878,-0.278301,0.181985,-0.671878,0.278301,0.181985,-0.277546,0.670055,0.339173,0.277546,0.670056,0.339173,0.670055,0.277546,0.339173,0.670056,-0.277546,0.339173
		,0.277546,-0.670055,0.339173,-0.277546,-0.670056,0.339173,-0.670055,-0.277546,0.339173,-0.670056,0.277546,0.339173,-0.256831,0.620059,0.344277,0.256289,0.620059,0.344277,0.256289,-0.618724,0.344277
		,-0.619663,0.257228,0.344277,0.604164,-0.246367,0.366042,0.249142,-0.601390,0.366042,-0.607957,-0.246368,0.366042,-0.236708,0.571568,0.371389,0.232373,0.571569,0.371389,0.564063,0.239879,0.371389
		,0.564063,-0.229202,0.371389,0.232373,-0.560892,0.371389,-0.236708,-0.560892,0.371389,-0.568398,-0.229202,0.371389,-0.568398,0.239878,0.371389,-0.236161,0.570249,1.225715,0.231826,0.570249,1.225715
		,0.562743,0.239332,1.225715,0.562743,-0.228655,1.225715,0.231826,-0.559573,1.225715,-0.236161,-0.559573,1.225715,-0.567078,-0.228655,1.225715,-0.567079,0.239332,1.225715,-0.249381,0.602165,1.233223
		,0.245046,0.602165,1.233223,0.594659,0.252552,1.233223,0.594659,-0.241875,1.233223,0.245046,-0.591488,1.233223,-0.249381,-0.591488,1.233223,-0.598994,-0.241875,1.233223,-0.598994,0.252552,1.233223
		,-0.255218,0.616257,1.279674,0.250883,0.616257,1.279674,0.608751,0.258389,1.279674,0.608751,-0.247712,1.279674,0.250883,-0.605580,1.279674,-0.255218,-0.605580,1.279674,-0.613086,-0.247712,1.279674
		,-0.613086,0.258389,1.279674,0.661389,-0.269516,1.282222,-0.665724,0.280192,1.282222,-0.002168,0.005338,1.344738,0.276320,-0.666991,1.505561,-0.674497,-0.273150,1.505561,0.599978,-0.244078,1.250642
		,-0.196123,0.473589,1.505562,0.316147,-0.763245,0.001727,0.316146,0.763245,0.001727,0.557424,-0.226452,0.376549,0.229623,0.564930,0.376549,0.279888,-0.675708,0.179572,-0.279887,-0.675708,0.179572
		,0.279887,0.675708,0.179572,-0.561759,0.237129,0.376549,0.675708,-0.279887,0.179572,-0.768776,0.318437,0.169212,-0.318437,-0.768776,0.169212,0.670601,-0.277772,0.189222,0.670601,0.277772,0.189222
		,-0.561759,-0.226452,0.376549,0.466083,0.199294,1.505561,0.277772,-0.670601,0.189222,-0.277772,0.670601,0.189222,0.277772,0.670601,0.189222,0.668420,-0.276868,0.340650,-0.668420,-0.276869,0.340650
		,-0.668420,0.276868,0.340650,-0.276868,-0.668420,0.340650,-0.251585,0.607484,1.250642,-0.470418,-0.188617,1.505562,-0.196123,-0.462912,1.505562,0.229623,-0.554253,0.376549,0.000000,0.000000,0.001727
		,-0.318437,-0.768776,0.006235,-0.768776,0.318437,0.006235,-0.000000,0.829515,0.006235,0.318437,-0.768775,0.006235,0.829515,0.000000,0.006235,-0.586556,0.586556,0.006235,0.768776,-0.318437,0.006235
		,0.586556,-0.586556,0.006235,-0.768775,-0.318437,0.006235,-0.829515,-0.000000,0.006235,0.000000,-0.829515,0.006235,0.318437,0.768776,0.006235,0.768775,0.318437,0.006235,-0.318437,0.768775,0.006235
		,-0.586556,-0.586556,0.006235,0.586556,0.586556,0.006235,-0.002167,-0.720111,1.674650,-0.002168,0.730788,1.674650,0.723282,0.005339,1.674650,-0.507414,0.005338,1.674650,-0.002168,0.510585,1.674650
		,0.276320,0.677668,1.674650,-0.674497,0.283826,1.674650,0.466083,-0.188617,1.674650,-0.280656,0.677668,1.674650,-0.727617,0.005338,1.674650,-0.280655,-0.666991,1.674650,0.670162,0.283827,1.674650
		,0.670162,-0.273149,1.674650,-0.002168,-0.499908,1.674650,0.191788,-0.462912,1.674650,0.191788,0.473589,1.674650,-0.470418,0.199294,1.674650,0.503079,0.005339,1.674650,0.276320,-0.666991,1.674650
		,-0.674497,-0.273150,1.674650,-0.196123,0.473589,1.674650,0.466083,0.199294,1.674650,-0.470418,-0.188617,1.674650,-0.196123,-0.462912,1.674650,-0.282993,0.673129,1.507945,-0.512812,0.515983,1.507945
		,-0.669958,0.286163,1.507945,-0.669958,-0.275487,1.507945,-0.512812,-0.505306,1.507945,-0.282993,-0.662452,1.507945,0.278658,-0.662452,1.507945,0.508477,-0.505306,1.507945,0.665623,-0.275487,1.507945
		,0.665623,0.286164,1.507945,0.508477,0.515983,1.507945,0.278658,0.673129,1.507945,-0.282993,0.673129,1.677033,-0.669958,0.286163,1.677033,-0.724328,0.005338,1.677033,-0.669958,-0.275487,1.677033
		,-0.282993,-0.662452,1.677033,-0.002167,-0.716822,1.677033,0.278658,-0.662452,1.677033,0.665623,-0.275487,1.677033,0.719993,0.005339,1.677033,0.665623,0.286164,1.677033,0.278658,0.673129,1.677033
		,-0.002168,0.727499,1.677033,0.196604,-0.464357,1.507945,-0.200939,-0.464356,1.507945,-0.361670,-0.354164,1.507945,-0.471862,-0.193433,1.507945,0.196604,-0.464357,1.677034,-0.002168,-0.503075,1.677034
		,-0.200939,-0.464356,1.677034,-0.471862,-0.193433,1.677034,0.196604,0.475033,1.677034,0.467527,0.204110,1.677033,0.506246,0.005339,1.677033,0.467527,-0.193433,1.677033,0.357335,0.364841,1.507945
		,0.467527,0.204110,1.507945,0.467527,-0.193433,1.507945,0.357335,-0.354164,1.507945,-0.510581,0.005338,1.677034,-0.471863,0.204110,1.677034,-0.200939,0.475033,1.677034,0.196604,0.475033,1.507945
		,-0.471863,0.204110,1.507945,-0.361670,0.364841,1.507945,-0.200939,0.475033,1.507945,-0.002168,0.513752,1.677034,-0.507414,0.005338,1.344738,-0.470418,-0.188617,1.344738,-0.470418,0.199294,1.344738
		,0.355096,-0.351925,1.344738,0.466083,-0.188617,1.344738,0.191788,-0.462912,1.344738,-0.359431,0.362601,1.344738,-0.196123,0.473589,1.344738,-0.002168,-0.499908,1.344738,-0.196123,-0.462912,1.344738
		,-0.002168,0.510585,1.344738,0.191788,0.473589,1.344738,0.355096,0.362602,1.344738,0.466083,0.199294,1.344738,-0.359431,-0.351925,1.344738,0.503079,0.005339,1.344738,0.665623,0.286164,1.507945
		,0.670162,0.283827,1.505561,0.665623,0.286164,1.677033,0.670162,0.283827,1.674650,0.466083,0.199294,1.674650,0.466083,0.199294,1.505561,0.467527,0.204110,1.507945,0.467527,0.204110,1.677033
		,0.278658,0.673129,1.507945,0.276320,0.677668,1.505561,0.278658,0.673129,1.677033,0.276320,0.677668,1.674650,0.191788,0.473589,1.505562,0.191788,0.473589,1.674650,0.196604,0.475033,1.507945
		,0.196604,0.475033,1.677034,-0.282993,0.673129,1.507945,-0.280656,0.677668,1.505561,-0.282993,0.673129,1.677033,-0.280656,0.677668,1.674650,-0.196123,0.473589,1.674650,-0.196123,0.473589,1.505562
		,-0.200939,0.475033,1.507945,-0.200939,0.475033,1.677034,-0.669958,0.286163,1.507945,-0.674497,0.283826,1.505561,-0.669958,0.286163,1.677033,-0.674497,0.283826,1.674650,-0.470418,0.199294,1.674650
		,-0.470418,0.199294,1.505562,-0.471863,0.204110,1.507945,-0.471863,0.204110,1.677034,-0.669958,-0.275487,1.507945,-0.674497,-0.273150,1.505561,-0.669958,-0.275487,1.677033,-0.674497,-0.273150,1.674650
		,-0.470418,-0.188617,1.505562,-0.470418,-0.188617,1.674650,-0.471862,-0.193433,1.507945,-0.471862,-0.193433,1.677034,-0.282993,-0.662452,1.507945,-0.280655,-0.666991,1.505561,-0.282993,-0.662452,1.677033
		,-0.280655,-0.666991,1.674650,-0.196123,-0.462912,1.505562,-0.196123,-0.462912,1.674650,-0.200939,-0.464356,1.507945,-0.200939,-0.464356,1.677034,0.278658,-0.662452,1.507945,0.276320,-0.666991,1.505561
		,0.276320,-0.666991,1.674650,0.191788,-0.462912,1.505562,0.191788,-0.462912,1.674650,0.278658,-0.662452,1.677033,0.196604,-0.464357,1.507945,0.196604,-0.464357,1.677034,0.466083,-0.188617,1.505561
		,0.466083,-0.188617,1.674650,0.665623,-0.275487,1.507945,0.670162,-0.273149,1.505561,0.665623,-0.275487,1.677033,0.670162,-0.273149,1.674650,0.467527,-0.193433,1.507945,0.467527,-0.193433,1.677033
		,0.355096,0.362602,1.505562,0.191788,0.473589,1.505562,-0.359431,0.362601,1.505562,-0.196123,0.473589,1.505562,-0.359431,-0.351925,1.505562,-0.470418,-0.188617,1.505562,0.466083,0.199294,1.505561
		,-0.196123,-0.462912,1.505562,0.466083,-0.188617,1.505561,0.355096,-0.351925,1.505562,0.191788,-0.462912,1.505562,-0.470418,0.199294,1.505562,-0.002168,0.510585,1.674650,0.191788,0.473589,1.674650
		,-0.507414,0.005338,1.674650,-0.470418,0.199294,1.674650,-0.002168,-0.499908,1.674650,-0.196123,-0.462912,1.674650,0.191788,-0.462912,1.674650,0.503079,0.005339,1.674650,0.466083,0.199294,1.674650
		,-0.196123,0.473589,1.674650,-0.470418,-0.188617,1.674650,0.466083,-0.188617,1.674650,-0.515138,0.518308,1.505561,-0.674497,0.283826,1.505561,-0.280656,0.677668,1.505561,-0.002168,0.730788,1.674650
		,-0.280656,0.677668,1.674650,0.276320,0.677668,1.674650,0.723282,0.005339,1.674650,0.670162,0.283827,1.674650,-0.727617,0.005338,1.674650,-0.674497,0.283826,1.674650,0.670162,-0.273149,1.674650
		,-0.674497,-0.273150,1.674650,-0.002167,-0.720111,1.674650,-0.280655,-0.666991,1.674650,0.276320,-0.666991,1.674650,-0.512812,-0.505306,1.507945,-0.669958,-0.275487,1.507945,-0.282993,-0.662452,1.507945
		,0.508477,-0.505306,1.507945,0.278658,-0.662452,1.507945,0.665623,-0.275487,1.507945,0.508477,0.515983,1.507945,0.665623,0.286164,1.507945,0.278658,0.673129,1.507945,-0.000271,-0.667661,0.344277
		,-0.256831,-0.618724,0.344277,0.472309,-0.471913,0.344277,0.619121,-0.255893,0.344277,-0.668600,0.000667,0.344277,-0.619662,-0.255893,0.344277,-0.472851,-0.471913,0.344277,0.668058,0.000667,0.344277
		,0.619121,0.257228,0.344277,-0.619663,0.257228,0.344277,0.472309,0.473247,0.344277,0.256289,-0.618724,0.344277,0.256289,0.620059,0.344277,-0.000271,0.668996,0.344277,-0.256831,0.620059,0.344277
		,-0.472851,0.473247,0.344277
		PolygonVertexIndex: 1,117,340,-267,441,281,118,-441,2,266,340,-120,2,119,341,-287,0,115,339,-266,3,122,343,-288,441,437,407,-282,4,132,351,-290,5,126,337,-115,276,120,342,-418,6,287,343,-125,7,296,422,-315,7,314,418,-150
		,7,149,356,-145,7,144,357,-297,8,134,345,-291,444,434,121,-78,12,305,428,-303,13,150,359,-148,13,147,360,-296,14,149,418,-316,14,315,419,-153,14,152,355,-144,14,143,356,-150,15,153,358,-147,15,146,359,-151
		,16,154,354,-143,16,142,355,-153,17,296,357,-146,17,145,358,-154,18,272,423,-301,18,295,360,-149,18,148,353,-273,19,154,424,-300,19,299,423,-273,19,272,353,-142,19,141,354,-155,292,143,355,-298,291,426,359,-147
		,301,144,356,-426,302,145,357,-307,21,98,426,-163,20,301,425,-162,663,97,159,-362,156,96,160,-363,12,302,306,-662,98,147,359,-427,302,428,358,-146,22,162,426,-292,22,291,428,-306,292,425,356,-144,156,163,297,-97
		,665,87,427,-365,21,364,427,-99,157,292,297,-164,26,652,653,-366,23,181,374,-180,23,179,375,-183,164,170,658,-661,24,172,664,-159,24,158,659,-172,166,168,651,-651,25,169,662,-156,25,155,664,-173,166,650,363,-367
		,157,161,425,-293,663,362,160,-98,167,367,655,-657,28,197,383,-197,28,196,376,-313,29,184,365,-166,167,656,651,-169,29,183,370,-176,29,175,371,-185,30,181,367,-168,30,185,373,-179,30,178,374,-182,31,186,369,-175
		,31,174,370,-184,32,166,366,-188,32,187,372,-178,32,177,373,-186,27,654,655,-368,26,366,363,-653,33,182,375,-181,33,180,368,-189,27,171,659,-655,165,657,658,-171,34,188,368,-174,34,173,369,-187,35,184,371,-177
		,35,176,372,-188,36,212,378,-191,36,190,377,-212,36,211,385,-205,36,204,386,-213,37,312,376,-190,37,189,377,-312,38,316,432,-279,38,199,379,-193,38,192,380,-317,39,197,414,-278,39,200,382,-196,39,195,383,-198
		,40,201,378,-192,40,191,379,-200,28,312,198,-321,41,202,381,-195,41,194,382,-201,278,432,372,-177,105,174,369,-411,42,311,377,-191,42,190,378,-202,37,319,198,-313,106,178,373,-326,43,316,380,-194,43,193,381,-203
		,44,227,394,-222,44,221,395,-328,45,214,381,-194,45,193,380,-214,45,213,388,-208,45,207,389,-215,46,216,376,-197,46,196,383,-216,46,215,391,-211,46,210,384,-217,47,211,377,-190,47,189,376,-217,47,216,384,-204
		,47,203,385,-212,48,213,380,-193,48,192,379,-218,48,217,387,-207,48,206,388,-214,49,215,383,-196,49,195,382,-219,49,218,390,-210,49,209,391,-216,50,217,379,-192,50,191,378,-213,50,212,386,-206,50,205,387,-218
		,51,218,382,-195,51,194,381,-215,51,214,389,-209,51,208,390,-219,52,228,397,-225,52,224,398,-327,53,230,393,-221,53,220,394,-228,54,231,396,-224,54,223,397,-229,55,232,399,-227,55,226,392,-308,33,188,172,-25
		,56,307,392,-220,56,219,393,-231,665,361,159,-88,35,26,365,-185,57,327,395,-223,57,222,396,-232,291,146,358,-429,31,164,169,-187,58,326,398,-226,58,225,399,-233,111,333,465,-455,60,239,396,-223,56,230,309,-105
		,61,221,394,-242,332,204,385,-310,100,429,384,-211,62,240,398,-225,62,224,397,-243,57,102,405,-328,56,104,429,-308,108,405,387,-206,54,228,329,-331,330,329,389,-208,55,307,429,-101,58,232,310,-108,57,231,308,-103
		,63,237,392,-227,44,108,328,-228,55,100,310,-233,519,604,605,-521,518,613,604,-520,67,284,244,-271,65,81,257,-247,246,261,459,-457,66,274,247,-259,80,234,238,-256,283,60,400,-260,65,258,247,-82,235,242,397,-224
		,74,109,333,-534,112,303,253,-337,71,250,406,-324,110,334,466,-454,70,322,253,-304,72,254,431,-322,112,336,421,-536,402,304,-76,402,251,-74,530,249,-403,402,249,-526,69,304,-403,402,526,-538
		,534,251,-403,402,531,-531,528,248,-403,402,248,-70,537,252,-403,75,531,-403,402,252,-535,73,529,-403,402,529,-529,525,526,-403,71,323,334,-525,70,527,324,-323,536,335,431,-255
		,532,111,406,-251,72,321,324,-528,500,606,607,-502,499,609,606,-501,532,533,333,-112,74,535,421,-110,261,246,257,-80,476,563,565,-488,68,282,245,-580,68,404,260,-283,406,111,454,-471,59,80,255,-244,513,611,612,-499
		,66,243,255,-275,59,270,244,-81,67,271,259,-285,276,286,341,-121,436,279,267,-448,436,445,408,-280,79,257,401,-237,332,328,386,-205,6,124,344,-417,54,330,308,-232,102,206,387,-406,52,331,329,-229,449,82,408,-446
		,448,84,121,-435,0,264,338,-116,439,280,125,-436,443,83,123,-443,78,113,338,-265,444,77,407,-438,3,417,342,-123,439,447,267,-281,1,265,339,-118,85,139,340,-118,85,117,339,-139,11,411,349,-132,268,130,349,-412
		,87,159,353,-149,85,138,263,-11,89,140,341,-120,89,119,340,-140,92,137,290,-295,89,268,411,-141,89,139,415,-269,11,131,350,-413,268,415,348,-131,94,88,262,-137,90,288,342,-121,90,120,341,-141,92,294,413,-294
		,91,138,339,-116,91,115,338,-294,91,293,413,-10,92,293,338,-114,92,113,337,-138,9,413,346,-129,93,135,343,-123,93,122,342,-289,88,133,352,-263,95,8,290,-138,23,182,171,-28,34,186,169,-26,23,27,367,-182
		,94,136,344,-125,94,124,343,-136,93,288,412,-5,95,137,337,-127,95,126,344,-137,94,135,289,-89,96,297,355,-143,96,142,354,-161,97,160,354,-142,97,141,353,-160,99,128,346,-425,10,129,348,-416,99,419,347,-129
		,103,409,371,-176,294,290,345,-128,13,86,298,-151,100,210,391,-311,34,25,172,-189,90,140,411,-12,315,129,347,-420,313,298,351,-133,102,308,388,-207,87,148,360,-428,30,167,168,-186,28,320,414,-198,61,400,395,-222
		,40,103,317,-202,320,180,375,-415,103,175,370,-318,106,420,374,-179,39,277,420,-201,282,62,242,-246,63,226,399,-402,274,255,238,-234,282,260,240,-63,41,106,325,-203,76,403,256,-284,79,236,240,-261,277,179,374,-421
		,38,278,409,-200,41,200,420,-107,104,309,385,-204,164,660,662,-170,301,306,357,-145,261,79,260,-405,42,105,410,-312,236,225,398,-241,277,414,375,-180,318,177,372,-433,40,199,409,-104,318,325,373,-178,80,244,241,-235
		,284,61,241,-245,105,317,370,-175,43,318,432,-317,33,24,171,-183,31,183,170,-165,107,310,391,-210,107,209,390,-230,98,427,360,-148,32,185,168,-167,108,205,386,-329,165,365,653,-658,29,165,170,-184,20,661,306,-302
		,35,187,366,-27,512,610,611,-514,243,66,451,-456,300,134,352,-152,5,416,344,-127,283,256,239,-61,53,227,328,-333,17,153,273,-102,15,313,273,-154,17,101,422,-297,443,435,125,-84,81,63,401,-258,438,440,118,-286
		,42,201,317,-106,16,152,419,-100,233,219,392,-238,234,241,394,-221,58,107,229,-327,336,253,457,-468,53,332,309,-231,275,235,239,-257,60,222,395,-401,331,229,390,-209,43,202,325,-319,284,259,400,-62,330,207,388,-309
		,16,99,424,-155,15,150,298,-314,299,127,345,-424,315,418,348,-130,275,245,242,-236,319,410,369,-174,299,424,346,-128,64,275,256,-404,18,300,151,-296,13,295,151,-87,104,203,384,-430,44,327,405,-109,314,130,348,-419
		,76,283,259,-272,319,173,368,-199,236,401,399,-226,278,176,371,-410,52,326,229,-332,449,446,116,-83,438,285,116,-447,331,208,389,-330,234,220,393,-239,274,233,237,-248,320,198,368,-181,233,238,393,-220,300,423,345,-135
		,448,442,123,-85,81,247,237,-64,37,311,410,-320,78,114,337,-114,235,223,396,-240,101,131,349,-423,314,422,349,-131,64,579,245,-276,313,132,350,-274,86,151,352,-134,88,289,351,-134,85,10,415,-140,90,11,412,-289
		,101,273,350,-132,10,263,347,-130,4,412,350,-133,93,4,289,-136,294,127,346,-414,91,9,263,-139,95,136,262,-9,86,133,351,-299,8,262,352,-135,9,128,347,-264,510,602,608,-512,536,523,430,-336,522,524,334,-111
		,522,110,430,-524,517,603,602,-511,592,589,464,-503,279,408,-434,285,118,-434,433,116,-286,433,125,-281,82,116,-434,433,123,-84,433,407,-78,433,267,-280,83,125,-434,433,118,-282
		,77,121,-434,433,408,-83,433,121,-85,280,267,-434,281,407,-434,84,123,-434,2,441,440,-267,2,286,437,-442,276,417,434,-445,78,436,447,-115,78,264,445,-437,0,449,445,-265,3,448,434,-418
		,5,439,435,-417,6,443,442,-288,276,444,437,-287,5,114,447,-440,6,416,435,-444,1,266,440,-439,0,265,446,-450,1,438,446,-266,3,287,442,-449,516,623,614,-522,514,616,617,-516,505,472,616,-515,503,463,473,-505
		,593,590,463,-504,508,621,625,-510,507,471,621,-509,521,614,615,-507,261,404,637,-460,579,64,638,-582,421,336,467,-623,324,321,618,-621,576,574,575,-578,66,258,458,-452,430,110,453,-625,321,431,619,-619,271,67,452,-463
		,67,270,461,-453,64,403,468,-639,479,269,460,-491,544,543,542,-546,482,597,599,-494,485,547,549,-497,560,559,558,-562,626,475,474,-629,627,562,475,-627,68,478,477,-405,579,578,478,-69,568,476,487,-570,76,481,480,-404
		,271,596,481,-77,59,484,483,-271,243,546,484,-60,587,586,492,-589,630,486,497,-630,634,488,564,-636,469,489,488,-635,450,491,580,-640,640,591,491,-451,632,494,598,-637,633,495,494,-633,629,497,548,-632,571,570,572,-574
		,584,479,490,-586,539,538,540,-542,600,482,493,-602,552,485,496,-554,555,554,556,-558,570,576,577,-573,486,516,521,-498,538,544,545,-541,562,518,519,-476,494,508,509,-599,644,513,498,-646,554,560,561,-557,488,514,515,-565
		,489,505,514,-489,567,568,569,-567,582,584,585,-584,646,512,513,-645,649,517,510,-648,591,593,503,-492,641,500,501,-643,491,503,504,-581,643,499,500,-642,550,552,553,-552,497,521,506,-549,586,592,502,-493,594,600,601,-596
		,495,507,508,-495,475,519,520,-475,647,510,511,-649
		Edges: 
		GeometryVersion: 124
		LayerElementNormal: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "ByVertice"
			ReferenceInformationType: "Direct"
			Normals: 0.702414035797119,0.702414035797119,0.114963226020336,0.993346989154816,0.000000000000000,0.114963226020336
			 ,0.702414035797119,-0.702414035797119,0.114963226020336,-0.702414035797119,-0.702414035797119,0.114963226020336
			 ,-0.163640245795250,-0.163640245795250,0.972838521003723,-0.702414035797119,0.702414035797119,0.114963226020336
			 ,-0.993346989154816,0.000000000000000,0.114963226020336,0.705587923526764,-0.705587923526764,0.065431684255600
			 ,-0.163640245795250,0.163640245795250,0.972838521003723,0.163640245795250,0.163640245795250,0.972838521003723
			 ,0.231452375650406,0.000000000000000,0.972838521003723,0.000000000000000,-0.231452375650406,0.972838521003723
			 ,-0.000030518509448,-0.067537464201450,0.997711122035980,-0.997833192348480,0.000000000000000,0.065431684255600
			 ,0.997833192348480,0.000000000000000,0.065431684255600,-0.705587923526764,-0.705587923526764,0.065431684255600
			 ,0.705587923526764,0.705587923526764,0.065431684255600,0.000000000000000,-0.997833192348480,0.065431684255600
			 ,-0.705587923526764,0.705587923526764,0.065431684255600,0.000000000000000,0.997833192348480,0.065431684255600
			 ,0.047791987657547,-0.047730948776007,0.997711122035980,-0.068758204579353,0.000122074037790,0.997619569301605
			 ,-0.048188727349043,-0.048005614429712,0.997680604457855,-0.129551067948341,0.000396740622818,0.991546392440796
			 ,-0.447004616260529,0.453810244798660,0.770836532115936,-0.004638813436031,0.637348532676697,0.770531296730042
			 ,0.372814118862152,-0.367931157350540,0.851802110671997,-0.602160692214966,0.010376293212175,0.798303186893463
			 ,-0.638691365718842,0.638691365718842,-0.429029196500778,0.127262189984322,0.000396740622818,0.991851568222046
			 ,-0.090243235230446,-0.089663378894329,0.991851568222046,0.091341897845268,0.091921746730804,0.991546392440796
			 ,-0.000152592547238,-0.125644698739052,0.992065191268921,-0.092684715986252,0.092959381639957,0.991332769393921
			 ,-0.000152592547238,0.131290629506111,0.991332769393921,0.088961452245712,-0.088717304170132,0.992065191268921
			 ,0.157780691981316,0.157780691981316,-0.974761188030243,0.000000000000000,0.903256297111511,-0.429029196500778
			 ,0.638691365718842,-0.638691365718842,-0.429029196500778,-0.903256297111511,0.000000000000000,-0.429029196500778
			 ,0.903256297111511,0.000000000000000,-0.429029196500778,-0.638691365718842,-0.638691365718842,-0.429029196500778
			 ,0.638691365718842,0.638691365718842,-0.429029196500778,0.000000000000000,-0.903256297111511,-0.429029196500778
			 ,0.761253714561462,0.000000000000000,-0.648396253585815,0.000000000000000,-0.223151341080666,-0.974761188030243
			 ,-0.157780691981316,0.157780691981316,-0.974761188030243,0.000000000000000,0.223151341080666,-0.974761188030243
			 ,0.157780691981316,-0.157780691981316,-0.974761188030243,-0.223151341080666,0.000000000000000,-0.974761188030243
			 ,0.223151341080666,0.000000000000000,-0.974761188030243,-0.157780691981316,-0.157780691981316,-0.974761188030243
			 ,-0.538285493850708,-0.538285493850708,-0.648396253585815,0.538285493850708,0.538285493850708,-0.648396253585815
			 ,0.000000000000000,-0.761253714561462,-0.648396253585815,-0.538285493850708,0.538285493850708,-0.648396253585815
			 ,0.000000000000000,0.761253714561462,-0.648396253585815,0.538285493850708,-0.538285493850708,-0.648396253585815
			 ,-0.761253714561462,0.000000000000000,-0.648396253585815,0.646046340465546,0.646046340465546,0.406414985656738
			 ,0.207220673561096,-0.207220673561096,-0.956083893775940,0.293069243431091,0.000000000000000,-0.956083893775940
			 ,-0.207220673561096,-0.207220673561096,-0.956083893775940,-0.207220673561096,0.207220673561096,-0.956083893775940
			 ,0.000000000000000,-1.000000000000000,0.000000000000000,-0.707083344459534,0.707083344459534,0.000000000000000
			 ,0.000000000000000,1.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000
			 ,-0.646046340465546,-0.646046340465546,0.406414985656738,0.000000000000000,0.000000000000000,1.000000000000000
			 ,-0.707083344459534,0.707083344459534,0.000000000000000,0.707083344459534,-0.707083344459534,0.000000000000000
			 ,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875
			 ,-0.707083344459534,-0.707083344459534,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.646046340465546,-0.646046340465546,0.406414985656738,0.000000000000000,-0.351329088211060,-0.936246812343597
			 ,0.000000000000000,0.993346989154816,0.114963226020336,-0.874111175537109,0.000000000000000,-0.485671550035477
			 ,0.618091344833374,0.618091344833374,-0.485671550035477,-0.618091344833374,0.618091344833374,-0.485671550035477
			 ,0.248420670628548,0.248420670628548,-0.936246812343597,-0.351329088211060,0.000000000000000,-0.936246812343597
			 ,-0.248420670628548,-0.248420670628548,-0.936246812343597,0.241126745939255,0.000000000000000,0.970488607883453
			 ,-0.995452761650085,0.000000000000000,0.094973601400852,-0.286141544580460,0.286111027002335,0.914456605911255
			 ,-0.231452375650406,0.000000000000000,0.972838521003723,0.170476391911507,-0.170476391911507,0.970488607883453
			 ,0.000000000000000,-0.241126745939255,0.970488607883453,0.170476391911507,0.170476391911507,0.970488607883453
			 ,0.000000000000000,0.241126745939255,0.970488607883453,-0.170476391911507,-0.170476391911507,0.970488607883453
			 ,-0.241126745939255,0.000000000000000,0.970488607883453,-0.170476391911507,0.170476391911507,0.970488607883453
			 ,0.286019474267960,0.285958439111710,0.914548158645630,0.000000000000000,0.404644906520844,0.914456605911255
			 ,-0.404431283473969,-0.000030518509448,0.914548158645630,0.703909397125244,0.703909397125244,0.094973601400852
			 ,-0.698477149009705,0.698477149009705,-0.155583366751671,0.000000000000000,-0.995452761650085,0.094973601400852
			 ,0.698477149009705,-0.698477149009705,-0.155583366751671,0.877590239048004,0.000000000000000,0.479384750127792
			 ,0.000000000000000,0.987792611122131,-0.155583366751671,0.620532870292664,0.620532870292664,0.479384750127792
			 ,-0.620532870292664,-0.620532870292664,0.479384750127792,-0.987792611122131,0.000000000000000,-0.155583366751671
			 ,0.987792611122131,0.000000000000000,-0.155583366751671,-0.707083344459534,-0.707083344459534,0.000000000000000
			 ,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000
			 ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.794335782527924,0.607440412044525
			 ,-0.380108028650284,0.917722105979919,0.115176856517792,0.561693191528320,0.561693191528320,0.607440412044525
			 ,0.326364934444427,0.135166481137276,-0.935514390468597,0.794335782527924,0.000000000000000,0.607440412044525
			 ,0.326364934444427,-0.135166481137276,-0.935514390468597,0.561693191528320,-0.561693191528320,0.607440412044525
			 ,0.000000000000000,-0.794335782527924,0.607440412044525,-0.135166481137276,-0.326364934444427,-0.935514390468597
			 ,-0.561693191528320,-0.561693191528320,0.607440412044525,-0.326364934444427,-0.135166481137276,-0.935514390468597
			 ,-0.794335782527924,0.000000000000000,0.607440412044525,-0.326364934444427,0.135166481137276,-0.935514390468597
			 ,-0.561693191528320,0.561693191528320,0.607440412044525,0.000000000000000,0.798669397830963,0.601702928543091
			 ,0.564745008945465,0.564745008945465,0.601733446121216,0.798669397830963,0.000000000000000,0.601702928543091
			 ,0.564745008945465,-0.564745008945465,0.601733446121216,0.000000000000000,-0.798669397830963,0.601733446121216
			 ,-0.564745008945465,-0.564745008945465,0.601733446121216,-0.798669397830963,0.000000000000000,0.601733446121216
			 ,-0.564745008945465,0.564745008945465,0.601733446121216,-0.224036380648613,-0.092776268720627,0.970122396945953
			 ,-0.224036380648613,0.092776268720627,0.970122396945953,-0.092776268720627,0.224036380648613,0.970122396945953
			 ,0.224036380648613,0.092776268720627,0.970122396945953,0.224036380648613,-0.092776268720627,0.970122396945953
			 ,0.092776268720627,-0.224036380648613,0.970122396945953,0.000000000000000,0.885464012622833,0.464674830436707
			 ,0.626117765903473,0.626117765903473,0.464674830436707,0.885464012622833,0.000000000000000,0.464674830436707
			 ,0.626117765903473,-0.626117765903473,0.464674830436707,0.000000000000000,-0.885464012622833,0.464674830436707
			 ,-0.626117765903473,-0.626117765903473,0.464674830436707,-0.885464012622833,0.000000000000000,0.464674830436707
			 ,-0.626117765903473,0.626117765903473,0.464674830436707,0.921872615814209,-0.381847590208054,0.065584279596806
			 ,-0.921872615814209,-0.381847590208054,0.065614797174931,-0.919644773006439,0.380932033061981,0.095339819788933
			 ,0.921872615814209,0.381847590208054,0.065584279596806,-0.381847590208054,-0.921872615814209,0.065584279596806
			 ,0.381847590208054,0.921872615814209,0.065584279596806,0.006714072078466,0.902371287345886,0.430860310792923
			 ,0.048524431884289,0.048707541078329,0.997619569301605,0.068056277930737,0.000122074037790,0.997680604457855
			 ,-0.642719805240631,0.632862329483032,0.431684315204620,-0.155491799116135,0.375408172607422,0.913693666458130
			 ,0.155461281538010,0.375286102294922,0.913754701614380,0.062440872192383,-0.025727104395628,0.997711122035980
			 ,-0.063051238656044,-0.025940733030438,0.997650086879730,0.062929168343544,0.026215400546789,0.997650086879730
			 ,0.419049650430679,0.433668017387390,0.797662258148193,0.555650472640991,0.009033478796482,0.831354737281799
			 ,-0.003295999020338,-0.523483991622925,0.852015733718872,-0.398693799972534,-0.385998100042343,0.831873536109924
			 ,-0.212256237864494,-0.493881046772003,0.843195915222168,0.230811491608620,0.581194519996643,0.780327796936035
			 ,0.532212257385254,0.232886746525764,0.813928663730621,-0.573564887046814,0.247596666216850,0.780816078186035
			 ,-0.246253848075867,0.594744682312012,0.765221118927002,0.000000000000000,0.315836042165756,0.948789954185486
			 ,0.223303928971291,0.223303928971291,0.948789954185486,0.315836042165756,0.000000000000000,0.948789954185486
			 ,0.223303928971291,-0.223303928971291,0.948789954185486,0.000000000000000,-0.315836042165756,0.948789954185486
			 ,-0.223303928971291,-0.223303928971291,0.948789954185486,-0.315836042165756,0.000000000000000,0.948789954185486
			 ,-0.223303928971291,0.223303928971291,0.948789954185486,-0.118808560073376,-0.048677023500204,0.991698980331421
			 ,-0.120517596602440,0.050325021147728,0.991424322128296,0.118472851812840,0.049592576920986,0.991698980331421
			 ,0.116824850440025,-0.048036135733128,0.991973638534546,-0.048615984618664,-0.116550184786320,0.991973638534546
			 ,0.049653615802526,0.120853297412395,0.991424322128296,0.048005614429712,-0.115909300744534,0.992095708847046
			 ,-0.050325021147728,0.121555224061012,0.991302251815796,0.000000000000000,0.369029819965363,-0.929410696029663
			 ,0.260933250188828,0.260933250188828,-0.929410696029663,0.369029819965363,0.000000000000000,-0.929410696029663
			 ,0.260933250188828,-0.260933250188828,-0.929410696029663,0.000000000000000,-0.369029819965363,-0.929410696029663
			 ,-0.260933250188828,-0.260933250188828,-0.929410696029663,-0.369029819965363,0.000000000000000,-0.929410696029663
			 ,-0.260933250188828,0.260933250188828,-0.929410696029663,-0.833399474620819,0.345194846391678,-0.431531727313995
			 ,-0.335245817899704,0.809350848197937,0.482192456722260,0.833399474620819,-0.345194846391678,-0.431531727313995
			 ,-0.833399474620819,-0.345194846391678,-0.431531727313995,0.833399474620819,0.345194846391678,-0.431531727313995
			 ,-0.345194846391678,-0.833399474620819,-0.431531727313995,0.000000000000000,0.734214305877686,-0.678884267807007
			 ,0.519180893898010,0.519180893898010,-0.678884267807007,0.734214305877686,0.000000000000000,-0.678884267807007
			 ,0.519180893898010,-0.519180893898010,-0.678884267807007,0.000000000000000,-0.734214305877686,-0.678884267807007
			 ,-0.519180893898010,-0.519180893898010,-0.678884267807007,-0.734214305877686,0.000000000000000,-0.678884267807007
			 ,-0.519180893898010,0.519180893898010,-0.678884267807007,0.085543379187584,0.206549271941185,-0.974669635295868
			 ,0.206549271941185,0.085543379187584,-0.974669635295868,0.085543379187584,-0.206549271941185,-0.974669635295868
			 ,-0.085543379187584,-0.206549271941185,-0.974669635295868,-0.206549271941185,0.085543379187584,-0.974669635295868
			 ,-0.085543379187584,0.206549271941185,-0.974669635295868,0.206549271941185,-0.085543379187584,-0.974669635295868
			 ,-0.206549271941185,-0.085543379187584,-0.974669635295868,0.000000000000000,0.137882620096207,-0.990417182445526
			 ,0.097506634891033,0.097506634891033,-0.990417182445526,0.137882620096207,0.000000000000000,-0.990417182445526
			 ,0.097506634891033,-0.097506634891033,-0.990417182445526,0.000000000000000,-0.137882620096207,-0.990417182445526
			 ,-0.097506634891033,-0.097506634891033,-0.990417182445526,-0.137882620096207,0.000000000000000,-0.990417182445526
			 ,-0.097506634891033,0.097506634891033,-0.990417182445526,0.700399816036224,0.290108948945999,-0.652088999748230
			 ,-0.290108948945999,-0.700399816036224,-0.652088999748230,-0.912594974040985,-0.378002256155014,-0.155796989798546
			 ,0.290108948945999,0.700399816036224,-0.652088999748230,0.290108948945999,-0.700399816036224,-0.652088999748230
			 ,-0.700399816036224,0.290108948945999,-0.652088999748230,0.000000000000000,0.293069243431091,-0.956083893775940
			 ,0.207220673561096,0.207220673561096,-0.956083893775940,0.000000000000000,-0.293069243431091,-0.956083893775940
			 ,-0.293069243431091,0.000000000000000,-0.956083893775940,-0.112643815577030,0.271950423717499,-0.955687105655670
			 ,0.112643815577030,0.271950423717499,-0.955687105655670,0.112643815577030,-0.271950423717499,-0.955687105655670
			 ,-0.271950423717499,-0.112643815577030,-0.955687105655670,0.271950423717499,0.112643815577030,-0.955687105655670
			 ,-0.112643815577030,-0.271950423717499,-0.955687105655670,0.337778866291046,0.936033189296722,0.098452709615231
			 ,0.808313250541687,0.334788054227829,-0.484267711639404,-0.334788054227829,-0.808313250541687,-0.484237194061279
			 ,-0.948026955127716,0.318124949932098,0.000000000000000,-0.334788054227829,0.808313250541687,-0.484237194061279
			 ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.382671594619751,-0.923856317996979,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.000000000000000,0.000000000000000,1.000000000000000,-0.948026955127716,0.318124949932098,0.000000000000000
			 ,0.382671594619751,0.923856317996979,0.000000000000000,0.334788054227829,0.808313250541687,-0.484267711639404
			 ,0.334788054227829,-0.808313250541687,-0.484267711639404,-0.808313250541687,0.334788054227829,-0.484237194061279
			 ,-0.318124949932098,0.948026955127716,0.000000000000000,0.808313250541687,-0.334788054227829,-0.484267711639404
			 ,-0.808313250541687,-0.334788054227829,-0.484237194061279,-1.000000000000000,0.000000000000000,0.000000000000000
			 ,-0.210974454879761,0.087374493479729,0.973570942878723,0.210974454879761,0.087374493479729,0.973570942878723
			 ,0.380108028650284,0.917722105979919,0.115176856517792,0.917722105979919,0.380108028650284,0.115176856517792
			 ,0.917722105979919,-0.380108028650284,0.115176856517792,-0.135166481137276,0.326364934444427,-0.935514390468597
			 ,0.163640245795250,-0.163640245795250,0.972838521003723,-0.889065206050873,-0.457777649164200,0.000000000000000
			 ,0.936033189296722,0.337778866291046,0.098452709615231,0.936033189296722,-0.337778866291046,0.098452709615231
			 ,-0.381847590208054,0.921872615814209,0.065584279596806,-0.380932033061981,-0.919644773006439,0.095370344817638
			 ,0.000000000000000,0.874111175537109,-0.485671550035477,0.000000000000000,-0.874111175537109,-0.485671550035477
			 ,0.000000000000000,-0.993346989154816,0.114963226020336,-0.877590239048004,0.000000000000000,0.479384750127792
			 ,0.620532870292664,-0.620532870292664,0.479384750127792,0.000000000000000,0.351329088211060,-0.936246812343597
			 ,-0.248420670628548,0.248420670628548,-0.936246812343597,0.248420670628548,-0.248420670628548,-0.936246812343597
			 ,-0.618091344833374,-0.618091344833374,-0.485671550035477,0.618091344833374,-0.618091344833374,-0.485671550035477
			 ,0.874111175537109,0.000000000000000,-0.485671550035477,0.351329088211060,0.000000000000000,-0.936246812343597
			 ,0.380108028650284,-0.917722105979919,0.115176856517792,-0.917722105979919,-0.380108028650284,0.115176856517792
			 ,-0.092776268720627,-0.224036380648613,0.970122396945953,-0.210974454879761,-0.087374493479729,0.973570942878723
			 ,-0.087374493479729,0.210974454879761,0.973570942878723,-0.285744816064835,-0.285805851221085,0.914670228958130
			 ,0.404156625270844,-0.000030518509448,0.914670228958130,0.092776268720627,0.224036380648613,0.970122396945953
			 ,0.000000000000000,0.231452375650406,0.972838521003723,-0.921872615814209,0.381847590208054,0.065584279596806
			 ,0.381847590208054,-0.921872615814209,0.065584279596806,0.375072479248047,0.155308693647385,0.913876771926880
			 ,-0.919644773006439,-0.380932033061981,0.095339819788933,0.000000000000000,0.995452761650085,0.094973601400852
			 ,-0.703909397125244,0.703909397125244,0.094973601400852,0.285622715950012,-0.285653233528137,0.914761781692505
			 ,0.000000000000000,-0.403973519802094,0.914761781692505,-0.923856317996979,0.382671594619751,0.000000000000000
			 ,0.000000000000000,0.000000000000000,1.000000000000000,-0.025940733030438,-0.062349315732718,0.997711122035980
			 ,0.155186623334885,-0.374706268310547,0.914029359817505,-0.290108948945999,0.700399816036224,-0.652088999748230
			 ,0.378002256155014,-0.912594974040985,-0.155796989798546,0.378002256155014,0.912594974040985,-0.155796989798546
			 ,-0.912594974040985,0.378002256155014,-0.155796989798546,0.345194846391678,0.833399474620819,-0.431531727313995
			 ,-0.345194846391678,0.833399474620819,-0.431531727313995,-0.703878879547119,-0.703909397125244,0.094973601400852
			 ,0.703909397125244,-0.703909397125244,0.094973601400852,0.995452761650085,0.000000000000000,0.094973601400852
			 ,0.345194846391678,-0.833399474620819,-0.431531727313995,0.809350848197937,0.335245817899704,0.482192456722260
			 ,0.000000000000000,-0.877590239048004,0.479384750127792,0.000000000000000,0.877590239048004,0.479384750127792
			 ,-0.620532870292664,0.620532870292664,0.479384750127792,0.000000000000000,1.000000000000000,0.000000000000000
			 ,-0.707083344459534,0.707083344459534,0.000000000000000,0.707083344459534,-0.707083344459534,0.000000000000000
			 ,-0.318124949932098,0.948026955127716,0.000000000000000,-0.335245817899704,-0.809350848197937,0.482192456722260
			 ,-0.700399816036224,-0.290108948945999,-0.652088999748230,0.700399816036224,-0.290108948945999,-0.652088999748230
			 ,0.912594974040985,0.378002256155014,-0.155796989798546,-0.378002256155014,-0.912594974040985,-0.155796989798546
			 ,0.000000000000000,-0.987792611122131,-0.155583366751671,-0.698477149009705,-0.698477149009705,-0.155583366751671
			 ,0.698477149009705,0.698477149009705,-0.155583366751671,-0.318124949932098,-0.948026955127716,0.000000000000000
			 ,0.948026955127716,-0.318124949932098,0.000000000000000,0.707083344459534,0.707083344459534,0.000000000000000
			 ,-1.000000000000000,0.000000000000000,0.000000000000000,-0.304330587387085,0.734733104705811,0.606219649314880
			 ,0.304330587387085,0.734733104705811,0.606219649314880,0.734733104705811,0.304330587387085,0.606219649314880
			 ,0.734733104705811,-0.304330587387085,0.606219649314880,0.304330587387085,-0.734733104705811,0.606219649314880
			 ,-0.304330587387085,-0.734733104705811,0.606219649314880,-0.734733104705811,-0.304330587387085,0.606219649314880
			 ,-0.734733104705811,0.304330587387085,0.606219649314880,-0.304757833480835,0.735801279544830,0.604693770408630
			 ,0.304757833480835,0.735801279544830,0.604693770408630,0.735801279544830,0.304757833480835,0.604693770408630
			 ,0.735801279544830,-0.304757833480835,0.604693770408630,0.304757833480835,-0.735801279544830,0.604693770408630
			 ,-0.304757833480835,-0.735801279544830,0.604693770408630,-0.735801279544830,-0.304757833480835,0.604693770408630
			 ,-0.735801279544830,0.304757833480835,0.604693770408630,-0.338938564062119,0.818323314189911,0.464125484228134
			 ,0.338938564062119,0.818323314189911,0.464125484228134,0.818323314189911,0.338938564062119,0.464125484228134
			 ,0.818323314189911,-0.338938564062119,0.464125484228134,0.338938564062119,-0.818323314189911,0.464125484228134
			 ,-0.338938564062119,-0.818323314189911,0.464125484228134,-0.818323314189911,-0.338938564062119,0.464125484228134
			 ,-0.818323314189911,0.338938564062119,0.464125484228134,-0.026429029181600,0.063844725489616,0.997589051723480
			 ,0.026245918124914,0.063631094992161,0.997619569301605,0.289834290742874,-0.699972510337830,0.652668833732605
			 ,-0.063539534807205,0.026429029181600,0.997619569301605,0.499893188476562,-0.199255347251892,0.842829704284668
			 ,0.199438452720642,-0.481307417154312,0.853541672229767,-0.540208160877228,-0.211310163140297,0.814539015293121
			 ,-0.119602039456367,0.288796663284302,0.949858069419861,0.119602039456367,0.288796663284302,0.949858069419861
			 ,0.288796663284302,0.119602039456367,0.949858069419861,0.288796663284302,-0.119602039456367,0.949858069419861
			 ,0.119602039456367,-0.288796663284302,0.949858069419861,-0.119602039456367,-0.288796663284302,0.949858069419861
			 ,-0.288796663284302,-0.119602039456367,0.949858069419861,-0.288796663284302,0.119602039456367,0.949858069419861
			 ,-0.139835804700851,0.337626278400421,-0.930814564228058,0.139835804700851,0.337626278400421,-0.930814564228058
			 ,0.337626278400421,0.139835804700851,-0.930814564228058,0.337626278400421,-0.139835804700851,-0.930814564228058
			 ,0.139835804700851,-0.337626278400421,-0.930814564228058,-0.139835804700851,-0.337626278400421,-0.930814564228058
			 ,-0.337626278400421,-0.139835804700851,-0.930814564228058,-0.337626278400421,0.139835804700851,-0.930814564228058
			 ,-0.281441688537598,0.679525136947632,-0.677480399608612,0.281441688537598,0.679525136947632,-0.677480399608612
			 ,0.679525136947632,0.281441688537598,-0.677480399608612,0.679525136947632,-0.281441688537598,-0.677480399608612
			 ,0.281441688537598,-0.679525136947632,-0.677480399608612,-0.281441688537598,-0.679525136947632,-0.677480399608612
			 ,-0.679525136947632,-0.281441688537598,-0.677480399608612,-0.679525136947632,0.281441688537598,-0.677480399608612
			 ,-0.052217170596123,0.126041442155838,-0.990630805492401,0.052217170596123,0.126041442155838,-0.990630805492401
			 ,0.126041442155838,0.052217170596123,-0.990630805492401,0.126041442155838,-0.052217170596123,-0.990630805492401
			 ,0.052217170596123,-0.126041442155838,-0.990630805492401,-0.052217170596123,-0.126041442155838,-0.990630805492401
			 ,-0.126041442155838,-0.052217170596123,-0.990630805492401,-0.126041442155838,0.052217170596123,-0.990630805492401
			 ,0.271950423717499,-0.112643815577030,-0.955687105655670,-0.271950423717499,0.112643815577030,-0.955687105655670
			 ,0.000000000000000,0.000000000000000,1.000000000000000,0.337778866291046,-0.936033189296722,0.098452709615231
			 ,-0.936033189296722,-0.337778866291046,0.098452709615231,0.912594974040985,-0.378002256155014,-0.155796989798546
			 ,0.318124949932098,-0.948026955127716,0.000000000000000,0.135166481137276,-0.326364934444427,-0.935514390468597
			 ,0.135166481137276,0.326364934444427,-0.935514390468597,0.809350848197937,-0.335245817899704,0.482192456722260
			 ,0.335245817899704,0.809350848197937,0.482192456722260,0.087374493479729,-0.210974454879761,0.973570942878723
			 ,-0.087374493479729,-0.210974454879761,0.973570942878723,0.087374493479729,0.210974454879761,0.973570942878723
			 ,-0.809350848197937,0.335245817899704,0.482192456722260,0.210974454879761,-0.087374493479729,0.973570942878723
			 ,-0.917722105979919,0.380108028650284,0.115176856517792,-0.380108028650284,-0.917722105979919,0.115176856517792
			 ,0.919644773006439,-0.380932033061981,0.095339819788933,0.919644773006439,0.380932033061981,0.095339819788933
			 ,-0.809350848197937,-0.335245817899704,0.482192456722260,-0.948026955127716,-0.318124949932098,0.000000000000000
			 ,0.380932033061981,-0.919644773006439,0.095339819788933,-0.380932033061981,0.919644773006439,0.095339819788933
			 ,0.380932033061981,0.919644773006439,0.095339819788933,0.374797821044922,-0.155278176069260,0.913998842239380
			 ,-0.375041961669922,-0.155400246381760,0.913876771926880,-0.375316619873047,0.155400246381760,0.913754701614380
			 ,-0.155217140913010,-0.374828338623047,0.913998842239380,-0.378002256155014,0.912594974040985,-0.155796989798546
			 ,0.948026955127716,0.318124949932098,0.000000000000000,0.318124949932098,0.948026955127716,0.000000000000000
			 ,0.335245817899704,-0.809350848197937,0.482192456722260,0.000000000000000,0.000000000000000,-1.000000000000000
			 ,-0.346415609121323,-0.836390256881714,-0.424756616353989,-0.836390256881714,0.346415609121323,-0.424756616353989
			 ,0.000000000000000,0.904843270778656,-0.425672173500061,0.346415609121323,-0.836390256881714,-0.424756616353989
			 ,0.904843270778656,0.000000000000000,-0.425672173500061,-0.639820575714111,0.639820575714111,-0.425672173500061
			 ,0.836390256881714,-0.346415609121323,-0.424756616353989,0.639820575714111,-0.639820575714111,-0.425672173500061
			 ,-0.836390256881714,-0.346415609121323,-0.424756616353989,-0.904843270778656,0.000000000000000,-0.425672173500061
			 ,0.000000000000000,-0.904843270778656,-0.425672173500061,0.346415609121323,0.836390256881714,-0.424756616353989
			 ,0.836390256881714,0.346415609121323,-0.424756616353989,-0.346415609121323,0.836390256881714,-0.424756616353989
			 ,-0.639820575714111,-0.639820575714111,-0.425672173500061,0.639820575714111,0.639820575714111,-0.425672173500061
			 ,0.000000000000000,-0.542558073997498,0.839991450309753,0.000000000000000,1.000000000000000,0.000000000000000
			 ,1.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000
			 ,0.000000000000000,-0.999969482421875,0.000000000000000,0.187353134155273,0.982268750667572,0.000000000000000
			 ,-0.982268750667572,0.187353134155273,0.000000000000000,-0.982268750667572,0.187353134155273,0.000000000000000
			 ,-0.187353134155273,0.982268750667572,0.000000000000000,-1.000000000000000,0.000000000000000,0.000000000000000
			 ,-0.889065206050873,-0.457777649164200,0.000000000000000,0.982268750667572,0.187353134155273,0.000000000000000
			 ,0.982268750667572,-0.187353134155273,0.000000000000000,0.000000000000000,0.652150034904480,0.758049249649048
			 ,0.287301242351532,0.957823395729065,0.000000000000000,-0.187353134155273,-0.982268750667572,0.000000000000000
			 ,0.982268750667572,-0.187353134155273,0.000000000000000,-1.000000000000000,0.000000000000000,0.000000000000000
			 ,0.187353134155273,-0.982268750667572,0.000000000000000,-0.539628267288208,-0.103701896965504,0.835474729537964
			 ,0.187353134155273,-0.982268750667572,0.000000000000000,-0.647053420543671,-0.124729149043560,0.752159178256989
			 ,0.647053420543671,0.124729149043560,0.752128660678864,0.124729149043560,0.647053420543671,0.752128660678864
			 ,-0.248084962368011,0.363933235406876,0.897763013839722,-0.264198750257492,0.264198750257492,0.927549064159393
			 ,-0.097750782966614,0.995208621025085,0.000000000000000,-0.531907081604004,-0.362590402364731,0.765221118927002
			 ,-0.450483709573746,-0.450483709573746,0.770744979381561,-0.995208621025085,-0.097750782966614,0.000000000000000
			 ,0.362590402364731,-0.531907081604004,0.765221118927002,0.450483709573746,-0.450483709573746,0.770744979381561
			 ,0.097750782966614,-0.995208621025085,0.000000000000000,0.531907081604004,0.362590402364731,0.765221118927002
			 ,0.450483709573746,0.450483709573746,0.770744979381561,0.995208621025085,0.097750782966614,0.000000000000000
			 ,-0.044984281063080,0.234107479453087,0.971159994602203,0.033295694738626,0.999420166015625,0.000000000000000
			 ,-0.313394576311111,0.000000000000000,0.949613928794861,-0.234107479453087,-0.044984281063080,0.971159994602203
			 ,-0.999420166015625,0.033295694738626,0.000000000000000,0.000000000000000,-0.313394576311111,0.949613928794861
			 ,0.999420166015625,0.033295694738626,0.000000000000000,-0.033295694738626,-0.999420166015625,0.000000000000000
			 ,0.313394576311111,0.000000000000000,0.949613928794861,0.234107479453087,0.044984281063080,0.971159994602203
			 ,0.999420166015625,-0.033295694738626,0.000000000000000,0.000000000000000,0.313394576311111,0.949613928794861
			 ,-0.182073429226875,0.266762286424637,0.946379005908966,0.182073429226875,0.266762286424637,0.946379005908966
			 ,0.182958468794823,0.182958468794823,0.965910851955414,0.266762286424637,0.182073429226875,0.946379005908966
			 ,0.725974321365356,0.687673568725586,0.000000000000000,0.000000000000000,0.308359026908875,0.951261937618256
			 ,0.034974209964275,0.181463062763214,0.982757031917572,0.181463062763214,0.034974209964275,0.982757031917572
			 ,-0.034974209964275,-0.181463062763214,0.982757031917572,-0.181463062763214,-0.034974209964275,0.982757031917572
			 ,-0.308359026908875,0.000000000000000,0.951261937618256,-0.181463062763214,0.034974209964275,0.982757031917572
			 ,-0.182988986372948,-0.182988986372948,0.965910851955414,-0.266762286424637,-0.182073429226875,0.946379005908966
			 ,-0.266762286424637,0.182073429226875,0.946379005908966,-0.182988986372948,0.182988986372948,0.965910851955414
			 ,0.308359026908875,0.000000000000000,0.951261937618256,0.181463062763214,-0.034974209964275,0.982757031917572
			 ,0.034974209964275,-0.181463062763214,0.982757031917572,-0.182073429226875,-0.266762286424637,0.946379005908966
			 ,0.266762286424637,-0.182073429226875,0.946379005908966,0.182958468794823,-0.182958468794823,0.965910851955414
			 ,0.182073429226875,-0.266762286424637,0.946379005908966,0.000000000000000,-0.308359026908875,0.951261937618256
			 ,1.000000000000000,0.000000000000000,0.000000000000000,0.923856317996979,0.382671594619751,0.000000000000000
			 ,0.923856317996979,-0.382671594619751,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.000000000000000,0.000000000000000,1.000000000000000,-0.382671594619751,0.923856317996979,0.000000000000000
			 ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.000000000000000,0.000000000000000,0.999969482421875,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.000000000000000,-1.000000000000000,0.000000000000000,-0.382671594619751,-0.923856317996979,0.000000000000000
			 ,0.000000000000000,0.000000000000000,1.000000000000000,-0.923856317996979,-0.382671594619751,0.000000000000000
			 ,0.707083344459534,0.707083344459534,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.097750782966614,0.995208621025085,0.000000000000000,0.457747131586075,0.889065206050873,0.000000000000000
			 ,-0.033295694738626,0.999420166015625,0.000000000000000,0.457747131586075,0.889065206050873,0.000000000000000
			 ,-0.957823395729065,0.287301242351532,0.000000000000000,-0.957823395729065,0.287301242351532,0.000000000000000
			 ,-0.779961526393890,0.625812530517578,0.000000000000000,-0.687673568725586,0.725974321365356,0.000000000000000
			 ,0.362590402364731,0.531907081604004,0.765221118927002,0.889034688472748,0.457777649164200,0.000000000000000
			 ,0.044984281063080,0.234107479453087,0.971159994602203,0.889034688472748,0.457777649164200,0.000000000000000
			 ,0.287301242351532,-0.957823395729065,0.000000000000000,0.287301242351532,-0.957823395729065,0.000000000000000
			 ,0.625812530517578,-0.779961526393890,0.000000000000000,0.725974321365356,-0.687673568725586,0.000000000000000
			 ,-0.995208621025085,0.097750782966614,0.000000000000000,-0.889065206050873,0.457747131586075,0.000000000000000
			 ,-0.999420166015625,-0.033295694738626,0.000000000000000,-0.889065206050873,0.457747131586075,0.000000000000000
			 ,-0.287301242351532,-0.957823395729065,0.000000000000000,-0.287301242351532,-0.957823395729065,0.000000000000000
			 ,-0.625812530517578,-0.779961526393890,0.000000000000000,-0.725974321365356,-0.687673568725586,0.000000000000000
			 ,-0.363933235406876,0.248084962368011,0.897763013839722,-0.457777649164200,0.889065206050873,0.000000000000000
			 ,-0.234107479453087,0.044984281063080,0.971159994602203,-0.457777649164200,0.889065206050873,0.000000000000000
			 ,0.957823395729065,0.287301242351532,0.000000000000000,0.957823395729065,0.287301242351532,0.000000000000000
			 ,0.779961526393890,0.625812530517578,0.000000000000000,0.687673568725586,0.725974321365356,0.000000000000000
			 ,-0.097750782966614,-0.995208621025085,0.000000000000000,-0.457747131586075,-0.889065206050873,0.000000000000000
			 ,0.033295694738626,-0.999420166015625,0.000000000000000,-0.457747131586075,-0.889065206050873,0.000000000000000
			 ,0.957823395729065,-0.287301242351532,0.000000000000000,0.957823395729065,-0.287301242351532,0.000000000000000
			 ,0.779961526393890,-0.625812530517578,0.000000000000000,0.687673568725586,-0.725974321365356,0.000000000000000
			 ,-0.362590402364731,-0.531907081604004,0.765221118927002,-0.337778866291046,-0.936033189296722,0.098452709615231
			 ,-0.044984281063080,-0.234107479453087,0.971159994602203,-0.187353134155273,-0.982268750667572,0.000000000000000
			 ,-0.287270724773407,0.957823395729065,0.000000000000000,-0.287270724773407,0.957823395729065,0.000000000000000
			 ,-0.625812530517578,0.779961526393890,0.000000000000000,-0.725974321365356,0.687673568725586,0.000000000000000
			 ,0.995208621025085,-0.097750782966614,0.000000000000000,0.889065206050873,-0.457747131586075,0.000000000000000
			 ,0.889065206050873,-0.457747131586075,0.000000000000000,0.287301242351532,0.957823395729065,0.000000000000000
			 ,-0.124729149043560,0.647053420543671,0.752128660678864,0.044984281063080,-0.234107479453087,0.971159994602203
			 ,0.625812530517578,0.779961526393890,0.000000000000000,-0.034974209964275,0.181463062763214,0.982757031917572
			 ,-0.957823395729065,-0.287301242351532,0.000000000000000,-0.957823395729065,-0.287301242351532,0.000000000000000
			 ,0.531907081604004,-0.362590402364731,0.765221118927002,0.457777649164200,-0.889065206050873,0.000000000000000
			 ,0.234107479453087,-0.044984281063080,0.971159994602203,0.457777649164200,-0.889065206050873,0.000000000000000
			 ,-0.779961526393890,-0.625812530517578,0.000000000000000,-0.687673568725586,-0.725974321365356,0.000000000000000
			 ,-0.392407000064850,-0.392407000064850,0.831843018531799,-0.316629528999329,-0.463911861181259,0.827326297760010
			 ,0.392407000064850,-0.392407000064850,0.831873536109924,0.316629528999329,-0.463911861181259,0.827326297760010
			 ,0.392407000064850,0.392407000064850,0.831873536109924,0.463911861181259,0.316629528999329,0.827326297760010
			 ,-0.463911861181259,-0.316660046577454,0.827326297760010,0.316629528999329,0.463911861181259,0.827326297760010
			 ,-0.463911861181259,0.316660046577454,0.827326297760010,-0.392407000064850,0.392407000064850,0.831843018531799
			 ,-0.316629528999329,0.463911861181259,0.827326297760010,0.463911861181259,-0.316629528999329,0.827326297760010
			 ,0.000000000000000,-0.652150034904480,0.758049249649048,-0.124729149043560,-0.647053420543671,0.752128660678864
			 ,0.652150034904480,0.000000000000000,0.758049249649048,0.647053420543671,-0.124729149043560,0.752128660678864
			 ,0.000000000000000,0.999969482421875,0.000000000000000,0.187353134155273,0.982268750667572,0.000000000000000
			 ,-0.187353134155273,0.982268750667572,0.000000000000000,-0.652150034904480,0.000000000000000,0.758079767227173
			 ,-0.982268750667572,-0.187353134155273,0.000000000000000,0.124729149043560,-0.647053420543671,0.752128660678864
			 ,0.982268750667572,0.187353134155273,0.000000000000000,-0.647053420543671,0.124729149043560,0.752159178256989
			 ,-0.450483709573746,0.450483709573746,0.770744979381561,-0.531907081604004,0.362590402364731,0.765221118927002
			 ,-0.362590402364731,0.531907081604004,0.765221118927002,0.000000000000000,0.542558073997498,0.839991450309753
			 ,-0.103701896965504,0.539628267288208,0.835474729537964,0.103701896965504,0.539628267288208,0.835474729537964
			 ,0.542558073997498,0.000000000000000,0.839991450309753,0.539628267288208,0.103701896965504,0.835474729537964
			 ,-0.542558073997498,0.000000000000000,0.839991450309753,-0.539628267288208,0.103701896965504,0.835474729537964
			 ,0.539628267288208,-0.103701896965504,0.835474729537964,-0.982268750667572,-0.187353134155273,0.000000000000000
			 ,0.000000000000000,-1.000000000000000,0.000000000000000,-0.103701896965504,-0.539628267288208,0.835474729537964
			 ,0.103701896965504,-0.539628267288208,0.835474729537964,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000
			 ,0.004638813436031,-0.763664662837982,0.645558059215546,-0.288918733596802,-0.722952961921692,0.627521574497223
			 ,0.536851108074188,-0.543687224388123,0.645100235939026,0.716116845607758,-0.307321399450302,0.626636564731598
			 ,-0.861384928226471,-0.014862514100969,0.507675409317017,-0.761986136436462,-0.332865387201309,0.555467367172241
			 ,-0.559068560600281,-0.577013432979584,0.595324575901031,0.804315328598022,-0.012787255458534,0.594012260437012
			 ,0.775170147418976,0.303781241178513,0.553880453109741,-0.822717964649200,0.326609075069427,0.465224146842957
			 ,0.620258212089539,0.599322497844696,0.506027400493622,0.025727104395628,-0.062135685235262,0.997711122035980
			 ,0.350932329893112,0.813440322875977,0.463820308446884,-0.000030518509448,0.069277018308640,0.997589051723480
			 ,-0.347178578376770,0.837855160236359,0.421216458082199,-0.048921171575785,0.049012728035450,0.997589051723480
		}
		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
		}
		LayerElementUV: 0 {
			Version: 101
			Name: "diffuse"
			MappingInformationType: "ByPolygonVertex"
			ReferenceInformationType: "IndexToDirect"
			UV: 0.746150,0.193163,0.746030,0.197027,0.683803,0.184611,0.683918,0.180719,0.623847,0.088360,0.623899,0.086253,0.686286,0.097285
			 ,0.686222,0.099472,0.621960,0.169608,0.683918,0.180719,0.683803,0.184611,0.621867,0.173525,0.621960,0.169608,0.621867,0.173525
			 ,0.560113,0.165294,0.560171,0.161359,0.871907,0.214369,0.871831,0.218186,0.808700,0.208858,0.808806,0.205019,0.374979,0.163938
			 ,0.375051,0.167867,0.313239,0.177196,0.313136,0.173287,0.623847,0.088360,0.561349,0.080112,0.561382,0.078064,0.623899,0.086253
			 ,0.375289,0.172155,0.375324,0.173483,0.313627,0.181654,0.313578,0.180373,0.125917,0.208699,0.126014,0.212529,0.062713,0.220759
			 ,0.062651,0.216948,0.498439,0.157502,0.498424,0.161446,0.436752,0.162223,0.436721,0.158281,0.251105,0.185144,0.313136,0.173287
			 ,0.313239,0.177196,0.251224,0.189026,0.619530,0.254623,0.558667,0.247428,0.559832,0.174883,0.621415,0.182079,0.619530,0.254623
			 ,0.621415,0.182079,0.683248,0.191771,0.680915,0.264316,0.619530,0.254623,0.680915,0.264316,0.680840,0.266530,0.619470,0.256846
			 ,0.619530,0.254623,0.619470,0.256846,0.558630,0.249656,0.558667,0.247428,0.126336,0.211497,0.126383,0.212603,0.062946,0.219812
			 ,0.062916,0.218748,0.498738,0.076255,0.436095,0.077034,0.436078,0.075008,0.498747,0.074235,0.497920,0.250950,0.437561,0.251577
			 ,0.437547,0.247775,0.498045,0.247099,0.254224,0.268176,0.315812,0.257833,0.315879,0.260053,0.254302,0.270387,0.254224,0.268176
			 ,0.254302,0.270387,0.191887,0.281233,0.191809,0.279031,0.742990,0.275170,0.680915,0.264316,0.683248,0.191771,0.745448,0.202626
			 ,0.742990,0.275170,0.745448,0.202626,0.808185,0.212968,0.805991,0.285513,0.742990,0.275170,0.805991,0.285513,0.805920,0.287711
			 ,0.742911,0.277376,0.742990,0.275170,0.742911,0.277376,0.680840,0.266530,0.680915,0.264316,0.376849,0.249677,0.437517,0.244743
			 ,0.437537,0.246974,0.376895,0.251904,0.376849,0.249677,0.376895,0.251904,0.315879,0.260053,0.315812,0.257833,0.869879,0.293669
			 ,0.934521,0.298603,0.934499,0.300790,0.869828,0.295860,0.869879,0.293669,0.869828,0.295860,0.805920,0.287711,0.805991,0.285513
			 ,0.498059,0.244064,0.558667,0.247428,0.558630,0.249656,0.498049,0.246295,0.498059,0.244064,0.498049,0.246295,0.437537,0.246974
			 ,0.437517,0.244743,0.128505,0.288723,0.064295,0.295918,0.063012,0.223373,0.126487,0.216178,0.128505,0.288723,0.191809,0.279031
			 ,0.191887,0.281233,0.128570,0.290918,0.128505,0.288723,0.128570,0.290918,0.064337,0.298107,0.064295,0.295918,0.999492,0.299282
			 ,0.934521,0.298603,0.935208,0.226059,0.999163,0.226738,-0.000508,0.299282,-0.000837,0.226738,0.063012,0.223373,0.064295,0.295918
			 ,-0.000508,0.299282,0.064295,0.295918,0.064337,0.298107,-0.000497,0.301469,0.999492,0.299282,0.999503,0.301469,0.934499,0.300790
			 ,0.934521,0.298603,0.742871,0.278104,0.742911,0.277376,0.805920,0.287711,0.805885,0.288413,0.376918,0.252694,0.315911,0.260823
			 ,0.315879,0.260053,0.376895,0.251904,0.619440,0.257624,0.619470,0.256846,0.680840,0.266530,0.680803,0.267285,0.498045,0.247099
			 ,0.498049,0.246295,0.558630,0.249656,0.558612,0.250452,0.254695,0.273220,0.254341,0.271132,0.315911,0.260823,0.316182,0.263667
			 ,0.619104,0.260703,0.619440,0.257624,0.680803,0.267285,0.680425,0.269655,-0.000354,0.301951,-0.000492,0.302137,0.064358,0.298784
			 ,0.064631,0.298844,0.869624,0.296767,0.869802,0.296542,0.934488,0.301461,0.934465,0.301324,0.497920,0.250950,0.498045,0.247099
			 ,0.558612,0.250452,0.558366,0.254057,0.254341,0.271132,0.254302,0.270387,0.315879,0.260053,0.315911,0.260823,0.498045,0.247099
			 ,0.437547,0.247775,0.437537,0.246974,0.498049,0.246295,0.377070,0.256135,0.316182,0.263667,0.315911,0.260823,0.376918,0.252694
			 ,0.377070,0.256135,0.376918,0.252694,0.437547,0.247775,0.437561,0.251577,0.742871,0.278104,0.680803,0.267285,0.680840,0.266530
			 ,0.742911,0.277376,0.869624,0.296767,0.805587,0.289234,0.805885,0.288413,0.869802,0.296542,0.128964,0.292198,0.128603,0.291612
			 ,0.191925,0.281952,0.192312,0.283246,0.254695,0.273220,0.192312,0.283246,0.191925,0.281952,0.254341,0.271132,0.742504,0.279681
			 ,0.742871,0.278104,0.805885,0.288413,0.805587,0.289234,0.619064,0.272037,0.619104,0.260703,0.680425,0.269655,0.680623,0.280796
			 ,0.254338,0.286221,0.315644,0.277181,0.315833,0.278449,0.254571,0.287182,0.254338,0.286221,0.254571,0.287182,0.192439,0.296348
			 ,0.192198,0.295709,0.870281,0.307324,0.806167,0.299953,0.805587,0.289234,0.869624,0.296767,0.128966,0.302854,0.064891,0.309357
			 ,0.064631,0.298844,0.128964,0.292198,0.128966,0.302854,0.128964,0.292198,0.192312,0.283246,0.192066,0.294095,0.497467,0.262493
			 ,0.436987,0.263107,0.437561,0.251577,0.497920,0.250950,1.000128,0.312397,0.935086,0.311784,0.934465,0.301324,0.999646,0.301951
			 ,0.000128,0.312397,-0.000354,0.301951,0.064631,0.298844,0.064891,0.309357,0.497467,0.262493,0.497920,0.250950,0.558366,0.254057
			 ,0.558099,0.265534,0.742504,0.279681,0.680425,0.269655,0.680803,0.267285,0.742871,0.278104,0.999646,0.301951,0.934465,0.301324
			 ,0.934488,0.301461,0.999508,0.302137,0.376452,0.267567,0.315609,0.274937,0.316182,0.263667,0.377070,0.256135,0.144614,0.727716
			 ,0.209677,0.719628,0.209557,0.722231,0.144500,0.730396,0.144614,0.727716,0.144500,0.730396,0.075309,0.736457,0.075392,0.733720
			 ,0.742822,0.292335,0.680488,0.282847,0.680623,0.280796,0.742922,0.290606,0.376452,0.267567,0.377070,0.256135,0.437561,0.251577
			 ,0.436987,0.263107,0.742822,0.292335,0.806121,0.301375,0.805914,0.301821,0.742581,0.293088,0.742822,0.292335,0.742581,0.293088
			 ,0.680251,0.283923,0.680488,0.282847,0.376430,0.270052,0.315644,0.277181,0.315609,0.274937,0.376452,0.267567,0.376430,0.270052
			 ,0.436913,0.265739,0.436950,0.267397,0.376551,0.271563,0.376430,0.270052,0.376551,0.271563,0.315833,0.278449,0.315644,0.277181
			 ,0.870298,0.308503,0.935164,0.312817,0.935122,0.312874,0.870160,0.308708,0.870298,0.308503,0.870160,0.308708,0.805914,0.301821
			 ,0.806121,0.301375,0.497349,0.265146,0.497467,0.262493,0.558099,0.265534,0.557956,0.268086,0.497349,0.265146,0.557956,0.268086
			 ,0.557823,0.269664,0.497298,0.266823,0.497349,0.265146,0.497298,0.266823,0.436950,0.267397,0.436913,0.265739,0.254249,0.284285
			 ,0.254695,0.273220,0.316182,0.263667,0.315609,0.274937,0.619064,0.272037,0.558099,0.265534,0.558366,0.254057,0.619104,0.260703
			 ,0.129122,0.304180,0.192198,0.295709,0.192439,0.296348,0.129337,0.304531,0.129122,0.304180,0.129337,0.304531,0.065196,0.310607
			 ,0.065045,0.310470,0.254249,0.284285,0.192066,0.294095,0.192312,0.283246,0.254695,0.273220,0.742922,0.290606,0.742504,0.279681
			 ,0.805587,0.289234,0.806167,0.299953,0.000256,0.313410,0.065045,0.310470,0.065196,0.310607,0.000316,0.313448,1.000256,0.313410
			 ,1.000316,0.313448,0.935122,0.312874,0.935164,0.312817,0.618913,0.274375,0.680488,0.282847,0.680251,0.283923,0.618714,0.275739
			 ,0.618913,0.274375,0.618714,0.275739,0.557823,0.269664,0.557956,0.268086,0.858363,0.735933,0.790225,0.728869,0.789631,0.727692
			 ,0.857909,0.734562,0.858363,0.735933,0.857909,0.734562,0.929721,0.738719,0.929912,0.740208,0.858363,0.735933,0.929912,0.740208
			 ,0.930064,0.743743,0.858731,0.739351,0.858363,0.735933,0.858731,0.739351,0.790708,0.732093,0.790225,0.728869,0.003082,0.736528
			 ,0.075392,0.733720,0.075309,0.736457,0.003053,0.739291,1.003082,0.736528,1.003053,0.739291,0.929721,0.738719,0.929688,0.735961
			 ,0.606489,0.699262,0.550503,0.693257,0.557733,0.272476,0.618575,0.278481,0.606489,0.699262,0.664465,0.707349,0.664571,0.709835
			 ,0.606571,0.701670,0.606489,0.699262,0.606571,0.701670,0.550555,0.695609,0.550503,0.693257,0.271111,0.710570,0.209677,0.719628
			 ,0.192615,0.298847,0.254742,0.289789,0.271111,0.710570,0.329430,0.701940,0.329346,0.704374,0.271003,0.713087,0.271111,0.710570
			 ,0.271003,0.713087,0.209557,0.722231,0.209677,0.719628,0.725106,0.716407,0.789517,0.725038,0.789631,0.727692,0.725226,0.718979
			 ,0.725106,0.716407,0.725226,0.718979,0.664571,0.709835,0.664465,0.707349,0.144614,0.727716,0.075392,0.733720,0.065298,0.312939
			 ,0.129489,0.306935,0.385783,0.695134,0.440856,0.691017,0.440838,0.693347,0.385730,0.697504,0.385783,0.695134,0.385730,0.697504
			 ,0.329346,0.704374,0.329430,0.701940,0.618575,0.278481,0.557733,0.272476,0.557823,0.269664,0.618714,0.275739,0.870051,0.311062
			 ,0.870160,0.308708,0.935122,0.312874,0.935080,0.315180,0.857823,0.731843,0.929688,0.735961,0.929721,0.738719,0.857909,0.734562
			 ,0.857823,0.731843,0.857909,0.734562,0.789631,0.727692,0.789517,0.725038,0.003082,0.736528,0.000350,0.315747,0.065298,0.312939
			 ,0.075392,0.733720,0.376647,0.274353,0.376551,0.271563,0.436950,0.267397,0.436986,0.270236,0.495520,0.690450,0.550503,0.693257
			 ,0.550555,0.695609,0.495537,0.692775,0.495520,0.690450,0.495537,0.692775,0.440838,0.693347,0.440856,0.691017,0.725704,0.744832
			 ,0.790080,0.754119,0.790355,0.755540,0.725990,0.746118,0.725704,0.744832,0.725990,0.746118,0.665255,0.736230,0.665003,0.735085
			 ,0.495612,0.692966,0.440730,0.693554,0.440838,0.693347,0.495537,0.692775,0.495612,0.692966,0.495537,0.692775,0.550555,0.695609
			 ,0.550806,0.695880,0.495612,0.692966,0.550806,0.695880,0.551016,0.698198,0.495675,0.695204,0.495612,0.692966,0.495675,0.695204
			 ,0.440643,0.695808,0.440730,0.693554,0.143920,0.731649,0.074897,0.737882,0.075309,0.736457,0.144500,0.730396,0.143920,0.731649
			 ,0.144500,0.730396,0.209557,0.722231,0.208939,0.723254,0.143920,0.731649,0.208939,0.723254,0.208434,0.726324,0.143446,0.734949
			 ,0.143920,0.731649,0.143446,0.734949,0.074560,0.741353,0.074897,0.737882,1.002921,0.740796,0.929912,0.740208,0.929721,0.738719
			 ,1.003053,0.739291,0.002921,0.740796,0.003053,0.739291,0.075309,0.736457,0.074897,0.737882,0.002921,0.740796,0.074897,0.737882
			 ,0.074560,0.741353,0.002812,0.744347,1.002921,0.740796,1.002812,0.744347,0.930064,0.743743,0.929912,0.740208,0.606985,0.702113
			 ,0.550806,0.695880,0.550555,0.695609,0.606571,0.701670,0.606985,0.702113,0.606571,0.701670,0.664571,0.709835,0.665113,0.710508
			 ,0.606985,0.702113,0.665113,0.710508,0.665558,0.713228,0.607327,0.704602,0.606985,0.702113,0.607327,0.704602,0.551016,0.698198
			 ,0.550806,0.695880,0.270440,0.713852,0.208939,0.723254,0.209557,0.722231,0.271003,0.713087,0.270440,0.713852,0.271003,0.713087
			 ,0.329346,0.704374,0.328905,0.704893,0.270440,0.713852,0.328905,0.704893,0.328545,0.707458,0.269980,0.716663,0.270440,0.713852
			 ,0.269980,0.716663,0.208434,0.726324,0.208939,0.723254,0.725841,0.719910,0.665113,0.710508,0.664571,0.709835,0.725226,0.718979
			 ,0.725841,0.719910,0.725226,0.718979,0.789631,0.727692,0.790225,0.728869,0.725841,0.719910,0.790225,0.728869,0.790708,0.732093
			 ,0.726344,0.722888,0.725841,0.719910,0.726344,0.722888,0.665558,0.713228,0.665113,0.710508,0.385446,0.697829,0.328905,0.704893
			 ,0.329346,0.704374,0.385730,0.697504,0.385446,0.697829,0.385730,0.697504,0.440838,0.693347,0.440730,0.693554,0.385446,0.697829
			 ,0.440730,0.693554,0.440643,0.695808,0.385214,0.700200,0.385446,0.697829,0.385214,0.700200,0.328545,0.707458,0.328905,0.704893
			 ,0.385532,0.721941,0.440780,0.717510,0.440730,0.718399,0.385400,0.722894,0.385532,0.721941,0.385400,0.722894,0.328815,0.730324
			 ,0.329020,0.729264,0.858238,0.761442,0.929837,0.765873,0.929924,0.767466,0.858447,0.762970,0.858238,0.761442,0.858447,0.762970
			 ,0.790355,0.755540,0.790080,0.754119,0.495621,0.716901,0.550774,0.719922,0.550892,0.720845,0.495656,0.717780,0.495621,0.716901
			 ,0.495656,0.717780,0.440730,0.718399,0.440780,0.717510,0.144033,0.757001,0.209073,0.748298,0.208787,0.749635,0.143764,0.758464
			 ,0.144033,0.757001,0.143764,0.758464,0.074770,0.765019,0.074961,0.763462,0.129122,0.304180,0.065045,0.310470,0.064891,0.309357
			 ,0.128966,0.302854,0.002916,0.766483,0.074961,0.763462,0.074770,0.765019,0.002855,0.768084,1.002916,0.766483,1.002855,0.768084
			 ,0.929924,0.767466,0.929837,0.765873,0.128964,0.292198,0.064631,0.298844,0.064358,0.298784,0.128603,0.291612,0.618913,0.274375
			 ,0.619064,0.272037,0.680623,0.280796,0.680488,0.282847,0.606912,0.726382,0.665003,0.735085,0.665255,0.736230,0.607105,0.727400
			 ,0.606912,0.726382,0.607105,0.727400,0.550892,0.720845,0.550774,0.719922,0.376918,0.252694,0.376895,0.251904,0.437537,0.246974
			 ,0.437547,0.247775,0.870298,0.308503,0.870281,0.307324,0.935086,0.311784,0.935164,0.312817,0.270573,0.738551,0.329020,0.729264
			 ,0.328815,0.730324,0.270312,0.739746,0.270573,0.738551,0.270312,0.739746,0.208787,0.749635,0.209073,0.748298,0.969274,1.115145
			 ,0.889221,1.114671,0.887464,1.198965,0.970186,1.199439,0.608306,0.727332,0.551622,0.720212,0.550892,0.720845,0.607105,0.727400
			 ,1.002916,0.766483,0.929837,0.765873,0.930011,0.752640,1.002828,0.753250,0.727757,0.747663,0.725990,0.746118,0.790355,0.755540
			 ,0.792051,0.757897,0.858624,0.748210,0.858731,0.739351,0.930064,0.743743,0.930011,0.752640,0.143566,0.743768,0.074639,0.750229
			 ,0.074560,0.741353,0.143446,0.734949,0.384568,0.722438,0.327534,0.730508,0.328815,0.730324,0.385400,0.722894,0.384568,0.722438
			 ,0.385400,0.722894,0.440730,0.718399,0.440411,0.717555,0.606912,0.726382,0.607243,0.713150,0.665444,0.721853,0.665003,0.735085
			 ,0.002916,0.766483,0.002828,0.753250,0.074639,0.750229,0.074961,0.763462,0.726210,0.731600,0.665444,0.721853,0.665558,0.713228
			 ,0.726344,0.722888,0.495621,0.716901,0.440780,0.717510,0.440676,0.704278,0.495668,0.703668,0.495668,0.703668,0.440676,0.704278
			 ,0.440643,0.695808,0.495675,0.695204,0.144033,0.757001,0.074961,0.763462,0.074639,0.750229,0.143566,0.743768,0.270573,0.738551
			 ,0.209073,0.748298,0.208567,0.735066,0.270105,0.725319,0.606912,0.726382,0.550774,0.719922,0.550969,0.706689,0.607243,0.713150
			 ,0.142115,0.761073,0.073609,0.768193,0.074770,0.765019,0.143764,0.758464,0.725704,0.744832,0.726210,0.731600,0.790575,0.740886
			 ,0.790080,0.754119,0.144033,0.757001,0.143566,0.743768,0.208567,0.735066,0.209073,0.748298,0.155716,0.868709,0.155881,0.867447
			 ,0.083521,0.872471,0.084862,0.873691,0.220016,0.862044,0.221400,0.860679,0.155881,0.867447,0.155716,0.868709,0.724219,0.859048
			 ,0.727944,0.750279,0.792228,0.760648,0.788591,0.869417,0.145375,0.872635,0.141940,0.763866,0.206826,0.754149,0.210556,0.862918
			 ,0.210556,0.862918,0.271964,0.852035,0.274609,0.936329,0.213461,0.947212,0.003096,0.883222,0.002447,0.774453,0.073485,0.771080
			 ,0.075850,0.879849,0.859872,0.768825,0.859739,0.765967,0.930467,0.770850,0.930521,0.773772,0.608435,0.729679,0.608306,0.727332
			 ,0.666821,0.736922,0.666988,0.739396,0.145375,0.872635,0.075850,0.879849,0.073485,0.771080,0.141940,0.763866,0.495869,0.716883
			 ,0.440411,0.717555,0.440730,0.718399,0.495656,0.717780,0.815561,1.031052,0.812210,1.111226,0.889221,1.114671,0.890794,1.034498
			 ,0.681200,1.018136,0.621629,1.010556,0.618361,1.090730,0.677277,1.098309,0.115747,1.027599,0.044443,1.032623,0.047281,1.112796
			 ,0.119641,1.107772,0.245329,1.093425,0.185161,1.101005,0.189366,1.185298,0.248969,1.177719,0.565310,1.003789,0.562929,1.083962
			 ,0.618361,1.090730,0.621629,1.010556,0.458485,0.996416,0.405995,0.996890,0.406723,1.077063,0.458161,1.076589,0.681200,1.018136
			 ,0.677277,1.098309,0.741611,1.105531,0.745662,1.025358,0.026216,-0.472687,-0.053658,-0.525153,-0.027332,-0.551478,0.026216,-0.472687
			 ,0.045597,-0.379110,0.008367,-0.379110,0.044065,-0.566265,0.078681,-0.552561,0.026216,-0.472687,0.026216,-0.472687,0.078681,-0.552561
			 ,0.105007,-0.526235,-0.067362,-0.490537,-0.053658,-0.525153,0.026216,-0.472687,0.026216,-0.472687,0.119794,-0.492068,0.119794,-0.454838
			 ,0.079764,-0.393897,0.045597,-0.379110,0.026216,-0.472687,0.026216,-0.472687,0.006835,-0.566265,0.044065,-0.566265,-0.052575,-0.419139
			 ,-0.067362,-0.453307,0.026216,-0.472687,0.026216,-0.472687,-0.067362,-0.453307,-0.067362,-0.490537,0.119794,-0.454838,0.106090,-0.420222
			 ,0.026216,-0.472687,-0.027332,-0.551478,0.006835,-0.566265,0.026216,-0.472687,0.026216,-0.472687,0.106090,-0.420222,0.079764,-0.393897
			 ,0.008367,-0.379110,-0.026249,-0.392814,0.026216,-0.472687,0.026216,-0.472687,-0.026249,-0.392814,-0.052575,-0.419139,0.105007,-0.526235
			 ,0.119794,-0.492068,0.026216,-0.472687,0.115747,1.027599,0.119641,1.107772,0.185161,1.101005,0.181170,1.020831,0.565310,1.003789
			 ,0.511330,0.998765,0.509960,1.078938,0.562929,1.083962,0.353035,1.000335,0.354790,1.080508,0.406723,1.077063,0.405995,0.996890
			 ,-0.031539,1.034972,-0.030726,1.115145,0.047281,1.112796,0.044443,1.032623,0.458485,0.996416,0.458161,1.076589,0.509960,1.078938
			 ,0.511330,0.998765,0.390963,0.841275,0.391030,0.840183,0.337533,0.845878,0.338487,0.846875,0.441933,0.837847,0.442962,0.836737
			 ,0.391030,0.840183,0.390963,0.841275,0.968461,1.034972,0.890794,1.034498,0.889221,1.114671,0.969274,1.115145,0.815561,1.031052
			 ,0.745662,1.025358,0.741611,1.105531,0.812210,1.111226,0.271964,0.852035,0.210556,0.862918,0.206826,0.754149,0.268514,0.743266
			 ,0.209844,0.864217,0.210556,0.862918,0.213461,0.947212,0.212764,0.948511,0.386307,0.833489,0.384481,0.724720,0.440379,0.719773
			 ,0.441142,0.828542,0.386307,0.833489,0.330149,0.841666,0.327399,0.732897,0.384481,0.724720,0.047281,1.112796,-0.030726,1.115145
			 ,-0.029814,1.199439,0.050413,1.197090,0.857031,0.877594,0.859872,0.768825,0.930521,0.773772,0.929236,0.882541,0.599269,0.844750
			 ,0.599169,0.843637,0.546200,0.838612,0.547277,0.839768,1.003096,0.883222,0.929236,0.882541,0.930521,0.773772,1.002447,0.774453
			 ,0.857031,0.877594,0.788591,0.869417,0.792228,0.760648,0.859872,0.768825,0.724219,0.859048,0.663740,0.848165,0.666988,0.739396
			 ,0.727944,0.750279,0.498439,0.157502,0.560171,0.161359,0.560113,0.165294,0.498424,0.161446,-0.001238,0.139557,-0.001247,0.137082
			 ,0.061407,0.133253,0.061440,0.135701,0.998762,0.139557,0.936046,0.138779,0.936064,0.136309,0.998753,0.137082,0.268514,0.743266
			 ,0.206826,0.754149,0.207013,0.751483,0.268686,0.740742,0.858624,0.748210,0.790575,0.740886,0.790708,0.732093,0.858731,0.739351
			 ,0.251105,0.185144,0.251224,0.189026,0.188840,0.201443,0.188723,0.197588,0.495621,0.716901,0.495668,0.703668,0.550969,0.706689
			 ,0.550774,0.719922,0.607243,0.713150,0.607327,0.704602,0.665558,0.713228,0.665444,0.721853,0.385532,0.721941,0.385284,0.708709
			 ,0.440676,0.704278,0.440780,0.717510,0.873406,0.133122,0.873446,0.130693,0.936064,0.136309,0.936046,0.138779,0.373519,0.082690
			 ,0.373478,0.080624,0.436078,0.075008,0.436095,0.077034,0.871907,0.214369,0.935401,0.220026,0.935368,0.223831,0.871831,0.218186
			 ,0.123993,0.127452,0.123940,0.125064,0.186336,0.114033,0.186400,0.116341,0.248724,0.103897,0.248658,0.101678,0.311010,0.089907
			 ,0.311068,0.092040,0.999071,0.220805,0.999086,0.224607,0.935368,0.223831,0.935401,0.220026,0.498738,0.076255,0.498747,0.074235
			 ,0.561382,0.078064,0.561349,0.080112,0.374979,0.163938,0.436721,0.158281,0.436752,0.162223,0.375051,0.167867,0.123993,0.127452
			 ,0.061440,0.135701,0.061407,0.133253,0.123940,0.125064,0.746150,0.193163,0.808806,0.205019,0.808700,0.208858,0.746030,0.197027
			 ,0.745974,0.198292,0.683750,0.185959,0.683803,0.184611,0.746030,0.197027,0.745974,0.198292,0.746030,0.197027,0.808700,0.208858
			 ,0.808650,0.210043,0.498376,0.166498,0.559922,0.169888,0.559894,0.171229,0.498369,0.167859,0.621559,0.177138,0.621514,0.178438
			 ,0.559894,0.171229,0.559922,0.169888,0.128603,0.291612,0.064358,0.298784,0.064337,0.298107,0.128570,0.290918,0.745974,0.198292
			 ,0.808650,0.210043,0.808349,0.208263,0.745634,0.197842,0.621823,0.174947,0.560086,0.166771,0.560113,0.165294,0.621867,0.173525
			 ,0.621823,0.174947,0.621867,0.173525,0.683803,0.184611,0.683750,0.185959,-0.000906,0.225687,0.062742,0.221865,0.062916,0.218748
			 ,-0.000862,0.222137,0.621823,0.174947,0.621559,0.177138,0.559922,0.169888,0.560086,0.166771,0.621823,0.174947,0.683750,0.185959
			 ,0.683425,0.186904,0.621559,0.177138,0.498376,0.166498,0.498369,0.167859,0.436868,0.168539,0.436853,0.167183,0.621559,0.177138
			 ,0.683425,0.186904,0.683370,0.188149,0.621514,0.178438,0.251280,0.190344,0.251616,0.190794,0.189226,0.201731,0.188895,0.202677
			 ,0.498418,0.162949,0.436766,0.163721,0.436752,0.162223,0.498424,0.161446,0.498418,0.162949,0.498424,0.161446,0.560113,0.165294
			 ,0.560086,0.166771,0.999094,0.225687,0.999138,0.222137,0.935259,0.221453,0.935353,0.224915,0.871796,0.219309,0.808650,0.210043
			 ,0.808700,0.208858,0.871831,0.218186,0.871796,0.219309,0.871831,0.218186,0.935368,0.223831,0.935353,0.224915,0.871796,0.219309
			 ,0.935353,0.224915,0.935259,0.221453,0.871580,0.216481,0.999094,0.225687,0.935353,0.224915,0.935368,0.223831,0.999086,0.224607
			 ,-0.000906,0.225687,-0.000914,0.224607,0.062713,0.220759,0.062742,0.221865,0.871580,0.216481,0.935259,0.221453,0.935244,0.222502
			 ,0.871543,0.217558,0.375085,0.169327,0.313287,0.178593,0.313239,0.177196,0.375051,0.167867,0.375085,0.169327,0.375051,0.167867
			 ,0.436752,0.162223,0.436766,0.163721,0.251616,0.190794,0.251674,0.192017,0.189282,0.202892,0.189226,0.201731,0.126060,0.213689
			 ,0.126336,0.211497,0.062916,0.218748,0.062742,0.221865,0.254338,0.286221,0.192198,0.295709,0.192066,0.294095,0.254249,0.284285
			 ,1.000256,0.313410,0.935164,0.312817,0.935086,0.311784,1.000128,0.312397,0.254338,0.286221,0.254249,0.284285,0.315609,0.274937
			 ,0.315644,0.277181,0.251280,0.190344,0.188895,0.202677,0.188840,0.201443,0.251224,0.189026,0.251280,0.190344,0.251224,0.189026
			 ,0.313239,0.177196,0.313287,0.178593,0.375085,0.169327,0.436766,0.163721,0.436853,0.167183,0.375289,0.172155,0.126060,0.213689
			 ,0.062742,0.221865,0.062713,0.220759,0.126014,0.212529,0.126060,0.213689,0.126014,0.212529,0.188840,0.201443,0.188895,0.202677
			 ,0.251280,0.190344,0.313287,0.178593,0.313578,0.180373,0.251616,0.190794,0.869802,0.296542,0.805885,0.288413,0.805920,0.287711
			 ,0.869828,0.295860,0.869802,0.296542,0.869828,0.295860,0.934499,0.300790,0.934488,0.301461,0.999508,0.302137,0.934488,0.301461
			 ,0.934499,0.300790,0.999503,0.301469,-0.000492,0.302137,-0.000497,0.301469,0.064337,0.298107,0.064358,0.298784,0.871462,0.221124
			 ,0.871543,0.217558,0.935244,0.222502,0.935208,0.226059,0.745634,0.197842,0.745576,0.199025,0.683370,0.188149,0.683425,0.186904
			 ,0.871462,0.221124,0.808185,0.212968,0.808298,0.209387,0.871543,0.217558,0.742404,0.295626,0.680081,0.286568,0.680251,0.283923
			 ,0.742581,0.293088,-0.000862,0.222137,0.062916,0.218748,0.062946,0.219812,-0.000854,0.223182,0.254224,0.268176,0.251800,0.195631
			 ,0.313736,0.185288,0.315812,0.257833,0.143566,0.743768,0.143446,0.734949,0.208434,0.726324,0.208567,0.735066,0.000256,0.313410
			 ,0.000128,0.312397,0.064891,0.309357,0.065045,0.310470,0.498418,0.162949,0.560086,0.166771,0.559922,0.169888,0.498376,0.166498
			 ,0.745448,0.202626,0.745576,0.199025,0.808298,0.209387,0.808185,0.212968,0.375400,0.177133,0.313736,0.185288,0.313627,0.181654
			 ,0.375324,0.173483,0.607243,0.713150,0.550969,0.706689,0.551016,0.698198,0.607327,0.704602,0.128603,0.291612,0.128570,0.290918
			 ,0.191887,0.281233,0.191925,0.281952,0.376430,0.270052,0.376452,0.267567,0.436987,0.263107,0.436913,0.265739,0.144614,0.727716
			 ,0.129489,0.306935,0.192615,0.298847,0.209677,0.719628,0.727757,0.747663,0.666821,0.736922,0.665255,0.736230,0.725990,0.746118
			 ,0.725106,0.716407,0.742404,0.295626,0.805758,0.304257,0.789517,0.725038,0.129489,0.306935,0.129337,0.304531,0.192439,0.296348
			 ,0.192615,0.298847,0.742404,0.295626,0.742581,0.293088,0.805914,0.301821,0.805758,0.304257,0.376647,0.274353,0.315976,0.281159
			 ,0.315833,0.278449,0.376551,0.271563,0.271111,0.710570,0.254742,0.289789,0.315976,0.281159,0.329430,0.701940,0.384481,0.724720
			 ,0.384568,0.722438,0.440411,0.717555,0.440379,0.719773,0.142115,0.761073,0.143764,0.758464,0.208787,0.749635,0.207013,0.751483
			 ,1.002447,0.774453,0.930521,0.773772,0.930467,0.770850,1.002488,0.771522,0.384481,0.724720,0.327399,0.732897,0.327534,0.730508
			 ,0.384568,0.722438,0.385783,0.695134,0.376647,0.274353,0.436986,0.270236,0.440856,0.691017,0.605990,0.838448,0.550264,0.831234
			 ,0.551702,0.722465,0.608435,0.729679,0.268514,0.743266,0.268686,0.740742,0.327534,0.730508,0.327399,0.732897,0.254742,0.289789
			 ,0.254571,0.287182,0.315833,0.278449,0.315976,0.281159,0.606489,0.699262,0.618575,0.278481,0.680081,0.286568,0.664465,0.707349
			 ,0.385783,0.695134,0.329430,0.701940,0.315976,0.281159,0.376647,0.274353,1.002828,0.753250,0.930011,0.752640,0.930064,0.743743
			 ,1.002812,0.744347,0.870281,0.307324,0.869624,0.296767,0.934465,0.301324,0.935086,0.311784,0.619440,0.257624,0.558612,0.250452
			 ,0.558630,0.249656,0.619470,0.256846,0.271964,0.852035,0.268514,0.743266,0.327399,0.732897,0.330149,0.841666,0.857823,0.731843
			 ,0.870051,0.311062,0.935080,0.315180,0.929688,0.735961,0.268686,0.740742,0.270312,0.739746,0.328815,0.730324,0.327534,0.730508
			 ,0.254742,0.289789,0.192615,0.298847,0.192439,0.296348,0.254571,0.287182,0.497269,0.269669,0.497298,0.266823,0.557823,0.269664
			 ,0.557733,0.272476,0.725106,0.716407,0.664465,0.707349,0.680081,0.286568,0.742404,0.295626,0.497269,0.269669,0.436986,0.270236
			 ,0.436950,0.267397,0.497298,0.266823,0.859872,0.768825,0.792228,0.760648,0.792051,0.757897,0.859739,0.765967,0.727944,0.750279
			 ,0.727757,0.747663,0.792051,0.757897,0.792228,0.760648,0.870051,0.311062,0.805758,0.304257,0.805914,0.301821,0.870160,0.308708
			 ,0.495520,0.690450,0.497269,0.269669,0.557733,0.272476,0.550503,0.693257,0.129122,0.304180,0.128966,0.302854,0.192066,0.294095
			 ,0.192198,0.295709,0.870298,0.308503,0.806121,0.301375,0.806167,0.299953,0.870281,0.307324,0.270105,0.725319,0.208567,0.735066
			 ,0.208434,0.726324,0.269980,0.716663,0.270105,0.725319,0.269980,0.716663,0.328545,0.707458,0.328647,0.716032,0.254341,0.271132
			 ,0.191925,0.281952,0.191887,0.281233,0.254302,0.270387,0.497349,0.265146,0.436913,0.265739,0.436987,0.263107,0.497467,0.262493
			 ,0.726210,0.731600,0.726344,0.722888,0.790708,0.732093,0.790575,0.740886,0.742922,0.290606,0.680623,0.280796,0.680425,0.269655
			 ,0.742504,0.279681,0.742822,0.292335,0.742922,0.290606,0.806167,0.299953,0.806121,0.301375,0.619104,0.260703,0.558366,0.254057
			 ,0.558612,0.250452,0.619440,0.257624,0.618913,0.274375,0.557956,0.268086,0.558099,0.265534,0.619064,0.272037,0.653629,0.851415
			 ,0.654601,0.850404,0.599169,0.843637,0.599269,0.844750,0.929236,0.882541,1.003096,0.883222,1.003623,0.967516,0.928193,0.966835
			 ,0.126487,0.216178,0.126383,0.212603,0.189282,0.202892,0.189407,0.206486,0.125917,0.208699,0.188723,0.197588,0.188840,0.201443
			 ,0.126014,0.212529,0.608435,0.729679,0.551702,0.722465,0.551622,0.720212,0.608306,0.727332,0.858238,0.761442,0.790080,0.754119
			 ,0.790575,0.740886,0.858624,0.748210,0.498059,0.244064,0.437517,0.244743,0.436900,0.172198,0.498353,0.171519,0.376849,0.249677
			 ,0.375400,0.177133,0.436900,0.172198,0.437517,0.244743,0.498059,0.244064,0.498353,0.171519,0.559832,0.174883,0.558667,0.247428
			 ,0.248724,0.103897,0.186400,0.116341,0.186336,0.114033,0.248658,0.101678,0.141940,0.763866,0.142115,0.761073,0.207013,0.751483
			 ,0.206826,0.754149,0.748541,0.111916,0.686222,0.099472,0.686286,0.097285,0.748607,0.109639,0.857823,0.731843,0.789517,0.725038
			 ,0.805758,0.304257,0.870051,0.311062,0.869879,0.293669,0.805991,0.285513,0.808185,0.212968,0.871462,0.221124,0.002488,0.771522
			 ,0.002855,0.768084,0.074770,0.765019,0.073609,0.768193,0.859739,0.765967,0.792051,0.757897,0.790355,0.755540,0.858447,0.762970
			 ,0.270573,0.738551,0.270105,0.725319,0.328647,0.716032,0.329020,0.729264,0.677277,1.098309,0.618361,1.090730,0.614996,1.175024
			 ,0.673172,1.182603,0.858238,0.761442,0.858624,0.748210,0.930011,0.752640,0.929837,0.765873,0.495894,0.719092,0.495869,0.716883
			 ,0.551622,0.720212,0.551702,0.722465,0.608306,0.727332,0.607105,0.727400,0.665255,0.736230,0.666821,0.736922,0.385284,0.708709
			 ,0.328647,0.716032,0.328545,0.707458,0.385214,0.700200,0.495520,0.690450,0.440856,0.691017,0.436986,0.270236,0.497269,0.269669
			 ,0.727944,0.750279,0.666988,0.739396,0.666821,0.736922,0.727757,0.747663,0.495668,0.703668,0.495675,0.695204,0.551016,0.698198
			 ,0.550969,0.706689,0.869879,0.293669,0.871462,0.221124,0.935208,0.226059,0.934521,0.298603,0.376849,0.249677,0.315812,0.257833
			 ,0.313736,0.185288,0.375400,0.177133,-0.000837,0.226738,-0.000854,0.223182,0.062946,0.219812,0.063012,0.223373,0.745448,0.202626
			 ,0.683248,0.191771,0.683370,0.188149,0.745576,0.199025,0.495894,0.719092,0.440379,0.719773,0.440411,0.717555,0.495869,0.716883
			 ,1.000350,0.315747,0.935080,0.315180,0.935122,0.312874,1.000316,0.313448,0.999163,0.226738,0.935208,0.226059,0.935244,0.222502
			 ,0.999146,0.223182,0.495547,0.827861,0.495894,0.719092,0.551702,0.722465,0.550264,0.831234,0.128505,0.288723,0.126487,0.216178
			 ,0.189407,0.206486,0.191809,0.279031,0.254224,0.268176,0.191809,0.279031,0.189407,0.206486,0.251800,0.195631,0.002828,0.753250
			 ,0.002812,0.744347,0.074560,0.741353,0.074639,0.750229,0.725704,0.744832,0.665003,0.735085,0.665444,0.721853,0.726210,0.731600
			 ,0.621415,0.182079,0.621514,0.178438,0.683370,0.188149,0.683248,0.191771,0.605990,0.838448,0.608435,0.729679,0.666988,0.739396
			 ,0.663740,0.848165,0.000350,0.315747,0.000316,0.313448,0.065196,0.310607,0.065298,0.312939,0.268686,0.740742,0.207013,0.751483
			 ,0.208787,0.749635,0.270312,0.739746,0.618575,0.278481,0.618714,0.275739,0.680251,0.283923,0.680081,0.286568,0.385532,0.721941
			 ,0.329020,0.729264,0.328647,0.716032,0.385284,0.708709,0.873406,0.133122,0.810908,0.123772,0.810966,0.121411,0.873446,0.130693
			 ,0.748541,0.111916,0.748607,0.109639,0.810966,0.121411,0.810908,0.123772,0.385284,0.708709,0.385214,0.700200,0.440643,0.695808
			 ,0.440676,0.704278,0.859739,0.765967,0.858447,0.762970,0.929924,0.767466,0.930467,0.770850,0.002447,0.774453,0.002488,0.771522
			 ,0.073609,0.768193,0.073485,0.771080,0.129489,0.306935,0.065298,0.312939,0.065196,0.310607,0.129337,0.304531,1.002488,0.771522
			 ,0.930467,0.770850,0.929924,0.767466,1.002855,0.768084,0.126487,0.216178,0.063012,0.223373,0.062946,0.219812,0.126383,0.212603
			 ,0.373519,0.082690,0.311068,0.092040,0.311010,0.089907,0.373478,0.080624,0.141940,0.763866,0.073485,0.771080,0.073609,0.768193
			 ,0.142115,0.761073,1.003082,0.736528,0.929688,0.735961,0.935080,0.315180,1.000350,0.315747,-0.000929,0.220805,0.062651,0.216948
			 ,0.062713,0.220759,-0.000914,0.224607,0.495869,0.716883,0.495656,0.717780,0.550892,0.720845,0.551622,0.720212,0.498353,0.171519
			 ,0.498369,0.167859,0.559894,0.171229,0.559832,0.174883,0.621415,0.182079,0.559832,0.174883,0.559894,0.171229,0.621514,0.178438
			 ,0.495547,0.827861,0.441142,0.828542,0.440379,0.719773,0.495894,0.719092,0.375400,0.177133,0.375324,0.173483,0.436868,0.168539
			 ,0.436900,0.172198,0.251800,0.195631,0.189407,0.206486,0.189282,0.202892,0.251674,0.192017,0.251616,0.190794,0.313578,0.180373
			 ,0.313627,0.181654,0.251674,0.192017,0.745974,0.198292,0.745634,0.197842,0.683425,0.186904,0.683750,0.185959,0.498418,0.162949
			 ,0.498376,0.166498,0.436853,0.167183,0.436766,0.163721,0.498353,0.171519,0.436900,0.172198,0.436868,0.168539,0.498369,0.167859
			 ,0.745634,0.197842,0.808349,0.208263,0.808298,0.209387,0.745576,0.199025,0.375289,0.172155,0.436853,0.167183,0.436868,0.168539
			 ,0.375324,0.173483,0.375085,0.169327,0.375289,0.172155,0.313578,0.180373,0.313287,0.178593,0.999138,0.222137,0.999146,0.223182
			 ,0.935244,0.222502,0.935259,0.221453,0.871796,0.219309,0.871580,0.216481,0.808349,0.208263,0.808650,0.210043,0.126060,0.213689
			 ,0.188895,0.202677,0.189226,0.201731,0.126336,0.211497,0.251800,0.195631,0.251674,0.192017,0.313627,0.181654,0.313736,0.185288
			 ,0.126336,0.211497,0.189226,0.201731,0.189282,0.202892,0.126383,0.212603,0.871580,0.216481,0.871543,0.217558,0.808298,0.209387
			 ,0.808349,0.208263,0.848585,0.872185,0.848449,0.870900,0.777851,0.865205,0.779328,0.866584,0.353035,1.000335,0.298587,1.006030
			 ,0.301293,1.086203,0.354790,1.080508,0.241814,1.013252,0.181170,1.020831,0.185161,1.101005,0.245329,1.093425,0.241814,1.013252
			 ,0.245329,1.093425,0.301293,1.086203,0.298587,1.006030,0.923981,0.875612,0.925460,0.874346,0.848449,0.870900,0.848585,0.872185
			 ,0.547277,0.839768,0.546200,0.838612,0.544813,0.922906,0.545877,0.924062,0.077456,-0.144606,0.055118,-0.088182,-0.075076,-0.173700
			 ,-0.104170,-0.021169,-0.160594,-0.043507,-0.075076,-0.173700,-0.075076,-0.173700,-0.043485,-0.021169,-0.104170,-0.021169,-0.075076,-0.173700
			 ,0.010443,-0.303894,0.053353,-0.260983,0.012207,-0.045271,-0.043485,-0.021169,-0.075076,-0.173700,-0.075076,-0.173700,-0.106666,-0.326231
			 ,-0.045981,-0.326231,-0.075076,-0.173700,-0.227607,-0.142110,-0.227607,-0.202795,-0.075076,-0.173700,0.077456,-0.205290,0.077456,-0.144606
			 ,-0.045981,-0.326231,0.010443,-0.303894,-0.075076,-0.173700,-0.075076,-0.173700,-0.160594,-0.043507,-0.203504,-0.086417,-0.227607,-0.202795
			 ,-0.205269,-0.259218,-0.075076,-0.173700,-0.075076,-0.173700,0.055118,-0.088182,0.012207,-0.045271,-0.075076,-0.173700,-0.205269,-0.259218
			 ,-0.162358,-0.302129,0.053353,-0.260983,0.077456,-0.205290,-0.075076,-0.173700,-0.203504,-0.086417,-0.227607,-0.142110,-0.075076,-0.173700
			 ,-0.162358,-0.302129,-0.106666,-0.326231,-0.075076,-0.173700,0.621960,0.169608,0.623847,0.088360,0.686222,0.099472,0.683918,0.180719
			 ,0.621960,0.169608,0.560171,0.161359,0.561349,0.080112,0.623847,0.088360,0.498439,0.157502,0.436721,0.158281,0.436095,0.077034
			 ,0.498738,0.076255,-0.000929,0.220805,-0.001238,0.139557,0.061440,0.135701,0.062651,0.216948,0.999071,0.220805,0.935401,0.220026
			 ,0.936046,0.138779,0.998762,0.139557,0.871907,0.214369,0.873406,0.133122,0.936046,0.138779,0.935401,0.220026,0.374979,0.163938
			 ,0.373519,0.082690,0.436095,0.077034,0.436721,0.158281,0.125917,0.208699,0.123993,0.127452,0.186400,0.116341,0.188723,0.197588
			 ,0.251105,0.185144,0.248724,0.103897,0.311068,0.092040,0.313136,0.173287,0.498439,0.157502,0.498738,0.076255,0.561349,0.080112
			 ,0.560171,0.161359,0.125917,0.208699,0.062651,0.216948,0.061440,0.135701,0.123993,0.127452,0.251105,0.185144,0.188723,0.197588
			 ,0.186400,0.116341,0.248724,0.103897,0.746150,0.193163,0.683918,0.180719,0.686222,0.099472,0.748541,0.111916,0.871907,0.214369
			 ,0.808806,0.205019,0.810908,0.123772,0.873406,0.133122,0.746150,0.193163,0.748541,0.111916,0.810908,0.123772,0.808806,0.205019
			 ,0.374979,0.163938,0.313136,0.173287,0.311068,0.092040,0.373519,0.082690,0.088000,0.957984,0.086653,0.956765,0.006425,0.959114
			 ,0.006376,0.960423,0.285047,0.938566,0.285208,0.937393,0.225605,0.944973,0.224201,0.946338,0.341221,0.931169,0.340299,0.930171
			 ,0.285208,0.937393,0.285047,0.938566,0.494093,0.921624,0.494074,0.920557,0.443697,0.921031,0.442685,0.922141,0.545877,0.924062
			 ,0.544813,0.922906,0.494074,0.920557,0.494093,0.921624,0.709597,0.943481,0.709411,0.942277,0.651236,0.934698,0.650299,0.935709
			 ,0.775030,0.950878,0.773519,0.949499,0.709411,0.942277,0.709597,0.943481,1.006376,0.960423,1.006425,0.959114,0.923704,0.958640
			 ,0.922193,0.959906,0.271964,0.852035,0.330149,0.841666,0.332233,0.925960,0.274609,0.936329,0.441142,0.828542,0.495547,0.827861
			 ,0.495288,0.912155,0.441713,0.912836,0.741611,1.105531,0.677277,1.098309,0.673172,1.182603,0.737280,1.189825,0.509960,1.078938
			 ,0.458161,1.076589,0.457835,1.160883,0.508574,1.163232,0.338487,0.846875,0.337533,0.845878,0.340299,0.930171,0.341221,0.931169
			 ,0.003096,0.883222,0.075850,0.879849,0.077755,0.964143,0.003623,0.967516,0.301293,1.086203,0.245329,1.093425,0.248969,1.177719
			 ,0.304059,1.170497,0.458161,1.076589,0.406723,1.077063,0.407457,1.161357,0.457835,1.160883,0.663740,0.848165,0.724219,0.859048
			 ,0.721335,0.943342,0.661262,0.932459,0.724219,0.859048,0.788591,0.869417,0.785726,0.953711,0.721335,0.943342,0.495547,0.827861
			 ,0.550264,0.831234,0.549185,0.915528,0.495288,0.912155,0.440424,0.829892,0.441142,0.828542,0.441713,0.912836,0.441008,0.914186
			 ,0.779328,0.866584,0.777851,0.865205,0.773519,0.949499,0.775030,0.950878,0.662800,0.849242,0.663740,0.848165,0.661262,0.932459
			 ,0.660320,0.933536,0.928178,0.883567,0.929236,0.882541,0.928193,0.966835,0.927108,0.967861,0.084862,0.873691,0.083521,0.872471
			 ,0.086653,0.956765,0.088000,0.957984,0.145375,0.872635,0.145519,0.873746,0.076930,0.880852,0.075850,0.879849,0.210556,0.862918
			 ,0.209844,0.864217,0.145519,0.873746,0.145375,0.872635,0.386307,0.833489,0.386378,0.834777,0.331039,0.842787,0.330149,0.841666
			 ,0.441142,0.828542,0.440424,0.829892,0.386378,0.834777,0.386307,0.833489,1.028922,-0.979443,1.028921,-1.102991,1.126351,-1.102991
			 ,1.126351,-0.979443,0.605990,0.838448,0.605889,0.839713,0.550958,0.832606,0.550264,0.831234,0.663740,0.848165,0.662800,0.849242
			 ,0.605889,0.839713,0.605990,0.838448,0.857031,0.877594,0.856915,0.878682,0.789352,0.870672,0.788591,0.869417,0.929236,0.882541
			 ,0.928178,0.883567,0.856915,0.878682,0.857031,0.877594,0.550264,0.831234,0.550958,0.832606,0.549865,0.916900,0.549185,0.915528
			 ,0.077755,0.964143,0.078862,0.965146,0.003657,0.968578,0.003623,0.967516,0.274609,0.936329,0.274760,0.937533,0.212764,0.948511
			 ,0.213461,0.947212,0.332233,0.925960,0.333122,0.927080,0.274760,0.937533,0.274609,0.936329,0.495288,0.912155,0.495270,0.913468
			 ,0.441008,0.914186,0.441713,0.912836,0.549185,0.915528,0.549865,0.916900,0.495270,0.913468,0.495288,0.912155,0.721335,0.943342
			 ,0.721169,0.944514,0.660320,0.933536,0.661262,0.932459,0.785726,0.953711,0.786475,0.954966,0.721169,0.944514,0.721335,0.943342
			 ,1.003623,0.967516,1.003657,0.968578,0.927108,0.967861,0.928193,0.966835,0.330149,0.841666,0.331039,0.842787,0.333122,0.927080
			 ,0.332233,0.925960,1.126895,-0.855351,1.126895,-0.978899,1.224325,-0.978899,1.224325,-0.855352,0.788591,0.869417,0.789352,0.870672
			 ,0.786475,0.954966,0.785726,0.953711,1.321561,-0.855545,1.321561,-0.731997,1.224132,-0.731997,1.224132,-0.855545,1.321561,-0.979268
			 ,1.321561,-0.855720,1.224132,-0.855720,1.224132,-0.979268,0.075850,0.879849,0.076930,0.880852,0.078862,0.965146,0.077755,0.964143
			 ,1.321561,-1.102991,1.321561,-0.979443,1.224132,-0.979443,1.224132,-1.102991,1.162280,-0.249755,1.192251,-0.322112,1.264855,-0.307969
			 ,1.264855,-0.229896,1.126043,-0.731260,1.126043,-0.854807,1.223473,-0.854807,1.223473,-0.731260,0.931152,-0.288319,0.961124,-0.360676
			 ,1.031098,-0.347623,1.031098,-0.269549,1.034063,-0.526311,1.034063,-0.448237,0.961459,-0.434095,0.931487,-0.506451,1.468810,-0.524086
			 ,1.468810,-0.446012,1.398836,-0.432958,1.368865,-0.505315,1.028438,-0.853279,1.028438,-0.976826,1.125868,-0.976826,1.125868,-0.853279
			 ,1.263190,-0.344809,1.263191,-0.422883,1.335794,-0.437026,1.365766,-0.364669,1.160615,-0.364669,1.190586,-0.437026,1.263191,-0.422883
			 ,1.263190,-0.344809,0.221400,0.860679,0.220016,0.862044,0.224201,0.946338,0.225605,0.944973,0.442962,0.836737,0.441933,0.837847
			 ,0.442685,0.922141,0.443697,0.921031,1.568756,-0.505315,1.538785,-0.432958,1.468810,-0.446012,1.468810,-0.524086,1.374825,-0.306200
			 ,1.404796,-0.378557,1.474771,-0.365504,1.474771,-0.287430,1.570086,-0.630306,1.540115,-0.557949,1.467511,-0.572092,1.467511,-0.650166
			 ,1.025138,-0.664156,1.025138,-0.586082,0.955163,-0.573029,0.925192,-0.645386,1.467511,-0.650166,1.467511,-0.572092,1.394907,-0.557949
			 ,1.364936,-0.630306,1.125083,-0.645386,1.095112,-0.573029,1.025138,-0.586082,1.025138,-0.664156,0.925460,0.874346,0.923981,0.875612
			 ,0.922193,0.959906,0.923704,0.958640,1.264855,-0.229896,1.264855,-0.307969,1.337459,-0.322112,1.367431,-0.249755,1.223956,-1.102991
			 ,1.223956,-0.979443,1.126527,-0.979443,1.126527,-1.102991,0.654601,0.850404,0.653629,0.851415,0.650299,0.935709,0.651236,0.934698
			 ,1.136638,-0.506451,1.106667,-0.434095,1.034063,-0.448237,1.034063,-0.526311,1.031098,-0.269549,1.031098,-0.347623,1.101072,-0.360676
			 ,1.131044,-0.288319,1.474771,-0.287430,1.474771,-0.365504,1.544745,-0.378557,1.574716,-0.306200
			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
		}
		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
		}
		LayerElementUV: 1 {
			Version: 101
			Name: "lightmap"
			MappingInformationType: "ByPolygonVertex"
			ReferenceInformationType: "IndexToDirect"
			UV: 0.841746,0.439504,0.830129,0.439504,0.830129,0.497996,0.841746,0.497996,0.826121,0.439504,0.814504,0.439504,0.814504,0.497996
			 ,0.826121,0.497996,0.872996,0.497996,0.872996,0.439504,0.861379,0.439504,0.861379,0.497996,0.857371,0.439504,0.845754,0.439504
			 ,0.845754,0.497996,0.857371,0.497996,0.779246,0.439504,0.767629,0.439504,0.767629,0.497996,0.779246,0.497996,0.763621,0.439504
			 ,0.752004,0.439504,0.752004,0.497996,0.763621,0.497996,0.810496,0.497996,0.810496,0.439504,0.798879,0.439504,0.798879,0.497996
			 ,0.794871,0.439504,0.783254,0.439504,0.783254,0.497996,0.794871,0.497996,0.841746,0.377004,0.830129,0.377004,0.830129,0.435496
			 ,0.841746,0.435496,0.826121,0.377004,0.814504,0.377004,0.814504,0.435496,0.826121,0.435496,0.872996,0.435496,0.872996,0.377004
			 ,0.861379,0.377004,0.861379,0.435496,0.685496,0.060496,0.685496,0.002004,0.658254,0.002004,0.658254,0.060496,0.654246,0.002004
			 ,0.627004,0.002004,0.627004,0.060496,0.654246,0.060496,0.857371,0.435496,0.857371,0.377004,0.845754,0.377004,0.845754,0.435496
			 ,0.779246,0.377004,0.767629,0.377004,0.767629,0.435496,0.779246,0.435496,0.763621,0.377004,0.752004,0.377004,0.752004,0.435496
			 ,0.763621,0.435496,0.810496,0.435496,0.810496,0.377004,0.798879,0.377004,0.798879,0.435496,0.794871,0.435496,0.794871,0.377004
			 ,0.783254,0.377004,0.783254,0.435496,0.091746,0.247996,0.091746,0.189504,0.080129,0.189504,0.080129,0.247996,0.076121,0.189504
			 ,0.064504,0.189504,0.064504,0.247996,0.076121,0.247996,0.747996,0.060496,0.747996,0.002004,0.720754,0.002004,0.720754,0.060496
			 ,0.716746,0.002004,0.689504,0.002004,0.689504,0.060496,0.716746,0.060496,0.122996,0.247996,0.122996,0.189504,0.111379,0.189504
			 ,0.111379,0.247996,0.107371,0.189504,0.095754,0.189504,0.095754,0.247996,0.107371,0.247996,0.029246,0.247996,0.029246,0.189504
			 ,0.017629,0.189504,0.017629,0.247996,0.013621,0.189504,0.002004,0.189504,0.002004,0.247996,0.013621,0.247996,0.060496,0.247996
			 ,0.060496,0.189504,0.048879,0.189504,0.048879,0.247996,0.044871,0.189504,0.033254,0.189504,0.033254,0.247996,0.044871,0.247996
			 ,0.091746,0.185496,0.091746,0.127004,0.080129,0.127004,0.080129,0.185496,0.076121,0.127004,0.064504,0.127004,0.064504,0.185496
			 ,0.076121,0.185496,0.685496,0.122996,0.685496,0.064504,0.658254,0.064504,0.658254,0.122996,0.122996,0.185496,0.122996,0.127004
			 ,0.111379,0.127004,0.111379,0.185496,0.107371,0.127004,0.095754,0.127004,0.095754,0.185496,0.107371,0.185496,0.654246,0.122996
			 ,0.654246,0.064504,0.627004,0.064504,0.627004,0.122996,0.747996,0.064504,0.720754,0.064504,0.720754,0.122996,0.747996,0.122996
			 ,0.029246,0.185496,0.029246,0.127004,0.017629,0.127004,0.017629,0.185496,0.013621,0.127004,0.002004,0.127004,0.002004,0.185496
			 ,0.013621,0.185496,0.060496,0.127004,0.048879,0.127004,0.048879,0.185496,0.060496,0.185496,0.044871,0.185496,0.044871,0.127004
			 ,0.033254,0.127004,0.033254,0.185496,0.216746,0.064504,0.205129,0.064504,0.205129,0.122996,0.216746,0.122996,0.201121,0.064504
			 ,0.189504,0.064504,0.189504,0.122996,0.201121,0.122996,0.247996,0.064504,0.236379,0.064504,0.236379,0.122996,0.247996,0.122996
			 ,0.232371,0.064504,0.220754,0.064504,0.220754,0.122996,0.232371,0.122996,0.154246,0.064504,0.142629,0.064504,0.142629,0.122996
			 ,0.154246,0.122996,0.138621,0.064504,0.127004,0.064504,0.127004,0.122996,0.138621,0.122996,0.185496,0.064504,0.173879,0.064504
			 ,0.173879,0.122996,0.185496,0.122996,0.169871,0.064504,0.158254,0.064504,0.158254,0.122996,0.169871,0.122996,0.216746,0.060496
			 ,0.216746,0.002004,0.205129,0.002004,0.205129,0.060496,0.201121,0.060496,0.201121,0.002004,0.189504,0.002004,0.189504,0.060496
			 ,0.247996,0.002004,0.236379,0.002004,0.236379,0.060496,0.247996,0.060496,0.232371,0.060496,0.232371,0.002004,0.220754,0.002004
			 ,0.220754,0.060496,0.154246,0.060496,0.154246,0.002004,0.142629,0.002004,0.142629,0.060496,0.138621,0.002004,0.127004,0.002004
			 ,0.127004,0.060496,0.138621,0.060496,0.185496,0.060496,0.185496,0.002004,0.173879,0.002004,0.173879,0.060496,0.169871,0.002004
			 ,0.158254,0.002004,0.158254,0.060496,0.169871,0.060496,0.216746,0.189504,0.205129,0.189504,0.205129,0.247996,0.216746,0.247996
			 ,0.201121,0.247996,0.201121,0.189504,0.189504,0.189504,0.189504,0.247996,0.247996,0.189504,0.236379,0.189504,0.236379,0.247996
			 ,0.247996,0.247996,0.232371,0.247996,0.232371,0.189504,0.220754,0.189504,0.220754,0.247996,0.154246,0.247996,0.154246,0.189504
			 ,0.142629,0.189504,0.142629,0.247996,0.138621,0.189504,0.127004,0.189504,0.127004,0.247996,0.138621,0.247996,0.185496,0.247996
			 ,0.185496,0.189504,0.173879,0.189504,0.173879,0.247996,0.169871,0.247996,0.169871,0.189504,0.158254,0.189504,0.158254,0.247996
			 ,0.216746,0.127004,0.205129,0.127004,0.205129,0.185496,0.216746,0.185496,0.201121,0.127004,0.189504,0.127004,0.189504,0.185496
			 ,0.201121,0.185496,0.247996,0.185496,0.247996,0.127004,0.236379,0.127004,0.236379,0.185496,0.232371,0.185496,0.232371,0.127004
			 ,0.220754,0.127004,0.220754,0.185496,0.154246,0.185496,0.154246,0.127004,0.142629,0.127004,0.142629,0.185496,0.138621,0.185496
			 ,0.138621,0.127004,0.127004,0.127004,0.127004,0.185496,0.185496,0.127004,0.173879,0.127004,0.173879,0.185496,0.185496,0.185496
			 ,0.169871,0.185496,0.169871,0.127004,0.158254,0.127004,0.158254,0.185496,0.341746,0.189504,0.330129,0.189504,0.330129,0.247996
			 ,0.341746,0.247996,0.326121,0.247996,0.326121,0.189504,0.314504,0.189504,0.314504,0.247996,0.372996,0.189504,0.361379,0.189504
			 ,0.361379,0.247996,0.372996,0.247996,0.357371,0.247996,0.357371,0.189504,0.345754,0.189504,0.345754,0.247996,0.279246,0.247996
			 ,0.279246,0.189504,0.267629,0.189504,0.267629,0.247996,0.263621,0.189504,0.252004,0.189504,0.252004,0.247996,0.263621,0.247996
			 ,0.310496,0.247996,0.310496,0.189504,0.298879,0.189504,0.298879,0.247996,0.294871,0.189504,0.283254,0.189504,0.283254,0.247996
			 ,0.294871,0.247996,0.341746,0.127004,0.330129,0.127004,0.330129,0.185496,0.341746,0.185496,0.326121,0.185496,0.326121,0.127004
			 ,0.314504,0.127004,0.314504,0.185496,0.372996,0.127004,0.361379,0.127004,0.361379,0.185496,0.372996,0.185496,0.357371,0.127004
			 ,0.345754,0.127004,0.345754,0.185496,0.357371,0.185496,0.279246,0.185496,0.279246,0.127004,0.267629,0.127004,0.267629,0.185496
			 ,0.263621,0.185496,0.263621,0.127004,0.252004,0.127004,0.252004,0.185496,0.310496,0.127004,0.298879,0.127004,0.298879,0.185496
			 ,0.310496,0.185496,0.294871,0.185496,0.294871,0.127004,0.283254,0.127004,0.283254,0.185496,0.341746,0.064504,0.330129,0.064504
			 ,0.330129,0.122996,0.341746,0.122996,0.326121,0.122996,0.326121,0.064504,0.314504,0.064504,0.314504,0.122996,0.372996,0.064504
			 ,0.361379,0.064504,0.361379,0.122996,0.372996,0.122996,0.357371,0.122996,0.357371,0.064504,0.345754,0.064504,0.345754,0.122996
			 ,0.279246,0.064504,0.267629,0.064504,0.267629,0.122996,0.279246,0.122996,0.263621,0.122996,0.263621,0.064504,0.252004,0.064504
			 ,0.252004,0.122996,0.310496,0.064504,0.298879,0.064504,0.298879,0.122996,0.310496,0.122996,0.294871,0.122996,0.294871,0.064504
			 ,0.283254,0.064504,0.283254,0.122996,0.341746,0.002004,0.330129,0.002004,0.330129,0.060496,0.341746,0.060496,0.326121,0.060496
			 ,0.326121,0.002004,0.314504,0.002004,0.314504,0.060496,0.372996,0.002004,0.361379,0.002004,0.361379,0.060496,0.372996,0.060496
			 ,0.997996,0.627004,0.939504,0.627004,0.939504,0.747996,0.997996,0.747996,0.357371,0.060496,0.357371,0.002004,0.345754,0.002004
			 ,0.345754,0.060496,0.279246,0.002004,0.267629,0.002004,0.267629,0.060496,0.279246,0.060496,0.122996,0.997996,0.122996,0.939504
			 ,0.002004,0.939504,0.002004,0.997996,0.263621,0.060496,0.263621,0.002004,0.252004,0.002004,0.252004,0.060496,0.310496,0.002004
			 ,0.298879,0.002004,0.298879,0.060496,0.310496,0.060496,0.294871,0.060496,0.294871,0.002004,0.283254,0.002004,0.283254,0.060496
			 ,0.216746,0.314504,0.205129,0.314504,0.205129,0.372996,0.216746,0.372996,0.997996,0.752004,0.939504,0.752004,0.939504,0.872996
			 ,0.997996,0.872996,0.201121,0.372996,0.201121,0.314504,0.189504,0.314504,0.189504,0.372996,0.247996,0.314504,0.236379,0.314504
			 ,0.236379,0.372996,0.247996,0.372996,0.232371,0.372996,0.232371,0.314504,0.220754,0.314504,0.220754,0.372996,0.154246,0.314504
			 ,0.142629,0.314504,0.142629,0.372996,0.154246,0.372996,0.138621,0.372996,0.138621,0.314504,0.127004,0.314504,0.127004,0.372996
			 ,0.185496,0.314504,0.173879,0.314504,0.173879,0.372996,0.185496,0.372996,0.127004,0.997996,0.247996,0.997996,0.247996,0.939504
			 ,0.127004,0.939504,0.169871,0.314504,0.158254,0.314504,0.158254,0.372996,0.169871,0.372996,0.216746,0.310496,0.216746,0.252004
			 ,0.205129,0.252004,0.205129,0.310496,0.201121,0.252004,0.189504,0.252004,0.189504,0.310496,0.201121,0.310496,0.247996,0.310496
			 ,0.247996,0.252004,0.236379,0.252004,0.236379,0.310496,0.232371,0.252004,0.220754,0.252004,0.220754,0.310496,0.232371,0.310496
			 ,0.154246,0.310496,0.154246,0.252004,0.142629,0.252004,0.142629,0.310496,0.138621,0.252004,0.127004,0.252004,0.127004,0.310496
			 ,0.138621,0.310496,0.185496,0.310496,0.185496,0.252004,0.173879,0.252004,0.173879,0.310496,0.169871,0.252004,0.158254,0.252004
			 ,0.158254,0.310496,0.169871,0.310496,0.091746,0.372996,0.091746,0.314504,0.080129,0.314504,0.080129,0.372996,0.076121,0.314504
			 ,0.064504,0.314504,0.064504,0.372996,0.076121,0.372996,0.122996,0.372996,0.122996,0.314504,0.111379,0.314504,0.111379,0.372996
			 ,0.107371,0.314504,0.095754,0.314504,0.095754,0.372996,0.107371,0.372996,0.029246,0.372996,0.029246,0.314504,0.017629,0.314504
			 ,0.017629,0.372996,0.013621,0.314504,0.002004,0.314504,0.002004,0.372996,0.013621,0.372996,0.060496,0.372996,0.060496,0.314504
			 ,0.048879,0.314504,0.048879,0.372996,0.044871,0.314504,0.033254,0.314504,0.033254,0.372996,0.044871,0.372996,0.091746,0.310496
			 ,0.091746,0.252004,0.080129,0.252004,0.080129,0.310496,0.076121,0.252004,0.064504,0.252004,0.064504,0.310496,0.076121,0.310496
			 ,0.122996,0.310496,0.122996,0.252004,0.111379,0.252004,0.111379,0.310496,0.107371,0.252004,0.095754,0.252004,0.095754,0.310496
			 ,0.107371,0.310496,0.029246,0.310496,0.029246,0.252004,0.017629,0.252004,0.017629,0.310496,0.013621,0.252004,0.002004,0.252004
			 ,0.002004,0.310496,0.013621,0.310496,0.060496,0.310496,0.060496,0.252004,0.048879,0.252004,0.048879,0.310496,0.044871,0.252004
			 ,0.033254,0.252004,0.033254,0.310496,0.044871,0.310496,0.341746,0.372996,0.341746,0.314504,0.330129,0.314504,0.330129,0.372996
			 ,0.326121,0.314504,0.314504,0.314504,0.314504,0.372996,0.326121,0.372996,0.372996,0.372996,0.372996,0.314504,0.361379,0.314504
			 ,0.361379,0.372996,0.357371,0.314504,0.345754,0.314504,0.345754,0.372996,0.357371,0.372996,0.279246,0.372996,0.279246,0.314504
			 ,0.267629,0.314504,0.267629,0.372996,0.263621,0.314504,0.252004,0.314504,0.252004,0.372996,0.263621,0.372996,0.310496,0.372996
			 ,0.310496,0.314504,0.298879,0.314504,0.298879,0.372996,0.294871,0.314504,0.283254,0.314504,0.283254,0.372996,0.294871,0.372996
			 ,0.341746,0.310496,0.341746,0.252004,0.330129,0.252004,0.330129,0.310496,0.326121,0.252004,0.314504,0.252004,0.314504,0.310496
			 ,0.326121,0.310496,0.372996,0.310496,0.372996,0.252004,0.361379,0.252004,0.361379,0.310496,0.357371,0.252004,0.345754,0.252004
			 ,0.345754,0.310496,0.357371,0.310496,0.279246,0.310496,0.279246,0.252004,0.267629,0.252004,0.267629,0.310496,0.263621,0.252004
			 ,0.252004,0.252004,0.252004,0.310496,0.263621,0.310496,0.310496,0.310496,0.310496,0.252004,0.298879,0.252004,0.298879,0.310496
			 ,0.294871,0.252004,0.283254,0.252004,0.283254,0.310496,0.294871,0.310496,0.341746,0.497996,0.341746,0.439504,0.330129,0.439504
			 ,0.330129,0.497996,0.326121,0.497996,0.326121,0.439504,0.314504,0.439504,0.314504,0.497996,0.372996,0.439504,0.361379,0.439504
			 ,0.361379,0.497996,0.372996,0.497996,0.357371,0.497996,0.357371,0.439504,0.345754,0.439504,0.345754,0.497996,0.279246,0.439504
			 ,0.267629,0.439504,0.267629,0.497996,0.279246,0.497996,0.263621,0.497996,0.263621,0.439504,0.252004,0.439504,0.252004,0.497996
			 ,0.310496,0.439504,0.298879,0.439504,0.298879,0.497996,0.310496,0.497996,0.294871,0.439504,0.283254,0.439504,0.283254,0.497996
			 ,0.294871,0.497996,0.341746,0.377004,0.330129,0.377004,0.330129,0.435496,0.341746,0.435496,0.326121,0.435496,0.326121,0.377004
			 ,0.314504,0.377004,0.314504,0.435496,0.372996,0.377004,0.361379,0.377004,0.361379,0.435496,0.372996,0.435496,0.622996,0.439504
			 ,0.564504,0.439504,0.564504,0.497996,0.622996,0.497996,0.357371,0.435496,0.357371,0.377004,0.345754,0.377004,0.345754,0.435496
			 ,0.279246,0.435496,0.279246,0.377004,0.267629,0.377004,0.267629,0.435496,0.263621,0.377004,0.252004,0.377004,0.252004,0.435496
			 ,0.263621,0.435496,0.310496,0.377004,0.298879,0.377004,0.298879,0.435496,0.310496,0.435496,0.294871,0.435496,0.294871,0.377004
			 ,0.283254,0.377004,0.283254,0.435496,0.216746,0.497996,0.216746,0.439504,0.205129,0.439504,0.205129,0.497996,0.201121,0.439504
			 ,0.189504,0.439504,0.189504,0.497996,0.201121,0.497996,0.247996,0.439504,0.236379,0.439504,0.236379,0.497996,0.247996,0.497996
			 ,0.232371,0.439504,0.220754,0.439504,0.220754,0.497996,0.232371,0.497996,0.154246,0.497996,0.154246,0.439504,0.142629,0.439504
			 ,0.142629,0.497996,0.138621,0.497996,0.138621,0.439504,0.127004,0.439504,0.127004,0.497996,0.185496,0.497996,0.185496,0.439504
			 ,0.173879,0.439504,0.173879,0.497996,0.169871,0.497996,0.169871,0.439504,0.158254,0.439504,0.158254,0.497996,0.216746,0.435496
			 ,0.216746,0.377004,0.205129,0.377004,0.205129,0.435496,0.201121,0.435496,0.201121,0.377004,0.189504,0.377004,0.189504,0.435496
			 ,0.247996,0.435496,0.247996,0.377004,0.236379,0.377004,0.236379,0.435496,0.232371,0.377004,0.220754,0.377004,0.220754,0.435496
			 ,0.232371,0.435496,0.154246,0.377004,0.142629,0.377004,0.142629,0.435496,0.154246,0.435496,0.138621,0.377004,0.127004,0.377004
			 ,0.127004,0.435496,0.138621,0.435496,0.185496,0.377004,0.173879,0.377004,0.173879,0.435496,0.185496,0.435496,0.560496,0.439504
			 ,0.502004,0.439504,0.502004,0.497996,0.560496,0.497996,0.622996,0.377004,0.564504,0.377004,0.564504,0.435496,0.622996,0.435496
			 ,0.560496,0.377004,0.502004,0.377004,0.502004,0.435496,0.560496,0.435496,0.622996,0.564504,0.564504,0.564504,0.564504,0.622996
			 ,0.622996,0.622996,0.169871,0.377004,0.158254,0.377004,0.158254,0.435496,0.169871,0.435496,0.091746,0.439504,0.080129,0.439504
			 ,0.080129,0.497996,0.091746,0.497996,0.560496,0.564504,0.502004,0.564504,0.502004,0.622996,0.560496,0.622996,0.076121,0.497996
			 ,0.076121,0.439504,0.064504,0.439504,0.064504,0.497996,0.716746,0.064504,0.689504,0.064504,0.689504,0.122996,0.716746,0.122996
			 ,0.560496,0.685496,0.560496,0.627004,0.533254,0.627004,0.533254,0.685496,0.529246,0.685496,0.529246,0.627004,0.502004,0.627004
			 ,0.502004,0.685496,0.622996,0.502004,0.564504,0.502004,0.564504,0.560496,0.622996,0.560496,0.622996,0.627004,0.595754,0.627004
			 ,0.595754,0.685496,0.622996,0.685496,0.591746,0.685496,0.591746,0.627004,0.564504,0.627004,0.564504,0.685496,0.560496,0.689504
			 ,0.533254,0.689504,0.533254,0.747996,0.560496,0.747996,0.379008,0.810496,0.497996,0.754008,0.497996,0.810496,0.629008,0.872996
			 ,0.747996,0.816508,0.747996,0.872996,0.497996,0.872996,0.497996,0.816508,0.379008,0.872996,0.872996,0.629008,0.816508,0.747996
			 ,0.872996,0.747996,0.747996,0.810496,0.747996,0.754008,0.629008,0.810496,0.810496,0.629008,0.754008,0.747996,0.810496,0.747996
			 ,0.377004,0.752004,0.377004,0.808492,0.495992,0.752004,0.810496,0.754008,0.754008,0.872996,0.810496,0.872996,0.752004,0.627004
			 ,0.808492,0.627004,0.752004,0.745992,0.745992,0.752004,0.627004,0.808492,0.627004,0.752004,0.872996,0.872996,0.816508,0.872996
			 ,0.872996,0.754008,0.752004,0.752004,0.808492,0.752004,0.752004,0.870992,0.495992,0.814504,0.377004,0.870992,0.377004,0.814504
			 ,0.814504,0.752004,0.870992,0.752004,0.814504,0.870992,0.745992,0.814504,0.627004,0.870992,0.627004,0.814504,0.814504,0.627004
			 ,0.870992,0.627004,0.814504,0.745992,0.529246,0.689504,0.502004,0.689504,0.502004,0.747996,0.529246,0.747996,0.622996,0.747996
			 ,0.622996,0.689504,0.595754,0.689504,0.595754,0.747996,0.591746,0.689504,0.564504,0.689504,0.564504,0.747996,0.591746,0.747996
			 ,0.685496,0.502004,0.658254,0.502004,0.658254,0.560496,0.685496,0.560496,0.654246,0.502004,0.627004,0.502004,0.627004,0.560496
			 ,0.654246,0.560496,0.122996,0.439504,0.111379,0.439504,0.111379,0.497996,0.122996,0.497996,0.107371,0.439504,0.095754,0.439504
			 ,0.095754,0.497996,0.107371,0.497996,0.747996,0.560496,0.747996,0.502004,0.720754,0.502004,0.720754,0.560496,0.716746,0.560496
			 ,0.716746,0.502004,0.689504,0.502004,0.689504,0.560496,0.560496,0.502004,0.502004,0.502004,0.502004,0.560496,0.560496,0.560496
			 ,0.029246,0.439504,0.017629,0.439504,0.017629,0.497996,0.029246,0.497996,0.747996,0.439504,0.689504,0.439504,0.689504,0.497996
			 ,0.747996,0.497996,0.685496,0.439504,0.627004,0.439504,0.627004,0.497996,0.685496,0.497996,0.747996,0.377004,0.689504,0.377004
			 ,0.689504,0.435496,0.747996,0.435496,0.685496,0.377004,0.627004,0.377004,0.627004,0.435496,0.685496,0.435496,0.013621,0.439504
			 ,0.002004,0.439504,0.002004,0.497996,0.013621,0.497996,0.747996,0.314504,0.689504,0.314504,0.689504,0.372996,0.747996,0.372996
			 ,0.685496,0.314504,0.627004,0.314504,0.627004,0.372996,0.685496,0.372996,0.747996,0.252004,0.689504,0.252004,0.689504,0.310496
			 ,0.747996,0.310496,0.060496,0.497996,0.060496,0.439504,0.048879,0.439504,0.048879,0.497996,0.044871,0.439504,0.033254,0.439504
			 ,0.033254,0.497996,0.044871,0.497996,0.091746,0.435496,0.091746,0.377004,0.080129,0.377004,0.080129,0.435496,0.076121,0.435496
			 ,0.076121,0.377004,0.064504,0.377004,0.064504,0.435496,0.122996,0.435496,0.122996,0.377004,0.111379,0.377004,0.111379,0.435496
			 ,0.107371,0.377004,0.095754,0.377004,0.095754,0.435496,0.107371,0.435496,0.029246,0.377004,0.017629,0.377004,0.017629,0.435496
			 ,0.029246,0.435496,0.013621,0.377004,0.002004,0.377004,0.002004,0.435496,0.013621,0.435496,0.060496,0.377004,0.048879,0.377004
			 ,0.048879,0.435496,0.060496,0.435496,0.044871,0.377004,0.033254,0.377004,0.033254,0.435496,0.044871,0.435496,0.466746,0.189504
			 ,0.455129,0.189504,0.455129,0.247996,0.466746,0.247996,0.451121,0.247996,0.451121,0.189504,0.439504,0.189504,0.439504,0.247996
			 ,0.497996,0.189504,0.486379,0.189504,0.486379,0.247996,0.497996,0.247996,0.482371,0.189504,0.470754,0.189504,0.470754,0.247996
			 ,0.482371,0.247996,0.404246,0.189504,0.392629,0.189504,0.392629,0.247996,0.404246,0.247996,0.388621,0.189504,0.377004,0.189504
			 ,0.377004,0.247996,0.388621,0.247996,0.435496,0.247996,0.435496,0.189504,0.423879,0.189504,0.423879,0.247996,0.419871,0.247996
			 ,0.419871,0.189504,0.408254,0.189504,0.408254,0.247996,0.466746,0.185496,0.466746,0.127004,0.455129,0.127004,0.455129,0.185496
			 ,0.451121,0.185496,0.451121,0.127004,0.439504,0.127004,0.439504,0.185496,0.497996,0.127004,0.486379,0.127004,0.486379,0.185496
			 ,0.497996,0.185496,0.482371,0.185496,0.482371,0.127004,0.470754,0.127004,0.470754,0.185496,0.404246,0.127004,0.392629,0.127004
			 ,0.392629,0.185496,0.404246,0.185496,0.388621,0.185496,0.388621,0.127004,0.377004,0.127004,0.377004,0.185496,0.685496,0.622996
			 ,0.685496,0.564504,0.658254,0.564504,0.658254,0.622996,0.435496,0.185496,0.435496,0.127004,0.423879,0.127004,0.423879,0.185496
			 ,0.419871,0.127004,0.408254,0.127004,0.408254,0.185496,0.419871,0.185496,0.654246,0.622996,0.654246,0.564504,0.627004,0.564504
			 ,0.627004,0.622996,0.747996,0.564504,0.720754,0.564504,0.720754,0.622996,0.747996,0.622996,0.716746,0.622996,0.716746,0.564504
			 ,0.689504,0.564504,0.689504,0.622996,0.466746,0.064504,0.455129,0.064504,0.455129,0.122996,0.466746,0.122996,0.451121,0.122996
			 ,0.451121,0.064504,0.439504,0.064504,0.439504,0.122996,0.685496,0.627004,0.658254,0.627004,0.658254,0.685496,0.685496,0.685496
			 ,0.497996,0.122996,0.497996,0.064504,0.486379,0.064504,0.486379,0.122996,0.482371,0.064504,0.470754,0.064504,0.470754,0.122996
			 ,0.482371,0.122996,0.654246,0.627004,0.627004,0.627004,0.627004,0.685496,0.654246,0.685496,0.404246,0.122996,0.404246,0.064504
			 ,0.392629,0.064504,0.392629,0.122996,0.388621,0.064504,0.377004,0.064504,0.377004,0.122996,0.388621,0.122996,0.747996,0.685496
			 ,0.747996,0.627004,0.720754,0.627004,0.720754,0.685496,0.435496,0.122996,0.435496,0.064504,0.423879,0.064504,0.423879,0.122996
			 ,0.419871,0.064504,0.408254,0.064504,0.408254,0.122996,0.419871,0.122996,0.466746,0.060496,0.466746,0.002004,0.455129,0.002004
			 ,0.455129,0.060496,0.451121,0.060496,0.451121,0.002004,0.439504,0.002004,0.439504,0.060496,0.497996,0.002004,0.486379,0.002004
			 ,0.486379,0.060496,0.497996,0.060496,0.482371,0.002004,0.470754,0.002004,0.470754,0.060496,0.482371,0.060496,0.716746,0.627004
			 ,0.689504,0.627004,0.689504,0.685496,0.716746,0.685496,0.404246,0.060496,0.404246,0.002004,0.392629,0.002004,0.392629,0.060496
			 ,0.388621,0.060496,0.388621,0.002004,0.377004,0.002004,0.377004,0.060496,0.435496,0.002004,0.423879,0.002004,0.423879,0.060496
			 ,0.435496,0.060496,0.419871,0.060496,0.419871,0.002004,0.408254,0.002004,0.408254,0.060496,0.466746,0.314504,0.455129,0.314504
			 ,0.455129,0.372996,0.466746,0.372996,0.685496,0.747996,0.685496,0.689504,0.658254,0.689504,0.658254,0.747996,0.451121,0.372996
			 ,0.451121,0.314504,0.439504,0.314504,0.439504,0.372996,0.497996,0.314504,0.486379,0.314504,0.486379,0.372996,0.497996,0.372996
			 ,0.654246,0.747996,0.654246,0.689504,0.627004,0.689504,0.627004,0.747996,0.482371,0.372996,0.482371,0.314504,0.470754,0.314504
			 ,0.470754,0.372996,0.404246,0.314504,0.392629,0.314504,0.392629,0.372996,0.404246,0.372996,0.388621,0.372996,0.388621,0.314504
			 ,0.377004,0.314504,0.377004,0.372996,0.435496,0.314504,0.423879,0.314504,0.423879,0.372996,0.435496,0.372996,0.419871,0.314504
			 ,0.408254,0.314504,0.408254,0.372996,0.419871,0.372996,0.466746,0.252004,0.455129,0.252004,0.455129,0.310496,0.466746,0.310496
			 ,0.451121,0.310496,0.451121,0.252004,0.439504,0.252004,0.439504,0.310496,0.497996,0.310496,0.497996,0.252004,0.486379,0.252004
			 ,0.486379,0.310496,0.482371,0.310496,0.482371,0.252004,0.470754,0.252004,0.470754,0.310496,0.747996,0.689504,0.720754,0.689504
			 ,0.720754,0.747996,0.747996,0.747996,0.404246,0.252004,0.392629,0.252004,0.392629,0.310496,0.404246,0.310496,0.388621,0.252004
			 ,0.377004,0.252004,0.377004,0.310496,0.388621,0.310496,0.716746,0.747996,0.716746,0.689504,0.689504,0.689504,0.689504,0.747996
			 ,0.435496,0.252004,0.423879,0.252004,0.423879,0.310496,0.435496,0.310496,0.419871,0.310496,0.419871,0.252004,0.408254,0.252004
			 ,0.408254,0.310496,0.466746,0.497996,0.466746,0.439504,0.455129,0.439504,0.455129,0.497996,0.451121,0.439504,0.439504,0.439504
			 ,0.439504,0.497996,0.451121,0.497996,0.497996,0.439504,0.486379,0.439504,0.486379,0.497996,0.497996,0.497996,0.997996,0.997996
			 ,0.997996,0.877004,0.939504,0.877004,0.939504,0.997996,0.482371,0.497996,0.482371,0.439504,0.470754,0.439504,0.470754,0.497996
			 ,0.252004,0.997996,0.372996,0.997996,0.372996,0.939504,0.252004,0.939504,0.404246,0.439504,0.392629,0.439504,0.392629,0.497996
			 ,0.404246,0.497996,0.388621,0.439504,0.377004,0.439504,0.377004,0.497996,0.388621,0.497996,0.435496,0.497996,0.435496,0.439504
			 ,0.423879,0.439504,0.423879,0.497996,0.997996,0.247996,0.997996,0.127004,0.939504,0.127004,0.939504,0.247996,0.419871,0.439504
			 ,0.408254,0.439504,0.408254,0.497996,0.419871,0.497996,0.466746,0.377004,0.455129,0.377004,0.455129,0.435496,0.466746,0.435496
			 ,0.451121,0.435496,0.451121,0.377004,0.439504,0.377004,0.439504,0.435496,0.497996,0.435496,0.497996,0.377004,0.486379,0.377004
			 ,0.486379,0.435496,0.502004,0.997996,0.622996,0.997996,0.622996,0.939504,0.502004,0.939504,0.685496,0.252004,0.627004,0.252004
			 ,0.627004,0.310496,0.685496,0.310496,0.482371,0.377004,0.470754,0.377004,0.470754,0.435496,0.482371,0.435496,0.404246,0.377004
			 ,0.392629,0.377004,0.392629,0.435496,0.404246,0.435496,0.810496,0.997996,0.810496,0.877004,0.752004,0.877004,0.752004,0.997996
			 ,0.497996,0.997996,0.497996,0.939504,0.377004,0.939504,0.377004,0.997996,0.388621,0.435496,0.388621,0.377004,0.377004,0.377004
			 ,0.377004,0.435496,0.435496,0.377004,0.423879,0.377004,0.423879,0.435496,0.435496,0.435496,0.419871,0.435496,0.419871,0.377004
			 ,0.408254,0.377004,0.408254,0.435496,0.247996,0.689504,0.189504,0.689504,0.189504,0.747996,0.247996,0.747996,0.935496,0.122996
			 ,0.935496,0.002004,0.877004,0.002004,0.877004,0.122996,0.091746,0.564504,0.080129,0.564504,0.080129,0.622996,0.091746,0.622996
			 ,0.076121,0.622996,0.076121,0.564504,0.064504,0.564504,0.064504,0.622996,0.122996,0.564504,0.111379,0.564504,0.111379,0.622996
			 ,0.122996,0.622996,0.247996,0.935496,0.247996,0.877004,0.127004,0.877004,0.127004,0.935496,0.107371,0.622996,0.107371,0.564504
			 ,0.095754,0.564504,0.095754,0.622996,0.029246,0.622996,0.029246,0.564504,0.017629,0.564504,0.017629,0.622996,0.013621,0.564504
			 ,0.002004,0.564504,0.002004,0.622996,0.013621,0.622996,0.060496,0.622996,0.060496,0.564504,0.048879,0.564504,0.048879,0.622996
			 ,0.935496,0.247996,0.935496,0.127004,0.877004,0.127004,0.877004,0.247996,0.044871,0.564504,0.033254,0.564504,0.033254,0.622996
			 ,0.044871,0.622996,0.091746,0.560496,0.091746,0.502004,0.080129,0.502004,0.080129,0.560496,0.076121,0.560496,0.076121,0.502004
			 ,0.064504,0.502004,0.064504,0.560496,0.122996,0.502004,0.111379,0.502004,0.111379,0.560496,0.122996,0.560496,0.107371,0.560496
			 ,0.107371,0.502004,0.095754,0.502004,0.095754,0.560496,0.029246,0.560496,0.029246,0.502004,0.017629,0.502004,0.017629,0.560496
			 ,0.013621,0.502004,0.002004,0.502004,0.002004,0.560496,0.013621,0.560496,0.060496,0.560496,0.060496,0.502004,0.048879,0.502004
			 ,0.048879,0.560496,0.044871,0.502004,0.033254,0.502004,0.033254,0.560496,0.044871,0.560496,0.341746,0.622996,0.341746,0.564504
			 ,0.330129,0.564504,0.330129,0.622996,0.326121,0.622996,0.326121,0.564504,0.314504,0.564504,0.314504,0.622996,0.372996,0.564504
			 ,0.361379,0.564504,0.361379,0.622996,0.372996,0.622996,0.185496,0.689504,0.127004,0.689504,0.127004,0.747996,0.185496,0.747996
			 ,0.357371,0.564504,0.345754,0.564504,0.345754,0.622996,0.357371,0.622996,0.279246,0.622996,0.279246,0.564504,0.267629,0.564504
			 ,0.267629,0.622996,0.263621,0.622996,0.263621,0.564504,0.252004,0.564504,0.252004,0.622996,0.310496,0.622996,0.310496,0.564504
			 ,0.298879,0.564504,0.298879,0.622996,0.060496,0.810496,0.060496,0.752004,0.033254,0.752004,0.033254,0.810496,0.029246,0.752004
			 ,0.002004,0.752004,0.002004,0.810496,0.029246,0.810496,0.122996,0.752004,0.095754,0.752004,0.095754,0.810496,0.122996,0.810496
			 ,0.294871,0.622996,0.294871,0.564504,0.283254,0.564504,0.283254,0.622996,0.341746,0.502004,0.330129,0.502004,0.330129,0.560496
			 ,0.341746,0.560496,0.326121,0.560496,0.326121,0.502004,0.314504,0.502004,0.314504,0.560496,0.372996,0.935496,0.372996,0.877004
			 ,0.252004,0.877004,0.252004,0.935496,0.091746,0.810496,0.091746,0.752004,0.064504,0.752004,0.064504,0.810496,0.372996,0.502004
			 ,0.361379,0.502004,0.361379,0.560496,0.372996,0.560496,0.357371,0.560496,0.357371,0.502004,0.345754,0.502004,0.345754,0.560496
			 ,0.279246,0.502004,0.267629,0.502004,0.267629,0.560496,0.279246,0.560496,0.247996,0.627004,0.189504,0.627004,0.189504,0.685496
			 ,0.247996,0.685496,0.263621,0.502004,0.252004,0.502004,0.252004,0.560496,0.263621,0.560496,0.310496,0.502004,0.298879,0.502004
			 ,0.298879,0.560496,0.310496,0.560496,0.294871,0.502004,0.283254,0.502004,0.283254,0.560496,0.294871,0.560496,0.216746,0.622996
			 ,0.216746,0.564504,0.205129,0.564504,0.205129,0.622996,0.935496,0.252004,0.877004,0.252004,0.877004,0.372996,0.935496,0.372996
			 ,0.201121,0.622996,0.201121,0.564504,0.189504,0.564504,0.189504,0.622996,0.247996,0.564504,0.236379,0.564504,0.236379,0.622996
			 ,0.247996,0.622996,0.060496,0.814504,0.033254,0.814504,0.033254,0.872996,0.060496,0.872996,0.029246,0.872996,0.029246,0.814504
			 ,0.002004,0.814504,0.002004,0.872996,0.232371,0.564504,0.220754,0.564504,0.220754,0.622996,0.232371,0.622996,0.154246,0.622996
			 ,0.154246,0.564504,0.142629,0.564504,0.142629,0.622996,0.138621,0.622996,0.138621,0.564504,0.127004,0.564504,0.127004,0.622996
			 ,0.185496,0.622996,0.185496,0.564504,0.173879,0.564504,0.173879,0.622996,0.169871,0.622996,0.169871,0.564504,0.158254,0.564504
			 ,0.158254,0.622996,0.185496,0.627004,0.127004,0.627004,0.127004,0.685496,0.185496,0.685496,0.122996,0.814504,0.095754,0.814504
			 ,0.095754,0.872996,0.122996,0.872996,0.091746,0.872996,0.091746,0.814504,0.064504,0.814504,0.064504,0.872996,0.216746,0.502004
			 ,0.205129,0.502004,0.205129,0.560496,0.216746,0.560496,0.201121,0.560496,0.201121,0.502004,0.189504,0.502004,0.189504,0.560496
			 ,0.247996,0.502004,0.236379,0.502004,0.236379,0.560496,0.247996,0.560496,0.122996,0.689504,0.064504,0.689504,0.064504,0.747996
			 ,0.122996,0.747996,0.232371,0.502004,0.220754,0.502004,0.220754,0.560496,0.232371,0.560496,0.154246,0.560496,0.154246,0.502004
			 ,0.142629,0.502004,0.142629,0.560496,0.138621,0.502004,0.127004,0.502004,0.127004,0.560496,0.138621,0.560496,0.185496,0.560496
			 ,0.185496,0.502004,0.173879,0.502004,0.173879,0.560496,0.169871,0.560496,0.169871,0.502004,0.158254,0.502004,0.158254,0.560496
			 ,0.591746,0.314504,0.580129,0.314504,0.580129,0.372996,0.591746,0.372996,0.576121,0.314504,0.564504,0.314504,0.564504,0.372996
			 ,0.576121,0.372996,0.622996,0.314504,0.611379,0.314504,0.611379,0.372996,0.622996,0.372996,0.607371,0.314504,0.595754,0.314504
			 ,0.595754,0.372996,0.607371,0.372996,0.529246,0.372996,0.529246,0.314504,0.517629,0.314504,0.517629,0.372996,0.513621,0.372996
			 ,0.513621,0.314504,0.502004,0.314504,0.502004,0.372996,0.560496,0.372996,0.560496,0.314504,0.548879,0.314504,0.548879,0.372996
			 ,0.544871,0.372996,0.544871,0.314504,0.533254,0.314504,0.533254,0.372996,0.591746,0.310496,0.591746,0.252004,0.580129,0.252004
			 ,0.580129,0.310496,0.497996,0.935496,0.497996,0.877004,0.377004,0.877004,0.377004,0.935496,0.576121,0.310496,0.576121,0.252004
			 ,0.564504,0.252004,0.564504,0.310496,0.622996,0.252004,0.611379,0.252004,0.611379,0.310496,0.622996,0.310496,0.607371,0.252004
			 ,0.595754,0.252004,0.595754,0.310496,0.607371,0.310496,0.529246,0.310496,0.529246,0.252004,0.517629,0.252004,0.517629,0.310496
			 ,0.060496,0.689504,0.002004,0.689504,0.002004,0.747996,0.060496,0.747996,0.513621,0.252004,0.502004,0.252004,0.502004,0.310496
			 ,0.513621,0.310496,0.560496,0.310496,0.560496,0.252004,0.548879,0.252004,0.548879,0.310496,0.544871,0.310496,0.544871,0.252004
			 ,0.533254,0.252004,0.533254,0.310496,0.810496,0.502004,0.783254,0.502004,0.783254,0.560496,0.810496,0.560496,0.779246,0.502004
			 ,0.752004,0.502004,0.752004,0.560496,0.779246,0.560496,0.591746,0.247996,0.591746,0.189504,0.580129,0.189504,0.580129,0.247996
			 ,0.576121,0.247996,0.576121,0.189504,0.564504,0.189504,0.564504,0.247996,0.622996,0.247996,0.622996,0.189504,0.611379,0.189504
			 ,0.611379,0.247996,0.872996,0.502004,0.845754,0.502004,0.845754,0.560496,0.872996,0.560496,0.607371,0.189504,0.595754,0.189504
			 ,0.595754,0.247996,0.607371,0.247996,0.841746,0.502004,0.814504,0.502004,0.814504,0.560496,0.841746,0.560496,0.810496,0.622996
			 ,0.810496,0.564504,0.783254,0.564504,0.783254,0.622996,0.529246,0.189504,0.517629,0.189504,0.517629,0.247996,0.529246,0.247996
			 ,0.513621,0.247996,0.513621,0.189504,0.502004,0.189504,0.502004,0.247996,0.560496,0.189504,0.548879,0.189504,0.548879,0.247996
			 ,0.560496,0.247996,0.544871,0.189504,0.533254,0.189504,0.533254,0.247996,0.544871,0.247996,0.779246,0.622996,0.779246,0.564504
			 ,0.752004,0.564504,0.752004,0.622996,0.872996,0.622996,0.872996,0.564504,0.845754,0.564504,0.845754,0.622996,0.841746,0.564504
			 ,0.814504,0.564504,0.814504,0.622996,0.841746,0.622996,0.591746,0.127004,0.580129,0.127004,0.580129,0.185496,0.591746,0.185496
			 ,0.576121,0.127004,0.564504,0.127004,0.564504,0.185496,0.576121,0.185496,0.622996,0.935496,0.622996,0.879008,0.504008,0.935496
			 ,0.935496,0.747996,0.879008,0.747996,0.935496,0.629008,0.935496,0.754008,0.879008,0.872996,0.935496,0.872996,0.004008,0.935496
			 ,0.122996,0.879008,0.122996,0.935496,0.002004,0.877004,0.002004,0.933492,0.120992,0.877004,0.935496,0.379008,0.879008,0.497996
			 ,0.935496,0.497996,0.629008,0.935496,0.747996,0.879008,0.747996,0.935496,0.877004,0.870992,0.933492,0.752004,0.877004,0.752004
			 ,0.935496,0.935496,0.935496,0.879008,0.816508,0.935496,0.620992,0.877004,0.502004,0.933492,0.502004,0.877004,0.935496,0.622996
			 ,0.879008,0.622996,0.935496,0.504008,0.877004,0.745992,0.933492,0.627004,0.877004,0.627004,0.933492,0.877004,0.814504,0.933492
			 ,0.814504,0.877004,0.877004,0.502004,0.933492,0.502004,0.877004,0.620992,0.627004,0.877004,0.627004,0.933492,0.745992,0.877004
			 ,0.877004,0.377004,0.933492,0.377004,0.877004,0.495992,0.060496,0.002004,0.033254,0.002004,0.033254,0.060496,0.060496,0.060496
			 ,0.029246,0.060496,0.029246,0.002004,0.002004,0.002004,0.002004,0.060496,0.122996,0.060496,0.122996,0.002004,0.095754,0.002004
			 ,0.095754,0.060496,0.091746,0.002004,0.064504,0.002004,0.064504,0.060496,0.091746,0.060496,0.060496,0.122996,0.060496,0.064504
			 ,0.033254,0.064504,0.033254,0.122996,0.029246,0.064504,0.002004,0.064504,0.002004,0.122996,0.029246,0.122996,0.122996,0.064504
			 ,0.095754,0.064504,0.095754,0.122996,0.122996,0.122996,0.091746,0.064504,0.064504,0.064504,0.064504,0.122996,0.091746,0.122996
			 ,0.310496,0.752004,0.283254,0.752004,0.283254,0.810496,0.310496,0.810496,0.279246,0.752004,0.252004,0.752004,0.252004,0.810496
			 ,0.279246,0.810496,0.372996,0.810496,0.372996,0.752004,0.345754,0.752004,0.345754,0.810496,0.341746,0.810496,0.341746,0.752004
			 ,0.314504,0.752004,0.314504,0.810496,0.310496,0.872996,0.310496,0.814504,0.283254,0.814504,0.283254,0.872996,0.279246,0.872996
			 ,0.279246,0.814504,0.252004,0.814504,0.252004,0.872996,0.372996,0.814504,0.345754,0.814504,0.345754,0.872996,0.372996,0.872996
			 ,0.341746,0.872996,0.341746,0.814504,0.314504,0.814504,0.314504,0.872996,0.622996,0.127004,0.611379,0.127004,0.611379,0.185496
			 ,0.622996,0.185496,0.607371,0.127004,0.595754,0.127004,0.595754,0.185496,0.607371,0.185496,0.529246,0.127004,0.517629,0.127004
			 ,0.517629,0.185496,0.529246,0.185496,0.513621,0.127004,0.502004,0.127004,0.502004,0.185496,0.513621,0.185496,0.560496,0.127004
			 ,0.548879,0.127004,0.548879,0.185496,0.560496,0.185496,0.544871,0.127004,0.533254,0.127004,0.533254,0.185496,0.544871,0.185496
			 ,0.591746,0.064504,0.580129,0.064504,0.580129,0.122996,0.591746,0.122996,0.576121,0.064504,0.564504,0.064504,0.564504,0.122996
			 ,0.576121,0.122996,0.122996,0.627004,0.064504,0.627004,0.064504,0.685496,0.122996,0.685496,0.060496,0.627004,0.002004,0.627004
			 ,0.002004,0.685496,0.060496,0.685496,0.747996,0.189504,0.689504,0.189504,0.689504,0.247996,0.747996,0.247996,0.685496,0.189504
			 ,0.627004,0.189504,0.627004,0.247996,0.685496,0.247996,0.622996,0.064504,0.611379,0.064504,0.611379,0.122996,0.622996,0.122996
			 ,0.747996,0.127004,0.689504,0.127004,0.689504,0.185496,0.747996,0.185496,0.685496,0.127004,0.627004,0.127004,0.627004,0.185496
			 ,0.685496,0.185496,0.497996,0.689504,0.439504,0.689504,0.439504,0.747996,0.497996,0.747996,0.435496,0.689504,0.377004,0.689504
			 ,0.377004,0.747996,0.435496,0.747996,0.497996,0.627004,0.439504,0.627004,0.439504,0.685496,0.497996,0.685496,0.435496,0.627004
			 ,0.377004,0.627004,0.377004,0.685496,0.435496,0.685496,0.607371,0.064504,0.595754,0.064504,0.595754,0.122996,0.607371,0.122996
			 ,0.529246,0.064504,0.517629,0.064504,0.517629,0.122996,0.529246,0.122996,0.513621,0.064504,0.502004,0.064504,0.502004,0.122996
			 ,0.513621,0.122996,0.560496,0.064504,0.548879,0.064504,0.548879,0.122996,0.560496,0.122996,0.544871,0.064504,0.533254,0.064504
			 ,0.533254,0.122996,0.544871,0.122996,0.591746,0.002004,0.580129,0.002004,0.580129,0.060496,0.591746,0.060496,0.576121,0.002004
			 ,0.564504,0.002004,0.564504,0.060496,0.576121,0.060496,0.622996,0.002004,0.611379,0.002004,0.611379,0.060496,0.622996,0.060496
			 ,0.607371,0.002004,0.595754,0.002004,0.595754,0.060496,0.607371,0.060496,0.372996,0.689504,0.314504,0.689504,0.314504,0.747996
			 ,0.372996,0.747996,0.529246,0.002004,0.517629,0.002004,0.517629,0.060496,0.529246,0.060496,0.513621,0.002004,0.502004,0.002004
			 ,0.502004,0.060496,0.513621,0.060496,0.560496,0.002004,0.548879,0.002004,0.548879,0.060496,0.560496,0.060496,0.544871,0.002004
			 ,0.533254,0.002004,0.533254,0.060496,0.544871,0.060496,0.466746,0.564504,0.455129,0.564504,0.455129,0.622996,0.466746,0.622996
			 ,0.451121,0.564504,0.439504,0.564504,0.439504,0.622996,0.451121,0.622996,0.497996,0.564504,0.486379,0.564504,0.486379,0.622996
			 ,0.497996,0.622996,0.482371,0.564504,0.470754,0.564504,0.470754,0.622996,0.482371,0.622996,0.404246,0.564504,0.392629,0.564504
			 ,0.392629,0.622996,0.404246,0.622996,0.388621,0.564504,0.377004,0.564504,0.377004,0.622996,0.388621,0.622996,0.435496,0.564504
			 ,0.423879,0.564504,0.423879,0.622996,0.435496,0.622996,0.419871,0.564504,0.408254,0.564504,0.408254,0.622996,0.419871,0.622996
			 ,0.466746,0.502004,0.455129,0.502004,0.455129,0.560496,0.466746,0.560496,0.451121,0.502004,0.439504,0.502004,0.439504,0.560496
			 ,0.451121,0.560496,0.310496,0.689504,0.252004,0.689504,0.252004,0.747996,0.310496,0.747996,0.497996,0.502004,0.486379,0.502004
			 ,0.486379,0.560496,0.497996,0.560496,0.372996,0.627004,0.314504,0.627004,0.314504,0.685496,0.372996,0.685496,0.310496,0.627004
			 ,0.252004,0.627004,0.252004,0.685496,0.310496,0.685496,0.482371,0.502004,0.470754,0.502004,0.470754,0.560496,0.482371,0.560496
			 ,0.622996,0.814504,0.564504,0.814504,0.564504,0.872996,0.622996,0.872996,0.560496,0.814504,0.502004,0.814504,0.502004,0.872996
			 ,0.560496,0.872996,0.622996,0.752004,0.564504,0.752004,0.564504,0.810496,0.622996,0.810496,0.560496,0.752004,0.502004,0.752004
			 ,0.502004,0.810496,0.560496,0.810496,0.872996,0.064504,0.814504,0.064504,0.814504,0.122996,0.872996,0.122996,0.810496,0.064504
			 ,0.752004,0.064504,0.752004,0.122996,0.810496,0.122996,0.872996,0.002004,0.814504,0.002004,0.814504,0.060496,0.872996,0.060496
			 ,0.810496,0.002004,0.752004,0.002004,0.752004,0.060496,0.810496,0.060496,0.872996,0.189504,0.814504,0.189504,0.814504,0.247996
			 ,0.872996,0.247996,0.404246,0.502004,0.392629,0.502004,0.392629,0.560496,0.404246,0.560496,0.388621,0.502004,0.377004,0.502004
			 ,0.377004,0.560496,0.388621,0.560496,0.810496,0.189504,0.752004,0.189504,0.752004,0.247996,0.810496,0.247996,0.872996,0.127004
			 ,0.814504,0.127004,0.814504,0.185496,0.872996,0.185496,0.810496,0.127004,0.752004,0.127004,0.752004,0.185496,0.810496,0.185496
			 ,0.872996,0.314504,0.814504,0.314504,0.814504,0.372996,0.872996,0.372996,0.810496,0.314504,0.752004,0.314504,0.752004,0.372996
			 ,0.810496,0.372996,0.872996,0.252004,0.814504,0.252004,0.814504,0.310496,0.872996,0.310496,0.435496,0.502004,0.423879,0.502004
			 ,0.423879,0.560496,0.435496,0.560496,0.810496,0.252004,0.752004,0.252004,0.752004,0.310496,0.810496,0.310496,0.247996,0.814504
			 ,0.189504,0.814504,0.189504,0.872996,0.247996,0.872996,0.419871,0.502004,0.408254,0.502004,0.408254,0.560496,0.419871,0.560496
			 ,0.185496,0.814504,0.127004,0.814504,0.127004,0.872996,0.185496,0.872996,0.247996,0.752004,0.189504,0.752004,0.189504,0.810496
			 ,0.247996,0.810496,0.185496,0.752004,0.127004,0.752004,0.127004,0.810496,0.185496,0.810496
			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
		}
		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
		}
		LayerElementMaterial: 0 {
			Version: 101
			Name: ""
			MappingInformationType: "ByPolygon"
			ReferenceInformationType: "IndexToDirect"
			Materials: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
				,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
		}
		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", "", "rook-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: "rook-ao.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\rook-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: "rook-ao.jpg"
		RelativeFilename: "C:\Users\Administrateur\Dropbox\Public\javascript\webGL\chess\texture\rook-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::Cylinder"
			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::Cylinder", "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::Cylinder", "Model::Scene"
	Connect: "OO", "Material::None__ao", "Model::Cylinder"
	Connect: "OO", "Material::None__wood-1_jpg", "Model::Cylinder"
	Connect: "OO", "Texture::ao", "Model::Cylinder"
	Connect: "OO", "Texture::wood-1_jpg", "Model::Cylinder"
	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
	}
}