blob: ce689a049366c37b2945803c2e6e7830c842dbe5 (
plain) (
blame)
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
|
//Maya ASCII 2013 scene
//Name: ART_Root.ma
//Last modified: Tue, Aug 19, 2014 04:30:43 PM
//Codeset: 1252
requires maya "2013";
requires "stereoCamera" "10.0";
currentUnit -l centimeter -a degree -t film;
fileInfo "application" "maya";
fileInfo "product" "Maya 2013";
fileInfo "version" "2013 x64";
fileInfo "cutIdentifier" "201202220241-825136";
fileInfo "osv" "Microsoft Windows 7 Business Edition, 64-bit Windows 7 Service Pack 1 (Build 7601)\n";
createNode transform -n "mover_grp";
createNode transform -n "mover" -p "mover_grp";
setAttr ".ove" yes;
setAttr ".ovc" 17;
setAttr -l on -k off ".rx";
setAttr -l on -k off ".ry";
setAttr -l on -k off ".rz";
createNode nurbsCurve -n "curveShape5" -p "mover";
setAttr -k off ".v";
setAttr ".cc" -type "nurbsCurve"
3 20 0 no 3
25 0 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 20 20
23
2.1032336743829937e-007 -29.777517065775008 -6.6119370125183892e-015
3.1181229220255582 -29.492397339870205 -6.548627715623524e-015
3.8360609733339648 -14.213892150742582 -3.1561180670586407e-015
22.313819490289116 -30.404214006297668 -6.751091687084469e-015
11.92541761114451 -8.7123867262610855 -1.9345384685867296e-015
35.798201042608625 -11.624385811727102 -2.5811321550610837e-015
14.802414951535692 -0.00067937161087131784 -1.508508009332039e-019
35.784999349866617 11.627093671816072 2.5817334207847316e-015
11.978224382112526 8.7028330104584963 1.9324171175357777e-015
22.115794098608749 30.439677417004713 6.758966146104209e-015
4.575355767043134 14.081562465535322 3.1267349743869404e-015
3.810919356652014e-007 37.625494365150999 8.3545380314189452e-015
-4.5753558277149047 14.081562468510812 3.1267349750476315e-015
-22.115794082351801 30.439677405102767 6.7589661434614461e-015
-11.978224386468568 8.7028330550909239 1.9324171274461674e-015
-35.784999348699429 11.627093505188308 2.5817333837859356e-015
-14.802414951848462 -0.00068075971461116025 -1.5115902187971214e-019
-35.798201042524788 -11.624385978363096 -2.5811321920617071e-015
-11.925417611166992 -8.7123866815957705 -1.9345384586690374e-015
-22.313819490283063 -30.404214018322968 -6.751091689754622e-015
-3.8360609733356887 -14.213892147306767 -3.156118066295736e-015
-3.1181229220255657 -29.49239733987023 -6.5486277156235303e-015
2.1032336743829951e-007 -29.777517065775022 -6.6119370125183923e-015
;
createNode transform -n "lra_grp" -p "mover";
createNode transform -n "lra" -p "lra_grp";
setAttr ".ovdt" 2;
setAttr ".ove" yes;
setAttr -l on -k off ".tx";
setAttr -l on -k off ".ty";
setAttr -l on -k off ".tz";
setAttr -l on -k off ".rx";
setAttr -l on -k off ".ry";
setAttr -l on -k off ".rz";
createNode mesh -n "lraShape" -p "lra";
setAttr -k off ".v";
setAttr -s 4 ".iog[0].og";
setAttr ".iog[0].og[0].gcl" -type "componentList" 1 "f[0:80]";
setAttr ".iog[0].og[1].gcl" -type "componentList" 1 "f[81:161]";
setAttr ".iog[0].og[2].gcl" -type "componentList" 1 "f[162:242]";
setAttr ".iog[0].og[3].gcl" -type "componentList" 1 "f[243:342]";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".uvst[0].uvsn" -type "string" "map1";
setAttr -s 497 ".uvst[0].uvsp";
setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.64860266 0.10796607 0.62640899
0.064408496 0.59184152 0.029841021 0.54828393 0.0076473355 0.5 -7.4505806e-008 0.45171607
0.0076473504 0.40815851 0.029841051 0.37359107 0.064408526 0.3513974 0.10796608 0.34374997
0.15625 0.3513974 0.20453392 0.37359107 0.24809146 0.40815854 0.28265893 0.4517161
0.3048526 0.5 0.3125 0.54828387 0.3048526 0.59184146 0.28265893 0.62640893 0.24809146
0.6486026 0.2045339 0.65625 0.15625 0.375 0.3125 0.38749999 0.3125 0.39999998 0.3125
0.41249996 0.3125 0.42499995 0.3125 0.43749994 0.3125 0.44999993 0.3125 0.46249992
0.3125 0.4749999 0.3125 0.48749989 0.3125 0.49999988 0.3125 0.51249987 0.3125 0.52499986
0.3125 0.53749985 0.3125 0.54999983 0.3125 0.56249982 0.3125 0.57499981 0.3125 0.5874998
0.3125 0.59999979 0.3125 0.61249977 0.3125 0.62499976 0.3125 0.375 0.68843985 0.38749999
0.68843985 0.39999998 0.68843985 0.41249996 0.68843985 0.42499995 0.68843985 0.43749994
0.68843985 0.44999993 0.68843985 0.46249992 0.68843985 0.4749999 0.68843985 0.48749989
0.68843985 0.49999988 0.68843985 0.51249987 0.68843985 0.52499986 0.68843985 0.53749985
0.68843985 0.54999983 0.68843985 0.56249982 0.68843985 0.57499981 0.68843985 0.5874998
0.68843985 0.59999979 0.68843985 0.61249977 0.68843985 0.62499976 0.68843985 0.64860266
0.79546607 0.62640899 0.75190848 0.59184152 0.71734101 0.54828393 0.69514734 0.5
0.68749994 0.45171607 0.69514734 0.40815851 0.71734107 0.37359107 0.75190854 0.3513974
0.79546607 0.34374997 0.84375 0.3513974 0.89203393 0.37359107 0.93559146 0.40815854
0.97015893 0.4517161 0.9923526 0.5 1 0.54828387 0.9923526 0.59184146 0.97015893 0.62640893
0.93559146 0.6486026 0.89203393 0.65625 0.84375 0.5 0.15000001 0.5 0.83749998 0.7377643
0.1727457 0.75 0.25 0.73776412 0.32725424 0.70225424 0.39694631 0.64694631 0.45225427
0.57725424 0.48776415 0.5 0.5 0.42274573 0.48776418 0.35305366 0.4522543 0.2977457
0.39694634 0.26223582 0.32725427 0.24999994 0.25 0.26223582 0.17274573 0.2977457
0.10305364 0.35305363 0.047745675 0.4227457 0.012235761 0.5 -1.1920929e-007 0.5772543
0.012235746 0.64694643 0.04774563 0.70225441 0.1030536 0.25 0.5 0.27500001 0.5 0.5
1 0.30000001 0.5 0.32500002 0.5 0.35000002 0.5 0.37500003 0.5 0.40000004 0.5 0.42500004
0.5 0.45000005 0.5 0.47500005 0.5 0.50000006 0.5 0.52500004 0.5 0.55000001 0.5 0.57499999
0.5 0.59999996 0.5 0.62499994 0.5 0.64999992 0.5 0.67499989 0.5 0.69999987 0.5 0.72499985
0.5 0.74999982 0.5 0.375 0.3125 0.38749999 0.3125 0.38749999 0.68843985 0.375 0.68843985
0.39999998 0.3125 0.39999998 0.68843985 0.41249996 0.3125 0.41249996 0.68843985 0.42499995
0.3125 0.42499995 0.68843985 0.43749994 0.3125 0.43749994 0.68843985 0.44999993 0.3125
0.44999993 0.68843985 0.46249992 0.3125 0.46249992 0.68843985 0.4749999 0.3125 0.4749999
0.68843985 0.48749989 0.3125 0.48749989 0.68843985 0.49999988 0.3125 0.49999988 0.68843985
0.51249987 0.3125 0.51249987 0.68843985 0.52499986 0.3125 0.52499986 0.68843985 0.53749985
0.3125 0.53749985 0.68843985 0.54999983 0.3125 0.54999983 0.68843985 0.56249982 0.3125
0.56249982 0.68843985 0.57499981 0.3125 0.57499981 0.68843985 0.5874998 0.3125 0.5874998
0.68843985 0.59999979 0.3125 0.59999979 0.68843985 0.61249977 0.3125 0.61249977 0.68843985
0.62499976 0.3125 0.62499976 0.68843985 0.62640899 0.064408496 0.64860266 0.10796607
0.5 0.15000001 0.59184152 0.029841021 0.54828393 0.0076473355 0.5 -7.4505806e-008
0.45171607 0.0076473504 0.40815851 0.029841051 0.37359107 0.064408526 0.3513974 0.10796608
0.34374997 0.15625 0.3513974 0.20453392 0.37359107 0.24809146 0.40815854 0.28265893
0.4517161 0.3048526 0.5 0.3125 0.54828387 0.3048526 0.59184146 0.28265893 0.62640893
0.24809146 0.6486026 0.2045339 0.65625 0.15625 0.6486026 0.89203393 0.62640893 0.93559146
0.5 0.83749998 0.59184146 0.97015893 0.54828387 0.9923526 0.5 1 0.4517161 0.9923526
0.40815854 0.97015893 0.37359107 0.93559146 0.3513974 0.89203393 0.34374997 0.84375
0.3513974 0.79546607 0.37359107 0.75190854 0.40815851 0.71734107 0.45171607 0.69514734
0.5 0.68749994 0.54828393 0.69514734 0.59184152 0.71734101 0.62640899 0.75190848
0.64860266 0.79546607 0.65625 0.84375 0.7377643 0.1727457 0.75 0.25 0.73776412 0.32725424
0.70225424 0.39694631 0.64694631 0.45225427 0.57725424 0.48776415 0.5 0.5 0.42274573
0.48776418 0.35305366 0.4522543 0.2977457 0.39694634 0.26223582 0.32725427 0.24999994
0.25 0.26223582 0.17274573 0.2977457 0.10305364 0.35305363 0.047745675 0.4227457
0.012235761 0.5 -1.1920929e-007 0.5772543 0.012235746 0.64694643 0.04774563 0.70225441
0.1030536 0.25 0.5 0.27500001 0.5 0.5 1 0.30000001 0.5 0.32500002 0.5 0.35000002
0.5 0.37500003 0.5 0.40000004 0.5 0.42500004 0.5 0.45000005 0.5 0.47500005 0.5 0.50000006
0.5 0.52500004 0.5 0.55000001 0.5 0.57499999 0.5 0.59999996 0.5 0.62499994 0.5 0.64999992
0.5 0.67499989 0.5 0.69999987 0.5;
setAttr ".uvst[0].uvsp[250:496]" 0.72499985 0.5 0.74999982 0.5 0.375 0.3125
0.38749999 0.3125 0.38749999 0.68843985 0.375 0.68843985 0.39999998 0.3125 0.39999998
0.68843985 0.41249996 0.3125 0.41249996 0.68843985 0.42499995 0.3125 0.42499995 0.68843985
0.43749994 0.3125 0.43749994 0.68843985 0.44999993 0.3125 0.44999993 0.68843985 0.46249992
0.3125 0.46249992 0.68843985 0.4749999 0.3125 0.4749999 0.68843985 0.48749989 0.3125
0.48749989 0.68843985 0.49999988 0.3125 0.49999988 0.68843985 0.51249987 0.3125 0.51249987
0.68843985 0.52499986 0.3125 0.52499986 0.68843985 0.53749985 0.3125 0.53749985 0.68843985
0.54999983 0.3125 0.54999983 0.68843985 0.56249982 0.3125 0.56249982 0.68843985 0.57499981
0.3125 0.57499981 0.68843985 0.5874998 0.3125 0.5874998 0.68843985 0.59999979 0.3125
0.59999979 0.68843985 0.61249977 0.3125 0.61249977 0.68843985 0.62499976 0.3125 0.62499976
0.68843985 0.62640899 0.064408496 0.64860266 0.10796607 0.5 0.15000001 0.59184152
0.029841021 0.54828393 0.0076473355 0.5 -7.4505806e-008 0.45171607 0.0076473504 0.40815851
0.029841051 0.37359107 0.064408526 0.3513974 0.10796608 0.34374997 0.15625 0.3513974
0.20453392 0.37359107 0.24809146 0.40815854 0.28265893 0.4517161 0.3048526 0.5 0.3125
0.54828387 0.3048526 0.59184146 0.28265893 0.62640893 0.24809146 0.6486026 0.2045339
0.65625 0.15625 0.6486026 0.89203393 0.62640893 0.93559146 0.5 0.83749998 0.59184146
0.97015893 0.54828387 0.9923526 0.5 1 0.4517161 0.9923526 0.40815854 0.97015893 0.37359107
0.93559146 0.3513974 0.89203393 0.34374997 0.84375 0.3513974 0.79546607 0.37359107
0.75190854 0.40815851 0.71734107 0.45171607 0.69514734 0.5 0.68749994 0.54828393
0.69514734 0.59184152 0.71734101 0.62640899 0.75190848 0.64860266 0.79546607 0.65625
0.84375 0.7377643 0.1727457 0.75 0.25 0.73776412 0.32725424 0.70225424 0.39694631
0.64694631 0.45225427 0.57725424 0.48776415 0.5 0.5 0.42274573 0.48776418 0.35305366
0.4522543 0.2977457 0.39694634 0.26223582 0.32725427 0.24999994 0.25 0.26223582 0.17274573
0.2977457 0.10305364 0.35305363 0.047745675 0.4227457 0.012235761 0.5 -1.1920929e-007
0.5772543 0.012235746 0.64694643 0.04774563 0.70225441 0.1030536 0.25 0.5 0.27500001
0.5 0.5 1 0.30000001 0.5 0.32500002 0.5 0.35000002 0.5 0.37500003 0.5 0.40000004
0.5 0.42500004 0.5 0.45000005 0.5 0.47500005 0.5 0.50000006 0.5 0.52500004 0.5 0.55000001
0.5 0.57499999 0.5 0.59999996 0.5 0.62499994 0.5 0.64999992 0.5 0.67499989 0.5 0.69999987
0.5 0.72499985 0.5 0.74999982 0.5 0 0.1 0.1 0.1 0.1 0.2 0 0.2 0.2 0.1 0.2 0.2 0.30000001
0.1 0.30000001 0.2 0.40000001 0.1 0.40000001 0.2 0.5 0.1 0.5 0.2 0.60000002 0.1 0.60000002
0.2 0.70000005 0.1 0.70000005 0.2 0.80000007 0.1 0.80000007 0.2 0.9000001 0.1 0.9000001
0.2 1.000000119209 0.1 1.000000119209 0.2 0.1 0.30000001 0 0.30000001 0.2 0.30000001
0.30000001 0.30000001 0.40000001 0.30000001 0.5 0.30000001 0.60000002 0.30000001
0.70000005 0.30000001 0.80000007 0.30000001 0.9000001 0.30000001 1.000000119209 0.30000001
0.1 0.40000001 0 0.40000001 0.2 0.40000001 0.30000001 0.40000001 0.40000001 0.40000001
0.5 0.40000001 0.60000002 0.40000001 0.70000005 0.40000001 0.80000007 0.40000001
0.9000001 0.40000001 1.000000119209 0.40000001 0.1 0.5 0 0.5 0.2 0.5 0.30000001 0.5
0.40000001 0.5 0.5 0.5 0.60000002 0.5 0.70000005 0.5 0.80000007 0.5 0.9000001 0.5
1.000000119209 0.5 0.1 0.60000002 0 0.60000002 0.2 0.60000002 0.30000001 0.60000002
0.40000001 0.60000002 0.5 0.60000002 0.60000002 0.60000002 0.70000005 0.60000002
0.80000007 0.60000002 0.9000001 0.60000002 1.000000119209 0.60000002 0.1 0.70000005
0 0.70000005 0.2 0.70000005 0.30000001 0.70000005 0.40000001 0.70000005 0.5 0.70000005
0.60000002 0.70000005 0.70000005 0.70000005 0.80000007 0.70000005 0.9000001 0.70000005
1.000000119209 0.70000005 0.1 0.80000007 0 0.80000007 0.2 0.80000007 0.30000001 0.80000007
0.40000001 0.80000007 0.5 0.80000007 0.60000002 0.80000007 0.70000005 0.80000007
0.80000007 0.80000007 0.9000001 0.80000007 1.000000119209 0.80000007 0.1 0.9000001
0 0.9000001 0.2 0.9000001 0.30000001 0.9000001 0.40000001 0.9000001 0.5 0.9000001
0.60000002 0.9000001 0.70000005 0.9000001 0.80000007 0.9000001 0.9000001 0.9000001
1.000000119209 0.9000001 0.050000001 0 0.15000001 0 0.25 0 0.34999999 0 0.45000002
0 0.55000001 0 0.65000004 0 0.75 0 0.85000002 0 0.94999999 0 0.050000001 1 0.15000001
1 0.25 1 0.34999999 1 0.45000002 1 0.55000001 1 0.65000004 1 0.75 1 0.85000002 1
0.94999999 1;
setAttr ".cuvs" -type "string" "map1";
setAttr ".dcc" -type "string" "Ambient+Diffuse";
setAttr ".covm[0]" 0 1 1;
setAttr ".cdvm[0]" 0 1 1;
setAttr -s 281 ".pt";
setAttr ".pt[0:165]" -type "float3" 0.27289653 0.16119725 0.052376151 0.27289653
0.13712257 0.099625349 0.27289653 0.099625349 0.13712257 0.27289653 0.052376151 0.16119725
0.27289653 -5.2783758e-017 0.16949278 0.27289653 -0.052376151 0.16119719 0.27289653
-0.099625349 0.13712251 0.27289653 -0.13712251 0.099625349 0.27289653 -0.16119713
0.052376151 0.27289653 -0.16949266 -1.5255587e-016 0.27289653 -0.16119713 -0.052376151
0.27289653 -0.13712245 -0.099625349 0.27289653 -0.099625349 -0.13712251 0.27289653
-0.052376151 -0.16119713 0.27289653 -5.0512767e-009 -0.16949272 0.27289653 0.052376121
-0.16119713 0.27289653 0.099625289 -0.13712245 0.27289653 0.13712245 -0.099625349
0.27289653 0.16119707 -0.052376121 0.27289653 0.16949272 -1.3373835e-016 2.3809404
0.16119725 0.052376151 2.3809404 0.13712257 0.099625349 2.3809404 0.099625349 0.13712257
2.3809404 0.052376151 0.16119725 2.3809404 -1.6980374e-016 0.16949278 2.3809404 -0.052376151
0.16119719 2.3809404 -0.099625349 0.13712251 2.3809404 -0.13712251 0.099625349 2.3809404
-0.16119713 0.052376151 2.3809404 -0.16949266 1.0176436e-015 2.3809404 -0.16119713
-0.052376151 2.3809404 -0.13712245 -0.099625349 2.3809404 -0.099625349 -0.13712251
2.3809404 -0.052376151 -0.16119713 2.3809404 -5.0512767e-009 -0.16949272 2.3809404
0.052376121 -0.16119713 2.3809404 0.099625289 -0.13712245 2.3809404 0.13712245 -0.099625349
2.3809404 0.16119707 -0.052376121 2.3809404 0.16949272 1.0364613e-015 0.27289653
-1.51488e-017 -1.4314714e-016 2.3809404 -1.3216874e-016 1.0270524e-015 2.334486 0.35211241
0.11440825 2.334486 0.29952466 0.21761739 2.334486 0.21761739 0.29952478 2.334486
0.1144082 0.35211241 2.334486 -2.1179836e-016 0.37023282 2.334486 -0.1144082 0.35211241
2.334486 -0.21761739 0.29952478 2.334486 -0.29952466 0.21761739 2.334486 -0.35211241
0.11440825 2.334486 -0.37023282 6.747799e-016 2.334486 -0.35211241 -0.11440825 2.334486
-0.29952466 -0.21761739 2.334486 -0.21761739 -0.29952455 2.334486 -0.11440825 -0.35211217
2.334486 -1.1033794e-008 -0.3702327 2.334486 0.1144082 -0.35211229 2.334486 0.21761727
-0.29952455 2.334486 0.29952455 -0.21761727 2.334486 0.35211217 -0.1144082 2.334486
0.3702327 7.1588429e-016 3.0749512 -1.7069408e-016 1.1063733e-015 0.16119725 0.052376151
0.27289653 0.13712257 0.099625349 0.27289653 0.099625349 0.13712257 0.27289653 0.052376151
0.16119725 0.27289653 0 0.16949278 0.27289653 -0.052376151 0.16119719 0.27289653
-0.099625349 0.13712251 0.27289653 -0.13712251 0.099625349 0.27289653 -0.16119713
0.052376151 0.27289653 -0.16949266 -2.3403986e-016 0.27289653 -0.16119713 -0.052376151
0.27289653 -0.13712245 -0.099625349 0.27289653 -0.099625349 -0.13712251 0.27289653
-0.052376151 -0.16119713 0.27289653 -5.0512767e-009 -0.16949272 0.27289653 0.052376121
-0.16119713 0.27289653 0.099625289 -0.13712245 0.27289653 0.13712245 -0.099625349
0.27289653 0.16119707 -0.052376121 0.27289653 0.16949272 -2.3403986e-016 0.27289653
0.16119725 0.052376151 2.3809404 0.13712257 0.099625349 2.3809404 0.099625349 0.13712257
2.3809404 0.052376151 0.16119725 2.3809404 0 0.16949278 2.3809404 -0.052376151 0.16119719
2.3809404 -0.099625349 0.13712251 2.3809404 -0.13712251 0.099625349 2.3809404 -0.16119713
0.052376151 2.3809404 -0.16949266 2.3403986e-016 2.3809404 -0.16119713 -0.052376151
2.3809404 -0.13712245 -0.099625349 2.3809404 -0.099625349 -0.13712251 2.3809404 -0.052376151
-0.16119713 2.3809404 -5.0512767e-009 -0.16949272 2.3809404 0.052376121 -0.16119713
2.3809404 0.099625289 -0.13712245 2.3809404 0.13712245 -0.099625349 2.3809404 0.16119707
-0.052376121 2.3809404 0.16949272 2.3403986e-016 2.3809404 0 -2.3403986e-016 0.27289653
0 2.3403986e-016 2.3809404 0.35211241 0.11440825 2.334486 0.29952466 0.21761739 2.334486
0.21761739 0.29952478 2.334486 0.1144082 0.35211241 2.334486 0 0.37023282 2.334486
-0.1144082 0.35211241 2.334486 -0.21761739 0.29952478 2.334486 -0.29952466 0.21761739
2.334486 -0.35211241 0.11440825 2.334486 -0.37023282 -8.2208174e-017 2.334486 -0.35211241
-0.11440825 2.334486 -0.29952466 -0.21761739 2.334486 -0.21761739 -0.29952455 2.334486
-0.11440825 -0.35211217 2.334486 -1.1033794e-008 -0.3702327 2.334486 0.1144082 -0.35211229
2.334486 0.21761727 -0.29952455 2.334486 0.29952455 -0.21761727 2.334486 0.35211217
-0.1144082 2.334486 0.3702327 -8.2208174e-017 2.334486 0 8.2208174e-017 3.0749512
-0.16119725 0.27289653 0.052376151 -0.13712257 0.27289653 0.099625349 -0.099625349
0.27289653 0.13712257 -0.052376151 0.27289653 0.16119725 3.3420188e-017 0.27289653
0.16949278 0.052376151 0.27289653 0.16119719 0.099625349 0.27289653 0.13712251 0.13712251
0.27289653 0.099625349 0.16119713 0.27289653 0.052376151 0.16949266 0.27289653 -1.7344471e-016
0.16119713 0.27289653 -0.052376151 0.13712245 0.27289653 -0.099625349 0.099625349
0.27289653 -0.13712251 0.052376151 0.27289653 -0.16119713 5.0512767e-009 0.27289653
-0.16949272 -0.052376121 0.27289653 -0.16119713 -0.099625289 0.27289653 -0.13712245
-0.13712245 0.27289653 -0.099625349 -0.16119707 0.27289653 -0.052376121 -0.16949272
0.27289653 -1.7344471e-016 -0.16119725 2.3809404 0.052376151 -0.13712257 2.3809404
0.099625349 -0.099625349 2.3809404 0.13712257 -0.052376151 2.3809404 0.16119725 2.9158114e-016
2.3809404 0.16949278 0.052376151 2.3809404 0.16119719 0.099625349 2.3809404 0.13712251
0.13712251 2.3809404 0.099625349 0.16119713 2.3809404 0.052376151 0.16949266 2.3809404
7.6271463e-016 0.16119713 2.3809404 -0.052376151 0.13712245 2.3809404 -0.099625349
0.099625349 2.3809404 -0.13712251 0.052376151 2.3809404 -0.16119713 5.051275e-009
2.3809404 -0.16949272 -0.052376121 2.3809404 -0.16119713 -0.099625289 2.3809404 -0.13712245
-0.13712245 2.3809404 -0.099625349 -0.16119707 2.3809404 -0.052376121 -0.16949272
2.3809404 7.6271463e-016;
setAttr ".pt[166:280]" 3.3420188e-017 0.27289653 -1.7344471e-016 2.9158114e-016
2.3809404 7.6271463e-016 -0.35211241 2.334486 0.11440825 -0.29952466 2.334486 0.21761739
-0.21761739 2.334486 0.29952478 -0.1144082 2.334486 0.35211241 2.8589215e-016 2.334486
0.37023282 0.1144082 2.334486 0.35211241 0.21761739 2.334486 0.29952478 0.29952466
2.334486 0.21761739 0.35211241 2.334486 0.11440825 0.37023282 2.334486 4.3615209e-016
0.35211241 2.334486 -0.11440825 0.29952466 2.334486 -0.21761739 0.21761739 2.334486
-0.29952455 0.11440825 2.334486 -0.35211217 1.1033794e-008 2.334486 -0.3702327 -0.1144082
2.334486 -0.35211229 -0.21761727 2.334486 -0.29952455 -0.29952455 2.334486 -0.21761727
-0.35211217 2.334486 -0.1144082 -0.3702327 2.334486 4.3615209e-016 3.7657306e-016
3.0749512 7.6498468e-016 0.092558175 -0.35211217 -0.06724748 0.035354063 -0.35211217
-0.1088087 -0.035354093 -0.35211217 -0.10880864 -0.092558205 -0.35211217 -0.06724748
-0.1144082 -0.35211217 6.8192598e-009 -0.092558175 -0.35211217 0.06724745 -0.035354063
-0.35211217 0.10880864 0.035354078 -0.35211217 0.10880864 0.092558175 -0.35211217
0.06724748 0.1144082 -0.35211217 0 0.17605615 -0.29952455 -0.12791222 0.067247421
-0.29952455 -0.2069664 -0.06724748 -0.29952455 -0.2069664 -0.17605621 -0.29952455
-0.12791222 -0.21761727 -0.29952455 1.2971e-008 -0.17605615 -0.29952455 0.12791222
-0.06724745 -0.29952455 0.2069664 0.06724745 -0.29952455 0.2069664 0.17605609 -0.29952455
0.12791222 0.21761727 -0.29952455 0 0.24232042 -0.21761727 -0.17605621 0.092558175
-0.21761727 -0.2848649 -0.092558205 -0.21761727 -0.2848649 -0.24232054 -0.21761727
-0.17605609 -0.29952455 -0.21761727 1.7853054e-008 -0.24232042 -0.21761727 0.17605621
-0.092558175 -0.21761727 0.2848649 0.092558175 -0.21761727 0.28486478 0.24232042
-0.21761727 0.17605609 0.29952455 -0.21761727 0 0.2848649 -0.1144082 -0.2069664 0.10880864
-0.1144082 -0.33487868 -0.1088087 -0.1144082 -0.33487868 -0.28486478 -0.1144082 -0.2069664
-0.35211217 -0.1144082 2.0987521e-008 -0.2848649 -0.1144082 0.2069664 -0.10880864
-0.1144082 0.33487868 0.1088087 -0.1144082 0.33487868 0.28486478 -0.1144082 0.2069664
0.35211217 -0.1144082 0 0.29952455 0 -0.21761739 0.1144082 0 -0.35211241 -0.1144082
0 -0.35211229 -0.29952466 0 -0.21761727 -0.3702327 0 2.2067589e-008 -0.29952455 0
0.21761739 -0.1144082 0 0.35211229 0.1144082 0 0.35211217 0.29952455 0 0.21761727
0.3702327 0 0 0.2848649 0.1144082 -0.2069664 0.10880864 0.1144082 -0.33487868 -0.1088087
0.1144082 -0.33487868 -0.28486478 0.1144082 -0.2069664 -0.35211217 0.1144082 2.0987521e-008
-0.2848649 0.1144082 0.2069664 -0.10880864 0.1144082 0.33487868 0.1088087 0.1144082
0.33487868 0.28486478 0.1144082 0.2069664 0.35211217 0.1144082 0 0.24232042 0.21761727
-0.17605621 0.092558175 0.21761727 -0.2848649 -0.092558205 0.21761727 -0.2848649
-0.24232054 0.21761727 -0.17605609 -0.29952455 0.21761727 1.7853054e-008 -0.24232042
0.21761727 0.17605621 -0.092558175 0.21761727 0.2848649 0.092558175 0.21761727 0.28486478
0.24232042 0.21761727 0.17605609 0.29952455 0.21761727 0 0.17605615 0.29952455 -0.12791222
0.067247421 0.29952455 -0.2069664 -0.06724748 0.29952455 -0.2069664 -0.17605621 0.29952455
-0.12791222 -0.21761727 0.29952455 1.2971e-008 -0.17605615 0.29952455 0.12791222
-0.06724745 0.29952455 0.2069664 0.06724745 0.29952455 0.2069664 0.17605609 0.29952455
0.12791222 0.21761727 0.29952455 0 0.092558175 0.35211217 -0.06724748 0.035354063
0.35211217 -0.1088087 -0.035354093 0.35211217 -0.10880864 -0.092558205 0.35211217
-0.06724748 -0.1144082 0.35211217 6.8192598e-009 -0.092558175 0.35211217 0.06724745
-0.035354063 0.35211217 0.10880864 0.035354078 0.35211217 0.10880864 0.092558175
0.35211217 0.06724748 0.1144082 0.35211217 0 0 -0.3702327 0 0 0.3702327 0;
setAttr -s 281 ".vt";
setAttr ".vt[0:165]" 0.7370944 0.43539438 0.1414682 0.7370944 0.3703686 0.26908851
0.7370944 0.26908851 0.37036857 0.7370944 0.1414682 0.43539432 0.7370944 -1.4256912e-016 0.45780066
0.7370944 -0.1414682 0.43539429 0.7370944 -0.26908845 0.37036848 0.7370944 -0.37036845 0.26908842
0.7370944 -0.43539423 0.14146815 0.7370944 -0.45780057 -4.12054e-016 0.7370944 -0.43539423 -0.14146815
0.7370944 -0.37036842 -0.26908842 0.7370944 -0.26908842 -0.37036839 0.7370944 -0.14146815 -0.43539417
0.7370944 -1.3643517e-008 -0.45780051 0.7370944 0.14146811 -0.43539414 0.7370944 0.26908836 -0.37036836
0.7370944 0.37036833 -0.26908839 0.7370944 0.43539411 -0.14146812 0.7370944 0.45780045 -3.6122789e-016
6.43092966 0.43539438 0.1414682 6.43092966 0.3703686 0.26908851 6.43092966 0.26908851 0.37036857
6.43092966 0.1414682 0.43539432 6.43092966 -4.5864049e-016 0.45780066 6.43092966 -0.1414682 0.43539429
6.43092966 -0.26908845 0.37036848 6.43092966 -0.37036845 0.26908842 6.43092966 -0.43539423 0.14146815
6.43092966 -0.45780057 2.7486596e-015 6.43092966 -0.43539423 -0.14146815 6.43092966 -0.37036842 -0.26908842
6.43092966 -0.26908842 -0.37036839 6.43092966 -0.14146815 -0.43539417 6.43092966 -1.3643517e-008 -0.45780051
6.43092966 0.14146811 -0.43539414 6.43092966 0.26908836 -0.37036836 6.43092966 0.37036833 -0.26908839
6.43092966 0.43539411 -0.14146812 6.43092966 0.45780045 2.7994856e-015 0.7370944 -4.0916959e-017 -3.8664095e-016
6.43092966 -3.5698831e-016 2.7740727e-015 6.30545807 0.95105714 0.30901718 6.30545807 0.80901754 0.5877856
6.30545807 0.5877856 0.80901748 6.30545807 0.30901715 0.95105702 6.30545807 -5.7206795e-016 1.000000476837
6.30545807 -0.30901715 0.95105696 6.30545807 -0.58778548 0.8090173 6.30545807 -0.80901724 0.58778542
6.30545807 -0.95105678 0.30901706 6.30545807 -1.000000238419 1.8225837e-015 6.30545807 -0.95105678 -0.30901706
6.30545807 -0.80901718 -0.58778536 6.30545807 -0.58778536 -0.80901712 6.30545807 -0.30901706 -0.95105666
6.30545807 -2.9802322e-008 -1.000000119209 6.30545807 0.30901697 -0.9510566 6.30545807 0.58778524 -0.80901706
6.30545807 0.809017 -0.5877853 6.30545807 0.95105654 -0.309017 6.30545807 1 1.933606e-015
8.30545807 -4.6104554e-016 2.9883178e-015 0.43539438 0.1414682 0.7370944 0.3703686 0.26908851 0.7370944
0.26908851 0.37036857 0.7370944 0.1414682 0.43539432 0.7370944 0 0.45780066 0.7370944
-0.1414682 0.43539429 0.7370944 -0.26908845 0.37036848 0.7370944 -0.37036845 0.26908842 0.7370944
-0.43539423 0.14146815 0.7370944 -0.45780057 -6.321427e-016 0.7370944 -0.43539423 -0.14146815 0.7370944
-0.37036842 -0.26908842 0.7370944 -0.26908842 -0.37036839 0.7370944 -0.14146815 -0.43539417 0.7370944
-1.3643517e-008 -0.45780051 0.7370944 0.14146811 -0.43539414 0.7370944 0.26908836 -0.37036836 0.7370944
0.37036833 -0.26908839 0.7370944 0.43539411 -0.14146812 0.7370944 0.45780045 -6.321427e-016 0.7370944
0.43539438 0.1414682 6.43092966 0.3703686 0.26908851 6.43092966 0.26908851 0.37036857 6.43092966
0.1414682 0.43539432 6.43092966 0 0.45780066 6.43092966 -0.1414682 0.43539429 6.43092966
-0.26908845 0.37036848 6.43092966 -0.37036845 0.26908842 6.43092966 -0.43539423 0.14146815 6.43092966
-0.45780057 6.321427e-016 6.43092966 -0.43539423 -0.14146815 6.43092966 -0.37036842 -0.26908842 6.43092966
-0.26908842 -0.37036839 6.43092966 -0.14146815 -0.43539417 6.43092966 -1.3643517e-008 -0.45780051 6.43092966
0.14146811 -0.43539414 6.43092966 0.26908836 -0.37036836 6.43092966 0.37036833 -0.26908839 6.43092966
0.43539411 -0.14146812 6.43092966 0.45780045 6.321427e-016 6.43092966 0 -6.321427e-016 0.7370944
0 6.321427e-016 6.43092966 0.95105714 0.30901718 6.30545807 0.80901754 0.5877856 6.30545807
0.5877856 0.80901748 6.30545807 0.30901715 0.95105702 6.30545807 0 1.000000476837 6.30545807
-0.30901715 0.95105696 6.30545807 -0.58778548 0.8090173 6.30545807 -0.80901724 0.58778542 6.30545807
-0.95105678 0.30901706 6.30545807 -1.000000238419 -2.220446e-016 6.30545807 -0.95105678 -0.30901706 6.30545807
-0.80901718 -0.58778536 6.30545807 -0.58778536 -0.80901712 6.30545807 -0.30901706 -0.95105666 6.30545807
-2.9802322e-008 -1.000000119209 6.30545807 0.30901697 -0.9510566 6.30545807 0.58778524 -0.80901706 6.30545807
0.809017 -0.5877853 6.30545807 0.95105654 -0.309017 6.30545807 1 -2.220446e-016 6.30545807
0 2.220446e-016 8.30545807 -0.43539438 0.7370944 0.1414682 -0.3703686 0.7370944 0.26908851
-0.26908851 0.7370944 0.37036857 -0.1414682 0.7370944 0.43539432 9.0268036e-017 0.7370944 0.45780066
0.1414682 0.7370944 0.43539429 0.26908845 0.7370944 0.37036848 0.37036845 0.7370944 0.26908842
0.43539423 0.7370944 0.14146815 0.45780057 0.7370944 -4.6847486e-016 0.43539423 0.7370944 -0.14146815
0.37036842 0.7370944 -0.26908842 0.26908842 0.7370944 -0.37036839 0.14146815 0.7370944 -0.43539417
1.3643517e-008 0.7370944 -0.45780051 -0.14146811 0.7370944 -0.43539414 -0.26908836 0.7370944 -0.37036836
-0.37036833 0.7370944 -0.26908839 -0.43539411 0.7370944 -0.14146812 -0.45780045 0.7370944 -4.6847486e-016
-0.43539438 6.43092966 0.1414682 -0.3703686 6.43092966 0.26908851 -0.26908851 6.43092966 0.37036857
-0.1414682 6.43092966 0.43539432 7.8756176e-016 6.43092966 0.45780066 0.1414682 6.43092966 0.43539429
0.26908845 6.43092966 0.37036848 0.37036845 6.43092966 0.26908842 0.43539423 6.43092966 0.14146815
0.45780057 6.43092966 2.0600959e-015 0.43539423 6.43092966 -0.14146815 0.37036842 6.43092966 -0.26908842
0.26908842 6.43092966 -0.37036839 0.14146815 6.43092966 -0.43539417 1.3643517e-008 6.43092966 -0.45780051
-0.14146811 6.43092966 -0.43539414 -0.26908836 6.43092966 -0.37036836 -0.37036833 6.43092966 -0.26908839
-0.43539411 6.43092966 -0.14146812 -0.45780045 6.43092966 2.0600959e-015;
setAttr ".vt[166:280]" 9.0268036e-017 0.7370944 -4.6847486e-016 7.8756176e-016 6.43092966 2.0600959e-015
-0.95105714 6.30545807 0.30901718 -0.80901754 6.30545807 0.5877856 -0.5877856 6.30545807 0.80901748
-0.30901715 6.30545807 0.95105702 7.7219595e-016 6.30545807 1.000000476837 0.30901715 6.30545807 0.95105696
0.58778548 6.30545807 0.8090173 0.80901724 6.30545807 0.58778542 0.95105678 6.30545807 0.30901706
1.000000238419 6.30545807 1.1780483e-015 0.95105678 6.30545807 -0.30901706 0.80901718 6.30545807 -0.58778536
0.58778536 6.30545807 -0.80901712 0.30901706 6.30545807 -0.95105666 2.9802322e-008 6.30545807 -1.000000119209
-0.30901697 6.30545807 -0.9510566 -0.58778524 6.30545807 -0.80901706 -0.809017 6.30545807 -0.5877853
-0.95105654 6.30545807 -0.309017 -1 6.30545807 1.1780483e-015 1.0171253e-015 8.30545807 2.0662268e-015
0.25000003 -0.95105654 -0.18163569 0.095491491 -0.95105654 -0.29389271 -0.095491551 -0.95105654 -0.29389265
-0.25000006 -0.95105654 -0.18163563 -0.30901703 -0.95105654 1.8418849e-008 -0.25000003 -0.95105654 0.18163568
-0.095491499 -0.95105654 0.29389265 0.095491514 -0.95105654 0.29389265 0.25 -0.95105654 0.18163563
0.309017 -0.95105654 0 0.4755283 -0.809017 -0.34549159 0.1816356 -0.809017 -0.55901712
-0.18163572 -0.809017 -0.55901706 -0.47552836 -0.809017 -0.3454915 -0.5877853 -0.809017 3.5034731e-008
-0.4755283 -0.809017 0.34549156 -0.18163562 -0.809017 0.55901706 0.18163565 -0.809017 0.559017
0.47552827 -0.809017 0.3454915 0.58778524 -0.809017 0 0.65450853 -0.58778524 -0.47552839
0.24999996 -0.58778524 -0.76942104 -0.25000012 -0.58778524 -0.76942098 -0.65450865 -0.58778524 -0.47552827
-0.80901712 -0.58778524 4.8221171e-008 -0.65450853 -0.58778524 0.47552836 -0.24999999 -0.58778524 0.76942098
0.25000003 -0.58778524 0.76942092 0.65450853 -0.58778524 0.47552827 0.809017 -0.58778524 0
0.76942098 -0.30901697 -0.55901718 0.29389259 -0.30901697 -0.90450871 -0.29389277 -0.30901697 -0.90450859
-0.7694211 -0.30901697 -0.559017 -0.95105666 -0.30901697 5.6687387e-008 -0.76942098 -0.30901697 0.55901712
-0.29389262 -0.30901697 0.90450859 0.29389268 -0.30901697 0.90450853 0.76942092 -0.30901697 0.559017
0.95105654 -0.30901697 0 0.80901706 0 -0.58778542 0.30901694 0 -0.95105672 -0.30901715 0 -0.9510566
-0.80901718 0 -0.58778524 -1.000000119209 0 5.9604645e-008 -0.80901706 0 0.58778536
-0.30901697 0 0.9510566 0.30901703 0 0.95105654 0.809017 0 0.58778524 1 0 0 0.76942098 0.30901697 -0.55901718
0.29389259 0.30901697 -0.90450871 -0.29389277 0.30901697 -0.90450859 -0.7694211 0.30901697 -0.559017
-0.95105666 0.30901697 5.6687387e-008 -0.76942098 0.30901697 0.55901712 -0.29389262 0.30901697 0.90450859
0.29389268 0.30901697 0.90450853 0.76942092 0.30901697 0.559017 0.95105654 0.30901697 0
0.65450853 0.58778524 -0.47552839 0.24999996 0.58778524 -0.76942104 -0.25000012 0.58778524 -0.76942098
-0.65450865 0.58778524 -0.47552827 -0.80901712 0.58778524 4.8221171e-008 -0.65450853 0.58778524 0.47552836
-0.24999999 0.58778524 0.76942098 0.25000003 0.58778524 0.76942092 0.65450853 0.58778524 0.47552827
0.809017 0.58778524 0 0.4755283 0.809017 -0.34549159 0.1816356 0.809017 -0.55901712
-0.18163572 0.809017 -0.55901706 -0.47552836 0.809017 -0.3454915 -0.5877853 0.809017 3.5034731e-008
-0.4755283 0.809017 0.34549156 -0.18163562 0.809017 0.55901706 0.18163565 0.809017 0.559017
0.47552827 0.809017 0.3454915 0.58778524 0.809017 0 0.25000003 0.95105654 -0.18163569
0.095491491 0.95105654 -0.29389271 -0.095491551 0.95105654 -0.29389265 -0.25000006 0.95105654 -0.18163563
-0.30901703 0.95105654 1.8418849e-008 -0.25000003 0.95105654 0.18163568 -0.095491499 0.95105654 0.29389265
0.095491514 0.95105654 0.29389265 0.25 0.95105654 0.18163563 0.309017 0.95105654 0
0 -1 0 0 1 0;
setAttr -s 610 ".ed";
setAttr ".ed[0:165]" 0 1 0 1 2 0 2 3 0 3 4 0 4 5 0 5 6 0 6 7 0 7 8 0 8 9 0
9 10 0 10 11 0 11 12 0 12 13 0 13 14 0 14 15 0 15 16 0 16 17 0 17 18 0 18 19 0 19 0 0
20 21 0 21 22 0 22 23 0 23 24 0 24 25 0 25 26 0 26 27 0 27 28 0 28 29 0 29 30 0 30 31 0
31 32 0 32 33 0 33 34 0 34 35 0 35 36 0 36 37 0 37 38 0 38 39 0 39 20 0 0 20 1 1 21 1
2 22 1 3 23 1 4 24 1 5 25 1 6 26 1 7 27 1 8 28 1 9 29 1 10 30 1 11 31 1 12 32 1 13 33 1
14 34 1 15 35 1 16 36 1 17 37 1 18 38 1 19 39 1 40 0 1 40 1 1 40 2 1 40 3 1 40 4 1
40 5 1 40 6 1 40 7 1 40 8 1 40 9 1 40 10 1 40 11 1 40 12 1 40 13 1 40 14 1 40 15 1
40 16 1 40 17 1 40 18 1 40 19 1 20 41 1 21 41 1 22 41 1 23 41 1 24 41 1 25 41 1 26 41 1
27 41 1 28 41 1 29 41 1 30 41 1 31 41 1 32 41 1 33 41 1 34 41 1 35 41 1 36 41 1 37 41 1
38 41 1 39 41 1 42 43 0 43 44 0 44 45 0 45 46 0 46 47 0 47 48 0 48 49 0 49 50 0 50 51 0
51 52 0 52 53 0 53 54 0 54 55 0 55 56 0 56 57 0 57 58 0 58 59 0 59 60 0 60 61 0 61 42 0
42 62 1 43 62 1 44 62 1 45 62 1 46 62 1 47 62 1 48 62 1 49 62 1 50 62 1 51 62 1 52 62 1
53 62 1 54 62 1 55 62 1 56 62 1 57 62 1 58 62 1 59 62 1 60 62 1 61 62 1 63 64 0 64 65 0
65 66 0 66 67 0 67 68 0 68 69 0 69 70 0 70 71 0 71 72 0 72 73 0 73 74 0 74 75 0 75 76 0
76 77 0 77 78 0 78 79 0 79 80 0 80 81 0 81 82 0 82 63 0 83 84 0 84 85 0 85 86 0 86 87 0
87 88 0 88 89 0;
setAttr ".ed[166:331]" 89 90 0 90 91 0 91 92 0 92 93 0 93 94 0 94 95 0 95 96 0
96 97 0 97 98 0 98 99 0 99 100 0 100 101 0 101 102 0 102 83 0 63 83 1 64 84 1 65 85 1
66 86 1 67 87 1 68 88 1 69 89 1 70 90 1 71 91 1 72 92 1 73 93 1 74 94 1 75 95 1 76 96 1
77 97 1 78 98 1 79 99 1 80 100 1 81 101 1 82 102 1 103 63 1 103 64 1 103 65 1 103 66 1
103 67 1 103 68 1 103 69 1 103 70 1 103 71 1 103 72 1 103 73 1 103 74 1 103 75 1
103 76 1 103 77 1 103 78 1 103 79 1 103 80 1 103 81 1 103 82 1 83 104 1 84 104 1
85 104 1 86 104 1 87 104 1 88 104 1 89 104 1 90 104 1 91 104 1 92 104 1 93 104 1
94 104 1 95 104 1 96 104 1 97 104 1 98 104 1 99 104 1 100 104 1 101 104 1 102 104 1
105 106 0 106 107 0 107 108 0 108 109 0 109 110 0 110 111 0 111 112 0 112 113 0 113 114 0
114 115 0 115 116 0 116 117 0 117 118 0 118 119 0 119 120 0 120 121 0 121 122 0 122 123 0
123 124 0 124 105 0 105 125 1 106 125 1 107 125 1 108 125 1 109 125 1 110 125 1 111 125 1
112 125 1 113 125 1 114 125 1 115 125 1 116 125 1 117 125 1 118 125 1 119 125 1 120 125 1
121 125 1 122 125 1 123 125 1 124 125 1 126 127 0 127 128 0 128 129 0 129 130 0 130 131 0
131 132 0 132 133 0 133 134 0 134 135 0 135 136 0 136 137 0 137 138 0 138 139 0 139 140 0
140 141 0 141 142 0 142 143 0 143 144 0 144 145 0 145 126 0 146 147 0 147 148 0 148 149 0
149 150 0 150 151 0 151 152 0 152 153 0 153 154 0 154 155 0 155 156 0 156 157 0 157 158 0
158 159 0 159 160 0 160 161 0 161 162 0 162 163 0 163 164 0 164 165 0 165 146 0 126 146 1
127 147 1 128 148 1 129 149 1 130 150 1 131 151 1 132 152 1 133 153 1 134 154 1 135 155 1
136 156 1 137 157 1;
setAttr ".ed[332:497]" 138 158 1 139 159 1 140 160 1 141 161 1 142 162 1 143 163 1
144 164 1 145 165 1 166 126 1 166 127 1 166 128 1 166 129 1 166 130 1 166 131 1 166 132 1
166 133 1 166 134 1 166 135 1 166 136 1 166 137 1 166 138 1 166 139 1 166 140 1 166 141 1
166 142 1 166 143 1 166 144 1 166 145 1 146 167 1 147 167 1 148 167 1 149 167 1 150 167 1
151 167 1 152 167 1 153 167 1 154 167 1 155 167 1 156 167 1 157 167 1 158 167 1 159 167 1
160 167 1 161 167 1 162 167 1 163 167 1 164 167 1 165 167 1 168 169 0 169 170 0 170 171 0
171 172 0 172 173 0 173 174 0 174 175 0 175 176 0 176 177 0 177 178 0 178 179 0 179 180 0
180 181 0 181 182 0 182 183 0 183 184 0 184 185 0 185 186 0 186 187 0 187 168 0 168 188 1
169 188 1 170 188 1 171 188 1 172 188 1 173 188 1 174 188 1 175 188 1 176 188 1 177 188 1
178 188 1 179 188 1 180 188 1 181 188 1 182 188 1 183 188 1 184 188 1 185 188 1 186 188 1
187 188 1 189 190 1 190 191 1 191 192 1 192 193 1 193 194 1 194 195 1 195 196 1 196 197 1
197 198 1 198 189 1 199 200 1 200 201 1 201 202 1 202 203 1 203 204 1 204 205 1 205 206 1
206 207 1 207 208 1 208 199 1 209 210 1 210 211 1 211 212 1 212 213 1 213 214 1 214 215 1
215 216 1 216 217 1 217 218 1 218 209 1 219 220 1 220 221 1 221 222 1 222 223 1 223 224 1
224 225 1 225 226 1 226 227 1 227 228 1 228 219 1 229 230 1 230 231 1 231 232 1 232 233 1
233 234 1 234 235 1 235 236 1 236 237 1 237 238 1 238 229 1 239 240 1 240 241 1 241 242 1
242 243 1 243 244 1 244 245 1 245 246 1 246 247 1 247 248 1 248 239 1 249 250 1 250 251 1
251 252 1 252 253 1 253 254 1 254 255 1 255 256 1 256 257 1 257 258 1 258 249 1 259 260 1
260 261 1 261 262 1 262 263 1 263 264 1 264 265 1 265 266 1 266 267 1;
setAttr ".ed[498:609]" 267 268 1 268 259 1 269 270 1 270 271 1 271 272 1 272 273 1
273 274 1 274 275 1 275 276 1 276 277 1 277 278 1 278 269 1 189 199 1 190 200 1 191 201 1
192 202 1 193 203 1 194 204 1 195 205 1 196 206 1 197 207 1 198 208 1 199 209 1 200 210 1
201 211 1 202 212 1 203 213 1 204 214 1 205 215 1 206 216 1 207 217 1 208 218 1 209 219 1
210 220 1 211 221 1 212 222 1 213 223 1 214 224 1 215 225 1 216 226 1 217 227 1 218 228 1
219 229 1 220 230 1 221 231 1 222 232 1 223 233 1 224 234 1 225 235 1 226 236 1 227 237 1
228 238 1 229 239 1 230 240 1 231 241 1 232 242 1 233 243 1 234 244 1 235 245 1 236 246 1
237 247 1 238 248 1 239 249 1 240 250 1 241 251 1 242 252 1 243 253 1 244 254 1 245 255 1
246 256 1 247 257 1 248 258 1 249 259 1 250 260 1 251 261 1 252 262 1 253 263 1 254 264 1
255 265 1 256 266 1 257 267 1 258 268 1 259 269 1 260 270 1 261 271 1 262 272 1 263 273 1
264 274 1 265 275 1 266 276 1 267 277 1 268 278 1 279 189 1 279 190 1 279 191 1 279 192 1
279 193 1 279 194 1 279 195 1 279 196 1 279 197 1 279 198 1 269 280 1 270 280 1 271 280 1
272 280 1 273 280 1 274 280 1 275 280 1 276 280 1 277 280 1 278 280 1;
setAttr -s 343 -ch 1220 ".fc[0:342]" -type "polyFaces"
f 4 0 41 -21 -41
mu 0 4 20 21 42 41
f 4 1 42 -22 -42
mu 0 4 21 22 43 42
f 4 2 43 -23 -43
mu 0 4 22 23 44 43
f 4 3 44 -24 -44
mu 0 4 23 24 45 44
f 4 4 45 -25 -45
mu 0 4 24 25 46 45
f 4 5 46 -26 -46
mu 0 4 25 26 47 46
f 4 6 47 -27 -47
mu 0 4 26 27 48 47
f 4 7 48 -28 -48
mu 0 4 27 28 49 48
f 4 8 49 -29 -49
mu 0 4 28 29 50 49
f 4 9 50 -30 -50
mu 0 4 29 30 51 50
f 4 10 51 -31 -51
mu 0 4 30 31 52 51
f 4 11 52 -32 -52
mu 0 4 31 32 53 52
f 4 12 53 -33 -53
mu 0 4 32 33 54 53
f 4 13 54 -34 -54
mu 0 4 33 34 55 54
f 4 14 55 -35 -55
mu 0 4 34 35 56 55
f 4 15 56 -36 -56
mu 0 4 35 36 57 56
f 4 16 57 -37 -57
mu 0 4 36 37 58 57
f 4 17 58 -38 -58
mu 0 4 37 38 59 58
f 4 18 59 -39 -59
mu 0 4 38 39 60 59
f 4 19 40 -40 -60
mu 0 4 39 40 61 60
f 3 -1 -61 61
mu 0 3 1 0 82
f 3 -2 -62 62
mu 0 3 2 1 82
f 3 -3 -63 63
mu 0 3 3 2 82
f 3 -4 -64 64
mu 0 3 4 3 82
f 3 -5 -65 65
mu 0 3 5 4 82
f 3 -6 -66 66
mu 0 3 6 5 82
f 3 -7 -67 67
mu 0 3 7 6 82
f 3 -8 -68 68
mu 0 3 8 7 82
f 3 -9 -69 69
mu 0 3 9 8 82
f 3 -10 -70 70
mu 0 3 10 9 82
f 3 -11 -71 71
mu 0 3 11 10 82
f 3 -12 -72 72
mu 0 3 12 11 82
f 3 -13 -73 73
mu 0 3 13 12 82
f 3 -14 -74 74
mu 0 3 14 13 82
f 3 -15 -75 75
mu 0 3 15 14 82
f 3 -16 -76 76
mu 0 3 16 15 82
f 3 -17 -77 77
mu 0 3 17 16 82
f 3 -18 -78 78
mu 0 3 18 17 82
f 3 -19 -79 79
mu 0 3 19 18 82
f 3 -20 -80 60
mu 0 3 0 19 82
f 3 20 81 -81
mu 0 3 80 79 83
f 3 21 82 -82
mu 0 3 79 78 83
f 3 22 83 -83
mu 0 3 78 77 83
f 3 23 84 -84
mu 0 3 77 76 83
f 3 24 85 -85
mu 0 3 76 75 83
f 3 25 86 -86
mu 0 3 75 74 83
f 3 26 87 -87
mu 0 3 74 73 83
f 3 27 88 -88
mu 0 3 73 72 83
f 3 28 89 -89
mu 0 3 72 71 83
f 3 29 90 -90
mu 0 3 71 70 83
f 3 30 91 -91
mu 0 3 70 69 83
f 3 31 92 -92
mu 0 3 69 68 83
f 3 32 93 -93
mu 0 3 68 67 83
f 3 33 94 -94
mu 0 3 67 66 83
f 3 34 95 -95
mu 0 3 66 65 83
f 3 35 96 -96
mu 0 3 65 64 83
f 3 36 97 -97
mu 0 3 64 63 83
f 3 37 98 -98
mu 0 3 63 62 83
f 3 38 99 -99
mu 0 3 62 81 83
f 3 39 80 -100
mu 0 3 81 80 83
f 20 -120 -119 -118 -117 -116 -115 -114 -113 -112 -111 -110 -109 -108 -107 -106 -105
-104 -103 -102 -101
mu 0 20 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
f 3 100 121 -121
mu 0 3 104 105 106
f 3 101 122 -122
mu 0 3 105 107 106
f 3 102 123 -123
mu 0 3 107 108 106
f 3 103 124 -124
mu 0 3 108 109 106
f 3 104 125 -125
mu 0 3 109 110 106
f 3 105 126 -126
mu 0 3 110 111 106
f 3 106 127 -127
mu 0 3 111 112 106
f 3 107 128 -128
mu 0 3 112 113 106
f 3 108 129 -129
mu 0 3 113 114 106
f 3 109 130 -130
mu 0 3 114 115 106
f 3 110 131 -131
mu 0 3 115 116 106
f 3 111 132 -132
mu 0 3 116 117 106
f 3 112 133 -133
mu 0 3 117 118 106
f 3 113 134 -134
mu 0 3 118 119 106
f 3 114 135 -135
mu 0 3 119 120 106
f 3 115 136 -136
mu 0 3 120 121 106
f 3 116 137 -137
mu 0 3 121 122 106
f 3 117 138 -138
mu 0 3 122 123 106
f 3 118 139 -139
mu 0 3 123 124 106
f 3 119 120 -140
mu 0 3 124 125 106
f 4 140 181 -161 -181
mu 0 4 126 127 128 129
f 4 141 182 -162 -182
mu 0 4 127 130 131 128
f 4 142 183 -163 -183
mu 0 4 130 132 133 131
f 4 143 184 -164 -184
mu 0 4 132 134 135 133
f 4 144 185 -165 -185
mu 0 4 134 136 137 135
f 4 145 186 -166 -186
mu 0 4 136 138 139 137
f 4 146 187 -167 -187
mu 0 4 138 140 141 139
f 4 147 188 -168 -188
mu 0 4 140 142 143 141
f 4 148 189 -169 -189
mu 0 4 142 144 145 143
f 4 149 190 -170 -190
mu 0 4 144 146 147 145
f 4 150 191 -171 -191
mu 0 4 146 148 149 147
f 4 151 192 -172 -192
mu 0 4 148 150 151 149
f 4 152 193 -173 -193
mu 0 4 150 152 153 151
f 4 153 194 -174 -194
mu 0 4 152 154 155 153
f 4 154 195 -175 -195
mu 0 4 154 156 157 155
f 4 155 196 -176 -196
mu 0 4 156 158 159 157
f 4 156 197 -177 -197
mu 0 4 158 160 161 159
f 4 157 198 -178 -198
mu 0 4 160 162 163 161
f 4 158 199 -179 -199
mu 0 4 162 164 165 163
f 4 159 180 -180 -200
mu 0 4 164 166 167 165
f 3 -141 -201 201
mu 0 3 168 169 170
f 3 -142 -202 202
mu 0 3 171 168 170
f 3 -143 -203 203
mu 0 3 172 171 170
f 3 -144 -204 204
mu 0 3 173 172 170
f 3 -145 -205 205
mu 0 3 174 173 170
f 3 -146 -206 206
mu 0 3 175 174 170
f 3 -147 -207 207
mu 0 3 176 175 170
f 3 -148 -208 208
mu 0 3 177 176 170
f 3 -149 -209 209
mu 0 3 178 177 170
f 3 -150 -210 210
mu 0 3 179 178 170
f 3 -151 -211 211
mu 0 3 180 179 170
f 3 -152 -212 212
mu 0 3 181 180 170
f 3 -153 -213 213
mu 0 3 182 181 170
f 3 -154 -214 214
mu 0 3 183 182 170
f 3 -155 -215 215
mu 0 3 184 183 170
f 3 -156 -216 216
mu 0 3 185 184 170
f 3 -157 -217 217
mu 0 3 186 185 170
f 3 -158 -218 218
mu 0 3 187 186 170
f 3 -159 -219 219
mu 0 3 188 187 170
f 3 -160 -220 200
mu 0 3 169 188 170
f 3 160 221 -221
mu 0 3 189 190 191
f 3 161 222 -222
mu 0 3 190 192 191
f 3 162 223 -223
mu 0 3 192 193 191
f 3 163 224 -224
mu 0 3 193 194 191
f 3 164 225 -225
mu 0 3 194 195 191
f 3 165 226 -226
mu 0 3 195 196 191
f 3 166 227 -227
mu 0 3 196 197 191
f 3 167 228 -228
mu 0 3 197 198 191
f 3 168 229 -229
mu 0 3 198 199 191
f 3 169 230 -230
mu 0 3 199 200 191
f 3 170 231 -231
mu 0 3 200 201 191
f 3 171 232 -232
mu 0 3 201 202 191
f 3 172 233 -233
mu 0 3 202 203 191
f 3 173 234 -234
mu 0 3 203 204 191
f 3 174 235 -235
mu 0 3 204 205 191
f 3 175 236 -236
mu 0 3 205 206 191
f 3 176 237 -237
mu 0 3 206 207 191
f 3 177 238 -238
mu 0 3 207 208 191
f 3 178 239 -239
mu 0 3 208 209 191
f 3 179 220 -240
mu 0 3 209 189 191
f 20 -260 -259 -258 -257 -256 -255 -254 -253 -252 -251 -250 -249 -248 -247 -246 -245
-244 -243 -242 -241
mu 0 20 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
f 3 240 261 -261
mu 0 3 230 231 232
f 3 241 262 -262
mu 0 3 231 233 232
f 3 242 263 -263
mu 0 3 233 234 232
f 3 243 264 -264
mu 0 3 234 235 232
f 3 244 265 -265
mu 0 3 235 236 232
f 3 245 266 -266
mu 0 3 236 237 232
f 3 246 267 -267
mu 0 3 237 238 232
f 3 247 268 -268
mu 0 3 238 239 232
f 3 248 269 -269
mu 0 3 239 240 232
f 3 249 270 -270
mu 0 3 240 241 232
f 3 250 271 -271
mu 0 3 241 242 232
f 3 251 272 -272
mu 0 3 242 243 232
f 3 252 273 -273
mu 0 3 243 244 232
f 3 253 274 -274
mu 0 3 244 245 232
f 3 254 275 -275
mu 0 3 245 246 232
f 3 255 276 -276
mu 0 3 246 247 232
f 3 256 277 -277
mu 0 3 247 248 232
f 3 257 278 -278
mu 0 3 248 249 232
f 3 258 279 -279
mu 0 3 249 250 232
f 3 259 260 -280
mu 0 3 250 251 232
f 4 280 321 -301 -321
mu 0 4 252 253 254 255
f 4 281 322 -302 -322
mu 0 4 253 256 257 254
f 4 282 323 -303 -323
mu 0 4 256 258 259 257
f 4 283 324 -304 -324
mu 0 4 258 260 261 259
f 4 284 325 -305 -325
mu 0 4 260 262 263 261
f 4 285 326 -306 -326
mu 0 4 262 264 265 263
f 4 286 327 -307 -327
mu 0 4 264 266 267 265
f 4 287 328 -308 -328
mu 0 4 266 268 269 267
f 4 288 329 -309 -329
mu 0 4 268 270 271 269
f 4 289 330 -310 -330
mu 0 4 270 272 273 271
f 4 290 331 -311 -331
mu 0 4 272 274 275 273
f 4 291 332 -312 -332
mu 0 4 274 276 277 275
f 4 292 333 -313 -333
mu 0 4 276 278 279 277
f 4 293 334 -314 -334
mu 0 4 278 280 281 279
f 4 294 335 -315 -335
mu 0 4 280 282 283 281
f 4 295 336 -316 -336
mu 0 4 282 284 285 283
f 4 296 337 -317 -337
mu 0 4 284 286 287 285
f 4 297 338 -318 -338
mu 0 4 286 288 289 287
f 4 298 339 -319 -339
mu 0 4 288 290 291 289
f 4 299 320 -320 -340
mu 0 4 290 292 293 291
f 3 -281 -341 341
mu 0 3 294 295 296
f 3 -282 -342 342
mu 0 3 297 294 296
f 3 -283 -343 343
mu 0 3 298 297 296
f 3 -284 -344 344
mu 0 3 299 298 296
f 3 -285 -345 345
mu 0 3 300 299 296
f 3 -286 -346 346
mu 0 3 301 300 296
f 3 -287 -347 347
mu 0 3 302 301 296
f 3 -288 -348 348
mu 0 3 303 302 296
f 3 -289 -349 349
mu 0 3 304 303 296
f 3 -290 -350 350
mu 0 3 305 304 296
f 3 -291 -351 351
mu 0 3 306 305 296
f 3 -292 -352 352
mu 0 3 307 306 296
f 3 -293 -353 353
mu 0 3 308 307 296
f 3 -294 -354 354
mu 0 3 309 308 296
f 3 -295 -355 355
mu 0 3 310 309 296
f 3 -296 -356 356
mu 0 3 311 310 296
f 3 -297 -357 357
mu 0 3 312 311 296
f 3 -298 -358 358
mu 0 3 313 312 296
f 3 -299 -359 359
mu 0 3 314 313 296
f 3 -300 -360 340
mu 0 3 295 314 296
f 3 300 361 -361
mu 0 3 315 316 317
f 3 301 362 -362
mu 0 3 316 318 317
f 3 302 363 -363
mu 0 3 318 319 317
f 3 303 364 -364
mu 0 3 319 320 317
f 3 304 365 -365
mu 0 3 320 321 317
f 3 305 366 -366
mu 0 3 321 322 317
f 3 306 367 -367
mu 0 3 322 323 317
f 3 307 368 -368
mu 0 3 323 324 317
f 3 308 369 -369
mu 0 3 324 325 317
f 3 309 370 -370
mu 0 3 325 326 317
f 3 310 371 -371
mu 0 3 326 327 317
f 3 311 372 -372
mu 0 3 327 328 317
f 3 312 373 -373
mu 0 3 328 329 317
f 3 313 374 -374
mu 0 3 329 330 317
f 3 314 375 -375
mu 0 3 330 331 317
f 3 315 376 -376
mu 0 3 331 332 317
f 3 316 377 -377
mu 0 3 332 333 317
f 3 317 378 -378
mu 0 3 333 334 317
f 3 318 379 -379
mu 0 3 334 335 317
f 3 319 360 -380
mu 0 3 335 315 317
f 20 -400 -399 -398 -397 -396 -395 -394 -393 -392 -391 -390 -389 -388 -387 -386 -385
-384 -383 -382 -381
mu 0 20 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
f 3 380 401 -401
mu 0 3 356 357 358
f 3 381 402 -402
mu 0 3 357 359 358
f 3 382 403 -403
mu 0 3 359 360 358
f 3 383 404 -404
mu 0 3 360 361 358
f 3 384 405 -405
mu 0 3 361 362 358
f 3 385 406 -406
mu 0 3 362 363 358
f 3 386 407 -407
mu 0 3 363 364 358
f 3 387 408 -408
mu 0 3 364 365 358
f 3 388 409 -409
mu 0 3 365 366 358
f 3 389 410 -410
mu 0 3 366 367 358
f 3 390 411 -411
mu 0 3 367 368 358
f 3 391 412 -412
mu 0 3 368 369 358
f 3 392 413 -413
mu 0 3 369 370 358
f 3 393 414 -414
mu 0 3 370 371 358
f 3 394 415 -415
mu 0 3 371 372 358
f 3 395 416 -416
mu 0 3 372 373 358
f 3 396 417 -417
mu 0 3 373 374 358
f 3 397 418 -418
mu 0 3 374 375 358
f 3 398 419 -419
mu 0 3 375 376 358
f 3 399 400 -420
mu 0 3 376 377 358
f 4 420 511 -431 -511
mu 0 4 378 379 380 381
f 4 421 512 -432 -512
mu 0 4 379 382 383 380
f 4 422 513 -433 -513
mu 0 4 382 384 385 383
f 4 423 514 -434 -514
mu 0 4 384 386 387 385
f 4 424 515 -435 -515
mu 0 4 386 388 389 387
f 4 425 516 -436 -516
mu 0 4 388 390 391 389
f 4 426 517 -437 -517
mu 0 4 390 392 393 391
f 4 427 518 -438 -518
mu 0 4 392 394 395 393
f 4 428 519 -439 -519
mu 0 4 394 396 397 395
f 4 429 510 -440 -520
mu 0 4 396 398 399 397
f 4 430 521 -441 -521
mu 0 4 381 380 400 401
f 4 431 522 -442 -522
mu 0 4 380 383 402 400
f 4 432 523 -443 -523
mu 0 4 383 385 403 402
f 4 433 524 -444 -524
mu 0 4 385 387 404 403
f 4 434 525 -445 -525
mu 0 4 387 389 405 404
f 4 435 526 -446 -526
mu 0 4 389 391 406 405
f 4 436 527 -447 -527
mu 0 4 391 393 407 406
f 4 437 528 -448 -528
mu 0 4 393 395 408 407
f 4 438 529 -449 -529
mu 0 4 395 397 409 408
f 4 439 520 -450 -530
mu 0 4 397 399 410 409
f 4 440 531 -451 -531
mu 0 4 401 400 411 412
f 4 441 532 -452 -532
mu 0 4 400 402 413 411
f 4 442 533 -453 -533
mu 0 4 402 403 414 413
f 4 443 534 -454 -534
mu 0 4 403 404 415 414
f 4 444 535 -455 -535
mu 0 4 404 405 416 415
f 4 445 536 -456 -536
mu 0 4 405 406 417 416
f 4 446 537 -457 -537
mu 0 4 406 407 418 417
f 4 447 538 -458 -538
mu 0 4 407 408 419 418
f 4 448 539 -459 -539
mu 0 4 408 409 420 419
f 4 449 530 -460 -540
mu 0 4 409 410 421 420
f 4 450 541 -461 -541
mu 0 4 412 411 422 423
f 4 451 542 -462 -542
mu 0 4 411 413 424 422
f 4 452 543 -463 -543
mu 0 4 413 414 425 424
f 4 453 544 -464 -544
mu 0 4 414 415 426 425
f 4 454 545 -465 -545
mu 0 4 415 416 427 426
f 4 455 546 -466 -546
mu 0 4 416 417 428 427
f 4 456 547 -467 -547
mu 0 4 417 418 429 428
f 4 457 548 -468 -548
mu 0 4 418 419 430 429
f 4 458 549 -469 -549
mu 0 4 419 420 431 430
f 4 459 540 -470 -550
mu 0 4 420 421 432 431
f 4 460 551 -471 -551
mu 0 4 423 422 433 434
f 4 461 552 -472 -552
mu 0 4 422 424 435 433
f 4 462 553 -473 -553
mu 0 4 424 425 436 435
f 4 463 554 -474 -554
mu 0 4 425 426 437 436
f 4 464 555 -475 -555
mu 0 4 426 427 438 437
f 4 465 556 -476 -556
mu 0 4 427 428 439 438
f 4 466 557 -477 -557
mu 0 4 428 429 440 439
f 4 467 558 -478 -558
mu 0 4 429 430 441 440
f 4 468 559 -479 -559
mu 0 4 430 431 442 441
f 4 469 550 -480 -560
mu 0 4 431 432 443 442
f 4 470 561 -481 -561
mu 0 4 434 433 444 445
f 4 471 562 -482 -562
mu 0 4 433 435 446 444
f 4 472 563 -483 -563
mu 0 4 435 436 447 446
f 4 473 564 -484 -564
mu 0 4 436 437 448 447
f 4 474 565 -485 -565
mu 0 4 437 438 449 448
f 4 475 566 -486 -566
mu 0 4 438 439 450 449
f 4 476 567 -487 -567
mu 0 4 439 440 451 450
f 4 477 568 -488 -568
mu 0 4 440 441 452 451
f 4 478 569 -489 -569
mu 0 4 441 442 453 452
f 4 479 560 -490 -570
mu 0 4 442 443 454 453
f 4 480 571 -491 -571
mu 0 4 445 444 455 456
f 4 481 572 -492 -572
mu 0 4 444 446 457 455
f 4 482 573 -493 -573
mu 0 4 446 447 458 457
f 4 483 574 -494 -574
mu 0 4 447 448 459 458
f 4 484 575 -495 -575
mu 0 4 448 449 460 459
f 4 485 576 -496 -576
mu 0 4 449 450 461 460
f 4 486 577 -497 -577
mu 0 4 450 451 462 461
f 4 487 578 -498 -578
mu 0 4 451 452 463 462
f 4 488 579 -499 -579
mu 0 4 452 453 464 463
f 4 489 570 -500 -580
mu 0 4 453 454 465 464
f 4 490 581 -501 -581
mu 0 4 456 455 466 467
f 4 491 582 -502 -582
mu 0 4 455 457 468 466
f 4 492 583 -503 -583
mu 0 4 457 458 469 468
f 4 493 584 -504 -584
mu 0 4 458 459 470 469
f 4 494 585 -505 -585
mu 0 4 459 460 471 470
f 4 495 586 -506 -586
mu 0 4 460 461 472 471
f 4 496 587 -507 -587
mu 0 4 461 462 473 472
f 4 497 588 -508 -588
mu 0 4 462 463 474 473
f 4 498 589 -509 -589
mu 0 4 463 464 475 474
f 4 499 580 -510 -590
mu 0 4 464 465 476 475
f 3 -421 -591 591
mu 0 3 379 378 477
f 3 -422 -592 592
mu 0 3 382 379 478
f 3 -423 -593 593
mu 0 3 384 382 479
f 3 -424 -594 594
mu 0 3 386 384 480
f 3 -425 -595 595
mu 0 3 388 386 481
f 3 -426 -596 596
mu 0 3 390 388 482
f 3 -427 -597 597
mu 0 3 392 390 483
f 3 -428 -598 598
mu 0 3 394 392 484
f 3 -429 -599 599
mu 0 3 396 394 485
f 3 -430 -600 590
mu 0 3 398 396 486
f 3 500 601 -601
mu 0 3 467 466 487
f 3 501 602 -602
mu 0 3 466 468 488
f 3 502 603 -603
mu 0 3 468 469 489
f 3 503 604 -604
mu 0 3 469 470 490
f 3 504 605 -605
mu 0 3 470 471 491
f 3 505 606 -606
mu 0 3 471 472 492
f 3 506 607 -607
mu 0 3 472 473 493
f 3 507 608 -608
mu 0 3 473 474 494
f 3 508 609 -609
mu 0 3 474 475 495
f 3 509 600 -610
mu 0 3 475 476 496;
setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ;
setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ;
setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ;
createNode transform -s -n "persp";
setAttr ".v" no;
setAttr ".t" -type "double3" 86.019495014992813 -89.09161983695688 64.514621261244642 ;
setAttr ".r" -type "double3" 62.482924915355788 -3.1805546814635176e-015 43.994913994745808 ;
createNode camera -s -n "perspShape" -p "persp";
setAttr -k off ".v" no;
setAttr ".fl" 34.999999999999993;
setAttr ".coi" 139.63812733021405;
setAttr ".imn" -type "string" "persp";
setAttr ".den" -type "string" "persp_depth";
setAttr ".man" -type "string" "persp_mask";
setAttr ".hc" -type "string" "viewSet -p %camera";
createNode transform -s -n "top";
setAttr ".v" no;
setAttr ".t" -type "double3" 0 0 100.1 ;
createNode camera -s -n "topShape" -p "top";
setAttr -k off ".v" no;
setAttr ".rnd" no;
setAttr ".coi" 100.1;
setAttr ".ow" 30;
setAttr ".imn" -type "string" "top";
setAttr ".den" -type "string" "top_depth";
setAttr ".man" -type "string" "top_mask";
setAttr ".hc" -type "string" "viewSet -t %camera";
setAttr ".o" yes;
createNode transform -s -n "front";
setAttr ".v" no;
setAttr ".t" -type "double3" 0 -100.1 0 ;
setAttr ".r" -type "double3" 89.999999999999986 0 0 ;
createNode camera -s -n "frontShape" -p "front";
setAttr -k off ".v" no;
setAttr ".rnd" no;
setAttr ".coi" 100.1;
setAttr ".ow" 30;
setAttr ".imn" -type "string" "front";
setAttr ".den" -type "string" "front_depth";
setAttr ".man" -type "string" "front_mask";
setAttr ".hc" -type "string" "viewSet -f %camera";
setAttr ".o" yes;
createNode transform -s -n "side";
setAttr ".v" no;
setAttr ".t" -type "double3" 100.1 0 0 ;
setAttr ".r" -type "double3" 90 4.7708320221952799e-014 89.999999999999986 ;
createNode camera -s -n "sideShape" -p "side";
setAttr -k off ".v" no;
setAttr ".rnd" no;
setAttr ".coi" 100.1;
setAttr ".ow" 30;
setAttr ".imn" -type "string" "side";
setAttr ".den" -type "string" "side_depth";
setAttr ".man" -type "string" "side_mask";
setAttr ".hc" -type "string" "viewSet -s %camera";
setAttr ".o" yes;
createNode groupId -n "groupId517";
setAttr ".ihi" 0;
createNode shadingEngine -n "lambert3SG";
setAttr ".ihi" 0;
setAttr ".ro" yes;
createNode materialInfo -n "materialInfo2";
createNode lambert -n "red_m";
setAttr ".c" -type "float3" 1 0 0 ;
createNode groupId -n "groupId518";
setAttr ".ihi" 0;
createNode shadingEngine -n "lambert2SG";
setAttr ".ihi" 0;
setAttr ".ro" yes;
createNode materialInfo -n "materialInfo1";
createNode lambert -n "blue_m";
setAttr ".c" -type "float3" 0 0 1 ;
createNode groupId -n "groupId519";
setAttr ".ihi" 0;
createNode shadingEngine -n "lambert4SG";
setAttr ".ihi" 0;
setAttr ".ro" yes;
createNode materialInfo -n "materialInfo3";
createNode lambert -n "green_m";
setAttr ".c" -type "float3" 0 1 0 ;
createNode groupId -n "groupId520";
setAttr ".ihi" 0;
createNode lightLinker -s -n "lightLinker1";
setAttr -s 5 ".lnk";
setAttr -s 5 ".slnk";
createNode displayLayerManager -n "layerManager";
createNode displayLayer -n "defaultLayer";
createNode renderLayerManager -n "renderLayerManager";
createNode renderLayer -n "defaultRenderLayer";
setAttr ".g" yes;
createNode hyperGraphInfo -n "nodeEditorPanel1Info";
createNode hyperView -n "hyperView1";
setAttr ".dag" no;
createNode hyperLayout -n "hyperLayout1";
setAttr ".ihi" 0;
setAttr -s 11 ".hyp";
setAttr ".hyp[0].nvs" 1696;
setAttr ".hyp[1].nvs" 1856;
setAttr ".hyp[2].nvs" 1696;
setAttr ".hyp[3].nvs" 1664;
setAttr ".hyp[4].nvs" 1696;
setAttr ".hyp[5].nvs" 1808;
setAttr ".hyp[6].nvs" 1696;
setAttr ".hyp[7].nvs" 1728;
setAttr ".hyp[8].nvs" 2528;
setAttr ".hyp[9].nvs" 1952;
setAttr ".hyp[10].nvs" 2528;
setAttr ".anf" yes;
createNode script -n "uiConfigurationScriptNode";
setAttr ".b" -type "string" (
"// Maya Mel UI Configuration File.\n//\n// This script is machine generated. Edit at your own risk.\n//\n//\n\nglobal string $gMainPane;\nif (`paneLayout -exists $gMainPane`) {\n\n\tglobal int $gUseScenePanelConfig;\n\tint $useSceneConfig = $gUseScenePanelConfig;\n\tint $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\tint $nVisPanes = `paneLayout -q -nvp $gMainPane`;\n\tint $nPanes = 0;\n\tstring $editorName;\n\tstring $panelName;\n\tstring $itemFilterName;\n\tstring $panelConfig;\n\n\t//\n\t// get current state of the UI\n\t//\n\tsceneUIReplacement -update $gMainPane;\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Top View\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `modelPanel -unParent -l (localizedPanelLabel(\"Top View\")) -mbv $menusOkayInPanels `;\n\t\t\t$editorName = $panelName;\n modelEditor -e \n -camera \"top\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"wireframe\" \n"
+ " -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 1\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 16384\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -maxConstantTransparency 1\n -rendererName \"base_OpenGL_Renderer\" \n"
+ " -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 1\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 1\n"
+ " -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -shadows 0\n $editorName;\nmodelEditor -e -viewSelected 0 $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tmodelPanel -edit -l (localizedPanelLabel(\"Top View\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n modelEditor -e \n -camera \"top\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"wireframe\" \n"
+ " -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 1\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 16384\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -maxConstantTransparency 1\n -rendererName \"base_OpenGL_Renderer\" \n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n"
+ " -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 1\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n"
+ " -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -shadows 0\n $editorName;\nmodelEditor -e -viewSelected 0 $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Side View\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `modelPanel -unParent -l (localizedPanelLabel(\"Side View\")) -mbv $menusOkayInPanels `;\n\t\t\t$editorName = $panelName;\n modelEditor -e \n -camera \"side\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"wireframe\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n"
+ " -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 1\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 16384\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -maxConstantTransparency 1\n -rendererName \"base_OpenGL_Renderer\" \n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n"
+ " -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 1\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n"
+ " -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -shadows 0\n $editorName;\nmodelEditor -e -viewSelected 0 $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tmodelPanel -edit -l (localizedPanelLabel(\"Side View\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n modelEditor -e \n -camera \"side\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"wireframe\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n"
+ " -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 1\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 16384\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -maxConstantTransparency 1\n -rendererName \"base_OpenGL_Renderer\" \n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n"
+ " -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 1\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -dimensions 1\n"
+ " -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -shadows 0\n $editorName;\nmodelEditor -e -viewSelected 0 $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Front View\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `modelPanel -unParent -l (localizedPanelLabel(\"Front View\")) -mbv $menusOkayInPanels `;\n\t\t\t$editorName = $panelName;\n modelEditor -e \n -camera \"front\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"wireframe\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n"
+ " -twoSidedLighting 1\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 16384\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -maxConstantTransparency 1\n -rendererName \"base_OpenGL_Renderer\" \n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n"
+ " -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 1\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n"
+ " -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -shadows 0\n $editorName;\nmodelEditor -e -viewSelected 0 $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tmodelPanel -edit -l (localizedPanelLabel(\"Front View\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n modelEditor -e \n -camera \"front\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"wireframe\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n"
+ " -twoSidedLighting 1\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 16384\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -maxConstantTransparency 1\n -rendererName \"base_OpenGL_Renderer\" \n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 1\n"
+ " -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n"
+ " -motionTrails 1\n -clipGhosts 1\n -shadows 0\n $editorName;\nmodelEditor -e -viewSelected 0 $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Persp View\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `modelPanel -unParent -l (localizedPanelLabel(\"Persp View\")) -mbv $menusOkayInPanels `;\n\t\t\t$editorName = $panelName;\n modelEditor -e \n -camera \"persp\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"smoothShaded\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 1\n -backfaceCulling 0\n -xray 0\n"
+ " -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 16384\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -maxConstantTransparency 1\n -rendererName \"base_OpenGL_Renderer\" \n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n"
+ " -maximumNumHardwareLights 1\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 0\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n"
+ " -locators 1\n -manipulators 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -shadows 0\n $editorName;\nmodelEditor -e -viewSelected 0 $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tmodelPanel -edit -l (localizedPanelLabel(\"Persp View\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n modelEditor -e \n -camera \"persp\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"smoothShaded\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 1\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n"
+ " -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 16384\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -maxConstantTransparency 1\n -rendererName \"base_OpenGL_Renderer\" \n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 1\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n"
+ " -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 0\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -shadows 0\n $editorName;\n"
+ "modelEditor -e -viewSelected 0 $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"outlinerPanel\" (localizedPanelLabel(\"Outliner\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `outlinerPanel -unParent -l (localizedPanelLabel(\"Outliner\")) -mbv $menusOkayInPanels `;\n\t\t\t$editorName = $panelName;\n outlinerEditor -e \n -docTag \"isolOutln_fromSeln\" \n -showShapes 0\n -showReferenceNodes 1\n -showReferenceMembers 1\n -showAttributes 0\n -showConnected 0\n -showAnimCurvesOnly 0\n -showMuteInfo 0\n -organizeByLayer 1\n -showAnimLayerWeight 1\n -autoExpandLayers 1\n -autoExpand 0\n -showDagOnly 1\n -showAssets 1\n -showContainedOnly 1\n -showPublishedAsConnected 0\n -showContainerContents 1\n"
+ " -ignoreDagHierarchy 0\n -expandConnections 0\n -showUpstreamCurves 1\n -showUnitlessCurves 1\n -showCompounds 1\n -showLeafs 1\n -showNumericAttrsOnly 0\n -highlightActive 1\n -autoSelectNewObjects 0\n -doNotSelectNewObjects 0\n -dropIsParent 1\n -transmitFilters 0\n -setFilter \"defaultSetFilter\" \n -showSetMembers 1\n -allowMultiSelection 1\n -alwaysToggleSelect 0\n -directSelect 0\n -displayMode \"DAG\" \n -expandObjects 0\n -setsIgnoreFilters 1\n -containersIgnoreFilters 0\n -editAttrName 0\n -showAttrValues 0\n -highlightSecondary 0\n -showUVAttrsOnly 0\n -showTextureNodesOnly 0\n -attrAlphaOrder \"default\" \n -animLayerFilterOptions \"allAffecting\" \n"
+ " -sortOrder \"none\" \n -longNames 0\n -niceNames 1\n -showNamespace 1\n -showPinIcons 0\n -mapMotionTrails 0\n $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\toutlinerPanel -edit -l (localizedPanelLabel(\"Outliner\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n outlinerEditor -e \n -docTag \"isolOutln_fromSeln\" \n -showShapes 0\n -showReferenceNodes 1\n -showReferenceMembers 1\n -showAttributes 0\n -showConnected 0\n -showAnimCurvesOnly 0\n -showMuteInfo 0\n -organizeByLayer 1\n -showAnimLayerWeight 1\n -autoExpandLayers 1\n -autoExpand 0\n -showDagOnly 1\n -showAssets 1\n -showContainedOnly 1\n -showPublishedAsConnected 0\n -showContainerContents 1\n -ignoreDagHierarchy 0\n -expandConnections 0\n"
+ " -showUpstreamCurves 1\n -showUnitlessCurves 1\n -showCompounds 1\n -showLeafs 1\n -showNumericAttrsOnly 0\n -highlightActive 1\n -autoSelectNewObjects 0\n -doNotSelectNewObjects 0\n -dropIsParent 1\n -transmitFilters 0\n -setFilter \"defaultSetFilter\" \n -showSetMembers 1\n -allowMultiSelection 1\n -alwaysToggleSelect 0\n -directSelect 0\n -displayMode \"DAG\" \n -expandObjects 0\n -setsIgnoreFilters 1\n -containersIgnoreFilters 0\n -editAttrName 0\n -showAttrValues 0\n -highlightSecondary 0\n -showUVAttrsOnly 0\n -showTextureNodesOnly 0\n -attrAlphaOrder \"default\" \n -animLayerFilterOptions \"allAffecting\" \n -sortOrder \"none\" \n -longNames 0\n -niceNames 1\n -showNamespace 1\n -showPinIcons 0\n -mapMotionTrails 0\n"
+ " $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"graphEditor\" (localizedPanelLabel(\"Graph Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"graphEditor\" -l (localizedPanelLabel(\"Graph Editor\")) -mbv $menusOkayInPanels `;\n\n\t\t\t$editorName = ($panelName+\"OutlineEd\");\n outlinerEditor -e \n -showShapes 1\n -showReferenceNodes 0\n -showReferenceMembers 0\n -showAttributes 1\n -showConnected 1\n -showAnimCurvesOnly 1\n -showMuteInfo 0\n -organizeByLayer 1\n -showAnimLayerWeight 1\n -autoExpandLayers 1\n -autoExpand 1\n -showDagOnly 0\n -showAssets 1\n -showContainedOnly 0\n -showPublishedAsConnected 0\n -showContainerContents 0\n"
+ " -ignoreDagHierarchy 0\n -expandConnections 1\n -showUpstreamCurves 1\n -showUnitlessCurves 1\n -showCompounds 0\n -showLeafs 1\n -showNumericAttrsOnly 1\n -highlightActive 0\n -autoSelectNewObjects 1\n -doNotSelectNewObjects 0\n -dropIsParent 1\n -transmitFilters 1\n -setFilter \"0\" \n -showSetMembers 0\n -allowMultiSelection 1\n -alwaysToggleSelect 0\n -directSelect 0\n -displayMode \"DAG\" \n -expandObjects 0\n -setsIgnoreFilters 1\n -containersIgnoreFilters 0\n -editAttrName 0\n -showAttrValues 0\n -highlightSecondary 0\n -showUVAttrsOnly 0\n -showTextureNodesOnly 0\n -attrAlphaOrder \"default\" \n -animLayerFilterOptions \"allAffecting\" \n"
+ " -sortOrder \"none\" \n -longNames 0\n -niceNames 1\n -showNamespace 1\n -showPinIcons 1\n -mapMotionTrails 1\n $editorName;\n\n\t\t\t$editorName = ($panelName+\"GraphEd\");\n animCurveEditor -e \n -displayKeys 1\n -displayTangents 0\n -displayActiveKeys 0\n -displayActiveKeyTangents 1\n -displayInfinities 0\n -autoFit 0\n -snapTime \"integer\" \n -snapValue \"none\" \n -showResults \"off\" \n -showBufferCurves \"off\" \n -smoothness \"fine\" \n -resultSamples 1\n -resultScreenSamples 0\n -resultUpdate \"delayed\" \n -showUpstreamCurves 1\n -clipTime \"on\" \n -stackedCurves 0\n -stackedCurvesMin -1\n -stackedCurvesMax 1\n -stackedCurvesSpace 0.2\n -displayNormalized 0\n"
+ " -preSelectionHighlight 0\n -constrainDrag 0\n -classicMode 1\n $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Graph Editor\")) -mbv $menusOkayInPanels $panelName;\n\n\t\t\t$editorName = ($panelName+\"OutlineEd\");\n outlinerEditor -e \n -showShapes 1\n -showReferenceNodes 0\n -showReferenceMembers 0\n -showAttributes 1\n -showConnected 1\n -showAnimCurvesOnly 1\n -showMuteInfo 0\n -organizeByLayer 1\n -showAnimLayerWeight 1\n -autoExpandLayers 1\n -autoExpand 1\n -showDagOnly 0\n -showAssets 1\n -showContainedOnly 0\n -showPublishedAsConnected 0\n -showContainerContents 0\n -ignoreDagHierarchy 0\n -expandConnections 1\n -showUpstreamCurves 1\n"
+ " -showUnitlessCurves 1\n -showCompounds 0\n -showLeafs 1\n -showNumericAttrsOnly 1\n -highlightActive 0\n -autoSelectNewObjects 1\n -doNotSelectNewObjects 0\n -dropIsParent 1\n -transmitFilters 1\n -setFilter \"0\" \n -showSetMembers 0\n -allowMultiSelection 1\n -alwaysToggleSelect 0\n -directSelect 0\n -displayMode \"DAG\" \n -expandObjects 0\n -setsIgnoreFilters 1\n -containersIgnoreFilters 0\n -editAttrName 0\n -showAttrValues 0\n -highlightSecondary 0\n -showUVAttrsOnly 0\n -showTextureNodesOnly 0\n -attrAlphaOrder \"default\" \n -animLayerFilterOptions \"allAffecting\" \n -sortOrder \"none\" \n -longNames 0\n -niceNames 1\n -showNamespace 1\n"
+ " -showPinIcons 1\n -mapMotionTrails 1\n $editorName;\n\n\t\t\t$editorName = ($panelName+\"GraphEd\");\n animCurveEditor -e \n -displayKeys 1\n -displayTangents 0\n -displayActiveKeys 0\n -displayActiveKeyTangents 1\n -displayInfinities 0\n -autoFit 0\n -snapTime \"integer\" \n -snapValue \"none\" \n -showResults \"off\" \n -showBufferCurves \"off\" \n -smoothness \"fine\" \n -resultSamples 1\n -resultScreenSamples 0\n -resultUpdate \"delayed\" \n -showUpstreamCurves 1\n -clipTime \"on\" \n -stackedCurves 0\n -stackedCurvesMin -1\n -stackedCurvesMax 1\n -stackedCurvesSpace 0.2\n -displayNormalized 0\n -preSelectionHighlight 0\n -constrainDrag 0\n -classicMode 1\n"
+ " $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\tif ($useSceneConfig) {\n\t\tscriptedPanel -e -to $panelName;\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"dopeSheetPanel\" (localizedPanelLabel(\"Dope Sheet\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"dopeSheetPanel\" -l (localizedPanelLabel(\"Dope Sheet\")) -mbv $menusOkayInPanels `;\n\n\t\t\t$editorName = ($panelName+\"OutlineEd\");\n outlinerEditor -e \n -showShapes 1\n -showReferenceNodes 0\n -showReferenceMembers 0\n -showAttributes 1\n -showConnected 1\n -showAnimCurvesOnly 1\n -showMuteInfo 0\n -organizeByLayer 1\n -showAnimLayerWeight 1\n -autoExpandLayers 1\n -autoExpand 0\n -showDagOnly 0\n -showAssets 1\n -showContainedOnly 0\n -showPublishedAsConnected 0\n"
+ " -showContainerContents 0\n -ignoreDagHierarchy 0\n -expandConnections 1\n -showUpstreamCurves 1\n -showUnitlessCurves 0\n -showCompounds 1\n -showLeafs 1\n -showNumericAttrsOnly 1\n -highlightActive 0\n -autoSelectNewObjects 0\n -doNotSelectNewObjects 1\n -dropIsParent 1\n -transmitFilters 0\n -setFilter \"0\" \n -showSetMembers 0\n -allowMultiSelection 1\n -alwaysToggleSelect 0\n -directSelect 0\n -displayMode \"DAG\" \n -expandObjects 0\n -setsIgnoreFilters 1\n -containersIgnoreFilters 0\n -editAttrName 0\n -showAttrValues 0\n -highlightSecondary 0\n -showUVAttrsOnly 0\n -showTextureNodesOnly 0\n -attrAlphaOrder \"default\" \n -animLayerFilterOptions \"allAffecting\" \n"
+ " -sortOrder \"none\" \n -longNames 0\n -niceNames 1\n -showNamespace 1\n -showPinIcons 0\n -mapMotionTrails 1\n $editorName;\n\n\t\t\t$editorName = ($panelName+\"DopeSheetEd\");\n dopeSheetEditor -e \n -displayKeys 1\n -displayTangents 0\n -displayActiveKeys 0\n -displayActiveKeyTangents 0\n -displayInfinities 0\n -autoFit 0\n -snapTime \"integer\" \n -snapValue \"none\" \n -outliner \"dopeSheetPanel1OutlineEd\" \n -showSummary 1\n -showScene 0\n -hierarchyBelow 0\n -showTicks 1\n -selectionWindow 0 0 0 0 \n $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Dope Sheet\")) -mbv $menusOkayInPanels $panelName;\n\n\t\t\t$editorName = ($panelName+\"OutlineEd\");\n"
+ " outlinerEditor -e \n -showShapes 1\n -showReferenceNodes 0\n -showReferenceMembers 0\n -showAttributes 1\n -showConnected 1\n -showAnimCurvesOnly 1\n -showMuteInfo 0\n -organizeByLayer 1\n -showAnimLayerWeight 1\n -autoExpandLayers 1\n -autoExpand 0\n -showDagOnly 0\n -showAssets 1\n -showContainedOnly 0\n -showPublishedAsConnected 0\n -showContainerContents 0\n -ignoreDagHierarchy 0\n -expandConnections 1\n -showUpstreamCurves 1\n -showUnitlessCurves 0\n -showCompounds 1\n -showLeafs 1\n -showNumericAttrsOnly 1\n -highlightActive 0\n -autoSelectNewObjects 0\n -doNotSelectNewObjects 1\n -dropIsParent 1\n -transmitFilters 0\n"
+ " -setFilter \"0\" \n -showSetMembers 0\n -allowMultiSelection 1\n -alwaysToggleSelect 0\n -directSelect 0\n -displayMode \"DAG\" \n -expandObjects 0\n -setsIgnoreFilters 1\n -containersIgnoreFilters 0\n -editAttrName 0\n -showAttrValues 0\n -highlightSecondary 0\n -showUVAttrsOnly 0\n -showTextureNodesOnly 0\n -attrAlphaOrder \"default\" \n -animLayerFilterOptions \"allAffecting\" \n -sortOrder \"none\" \n -longNames 0\n -niceNames 1\n -showNamespace 1\n -showPinIcons 0\n -mapMotionTrails 1\n $editorName;\n\n\t\t\t$editorName = ($panelName+\"DopeSheetEd\");\n dopeSheetEditor -e \n -displayKeys 1\n -displayTangents 0\n -displayActiveKeys 0\n -displayActiveKeyTangents 0\n"
+ " -displayInfinities 0\n -autoFit 0\n -snapTime \"integer\" \n -snapValue \"none\" \n -outliner \"dopeSheetPanel1OutlineEd\" \n -showSummary 1\n -showScene 0\n -hierarchyBelow 0\n -showTicks 1\n -selectionWindow 0 0 0 0 \n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"clipEditorPanel\" (localizedPanelLabel(\"Trax Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"clipEditorPanel\" -l (localizedPanelLabel(\"Trax Editor\")) -mbv $menusOkayInPanels `;\n\n\t\t\t$editorName = clipEditorNameFromPanel($panelName);\n clipEditor -e \n -displayKeys 0\n -displayTangents 0\n -displayActiveKeys 0\n -displayActiveKeyTangents 0\n -displayInfinities 0\n -autoFit 0\n"
+ " -snapTime \"none\" \n -snapValue \"none\" \n -manageSequencer 0 \n $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Trax Editor\")) -mbv $menusOkayInPanels $panelName;\n\n\t\t\t$editorName = clipEditorNameFromPanel($panelName);\n clipEditor -e \n -displayKeys 0\n -displayTangents 0\n -displayActiveKeys 0\n -displayActiveKeyTangents 0\n -displayInfinities 0\n -autoFit 0\n -snapTime \"none\" \n -snapValue \"none\" \n -manageSequencer 0 \n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"sequenceEditorPanel\" (localizedPanelLabel(\"Camera Sequencer\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"sequenceEditorPanel\" -l (localizedPanelLabel(\"Camera Sequencer\")) -mbv $menusOkayInPanels `;\n"
+ "\t\t\t$editorName = sequenceEditorNameFromPanel($panelName);\n clipEditor -e \n -displayKeys 0\n -displayTangents 0\n -displayActiveKeys 0\n -displayActiveKeyTangents 0\n -displayInfinities 0\n -autoFit 0\n -snapTime \"none\" \n -snapValue \"none\" \n -manageSequencer 1 \n $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Camera Sequencer\")) -mbv $menusOkayInPanels $panelName;\n\n\t\t\t$editorName = sequenceEditorNameFromPanel($panelName);\n clipEditor -e \n -displayKeys 0\n -displayTangents 0\n -displayActiveKeys 0\n -displayActiveKeyTangents 0\n -displayInfinities 0\n -autoFit 0\n -snapTime \"none\" \n -snapValue \"none\" \n -manageSequencer 1 \n $editorName;\n\t\tif (!$useSceneConfig) {\n"
+ "\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"hyperGraphPanel\" (localizedPanelLabel(\"Hypergraph Hierarchy\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"hyperGraphPanel\" -l (localizedPanelLabel(\"Hypergraph Hierarchy\")) -mbv $menusOkayInPanels `;\n\n\t\t\t$editorName = ($panelName+\"HyperGraphEd\");\n hyperGraph -e \n -graphLayoutStyle \"hierarchicalLayout\" \n -orientation \"horiz\" \n -mergeConnections 0\n -zoom 1\n -animateTransition 0\n -showRelationships 1\n -showShapes 0\n -showDeformers 0\n -showExpressions 0\n -showConstraints 0\n -showUnderworld 0\n -showInvisible 0\n -transitionFrames 1\n -opaqueContainers 0\n -freeform 0\n -imagePosition 0 0 \n -imageScale 1\n"
+ " -imageEnabled 0\n -graphType \"DAG\" \n -heatMapDisplay 0\n -updateSelection 1\n -updateNodeAdded 1\n -useDrawOverrideColor 0\n -limitGraphTraversal -1\n -range 0 0 \n -iconSize \"smallIcons\" \n -showCachedConnections 0\n $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Hypergraph Hierarchy\")) -mbv $menusOkayInPanels $panelName;\n\n\t\t\t$editorName = ($panelName+\"HyperGraphEd\");\n hyperGraph -e \n -graphLayoutStyle \"hierarchicalLayout\" \n -orientation \"horiz\" \n -mergeConnections 0\n -zoom 1\n -animateTransition 0\n -showRelationships 1\n -showShapes 0\n -showDeformers 0\n -showExpressions 0\n -showConstraints 0\n -showUnderworld 0\n -showInvisible 0\n"
+ " -transitionFrames 1\n -opaqueContainers 0\n -freeform 0\n -imagePosition 0 0 \n -imageScale 1\n -imageEnabled 0\n -graphType \"DAG\" \n -heatMapDisplay 0\n -updateSelection 1\n -updateNodeAdded 1\n -useDrawOverrideColor 0\n -limitGraphTraversal -1\n -range 0 0 \n -iconSize \"smallIcons\" \n -showCachedConnections 0\n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"hyperShadePanel\" (localizedPanelLabel(\"Hypershade\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"hyperShadePanel\" -l (localizedPanelLabel(\"Hypershade\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Hypershade\")) -mbv $menusOkayInPanels $panelName;\n"
+ "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"visorPanel\" (localizedPanelLabel(\"Visor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"visorPanel\" -l (localizedPanelLabel(\"Visor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Visor\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"nodeEditorPanel\" (localizedPanelLabel(\"Node Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"nodeEditorPanel\" -l (localizedPanelLabel(\"Node Editor\")) -mbv $menusOkayInPanels `;\n\n\t\t\t$editorName = ($panelName+\"NodeEditorEd\");\n nodeEditor -e \n -allAttributes 0\n -allNodes 0\n -autoSizeNodes 1\n"
+ " -createNodeCommand \"nodeEdCreateNodeCommand\" \n -ignoreAssets 1\n -additiveGraphingMode 0\n -settingsChangedCallback \"nodeEdSyncControls\" \n -traversalDepthLimit -1\n -keyPressCommand \"nodeEdKeyPressCommand\" \n -popupMenuScript \"nodeEdBuildPanelMenus\" \n -island 0\n -showShapes 1\n -showSGShapes 0\n -showTransforms 1\n -syncedSelection 1\n -extendToShapes 1\n $editorName;\n\t\t\tif (`objExists nodeEditorPanel1Info`) nodeEditor -e -restoreInfo nodeEditorPanel1Info $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Node Editor\")) -mbv $menusOkayInPanels $panelName;\n\n\t\t\t$editorName = ($panelName+\"NodeEditorEd\");\n nodeEditor -e \n -allAttributes 0\n -allNodes 0\n -autoSizeNodes 1\n -createNodeCommand \"nodeEdCreateNodeCommand\" \n"
+ " -ignoreAssets 1\n -additiveGraphingMode 0\n -settingsChangedCallback \"nodeEdSyncControls\" \n -traversalDepthLimit -1\n -keyPressCommand \"nodeEdKeyPressCommand\" \n -popupMenuScript \"nodeEdBuildPanelMenus\" \n -island 0\n -showShapes 1\n -showSGShapes 0\n -showTransforms 1\n -syncedSelection 1\n -extendToShapes 1\n $editorName;\n\t\t\tif (`objExists nodeEditorPanel1Info`) nodeEditor -e -restoreInfo nodeEditorPanel1Info $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"createNodePanel\" (localizedPanelLabel(\"Create Node\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"createNodePanel\" -l (localizedPanelLabel(\"Create Node\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n"
+ "\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Create Node\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"polyTexturePlacementPanel\" (localizedPanelLabel(\"UV Texture Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"polyTexturePlacementPanel\" -l (localizedPanelLabel(\"UV Texture Editor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"UV Texture Editor\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"renderWindowPanel\" (localizedPanelLabel(\"Render View\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"renderWindowPanel\" -l (localizedPanelLabel(\"Render View\")) -mbv $menusOkayInPanels `;\n"
+ "\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Render View\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"blendShapePanel\" (localizedPanelLabel(\"Blend Shape\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\tblendShapePanel -unParent -l (localizedPanelLabel(\"Blend Shape\")) -mbv $menusOkayInPanels ;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tblendShapePanel -edit -l (localizedPanelLabel(\"Blend Shape\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"dynRelEdPanel\" (localizedPanelLabel(\"Dynamic Relationships\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"dynRelEdPanel\" -l (localizedPanelLabel(\"Dynamic Relationships\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n"
+ "\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Dynamic Relationships\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"relationshipPanel\" (localizedPanelLabel(\"Relationship Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"relationshipPanel\" -l (localizedPanelLabel(\"Relationship Editor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Relationship Editor\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"referenceEditorPanel\" (localizedPanelLabel(\"Reference Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"referenceEditorPanel\" -l (localizedPanelLabel(\"Reference Editor\")) -mbv $menusOkayInPanels `;\n"
+ "\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Reference Editor\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"componentEditorPanel\" (localizedPanelLabel(\"Component Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"componentEditorPanel\" -l (localizedPanelLabel(\"Component Editor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Component Editor\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"dynPaintScriptedPanelType\" (localizedPanelLabel(\"Paint Effects\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"dynPaintScriptedPanelType\" -l (localizedPanelLabel(\"Paint Effects\")) -mbv $menusOkayInPanels `;\n"
+ "\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Paint Effects\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"scriptEditorPanel\" (localizedPanelLabel(\"Script Editor\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"scriptEditorPanel\" -l (localizedPanelLabel(\"Script Editor\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Script Editor\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"Stereo\" (localizedPanelLabel(\"Stereo\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"Stereo\" -l (localizedPanelLabel(\"Stereo\")) -mbv $menusOkayInPanels `;\nstring $editorName = ($panelName+\"Editor\");\n"
+ " stereoCameraView -e \n -editorChanged \"updateModelPanelBar\" \n -camera \"persp\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"wireframe\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 1\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 16384\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n"
+ " -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -maxConstantTransparency 1\n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 4 4 \n -bumpResolution 4 4 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 0\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n"
+ " -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -shadows 0\n -displayMode \"centerEye\" \n -viewColor 0 0 0 1 \n $editorName;\nstereoCameraView -e -viewSelected 0 $editorName;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Stereo\")) -mbv $menusOkayInPanels $panelName;\n"
+ "string $editorName = ($panelName+\"Editor\");\n stereoCameraView -e \n -editorChanged \"updateModelPanelBar\" \n -camera \"persp\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"wireframe\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 1\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 16384\n -fogging 0\n -fogSource \"fragment\" \n"
+ " -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -maxConstantTransparency 1\n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 4 4 \n -bumpResolution 4 4 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 0\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n"
+ " -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -shadows 0\n -displayMode \"centerEye\" \n -viewColor 0 0 0 1 \n $editorName;\nstereoCameraView -e -viewSelected 0 $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n"
+ "\t\t}\n\t}\n\n\n\tif ($useSceneConfig) {\n string $configName = `getPanel -cwl (localizedPanelLabel(\"Current Layout\"))`;\n if (\"\" != $configName) {\n\t\t\tpanelConfiguration -edit -label (localizedPanelLabel(\"Current Layout\")) \n\t\t\t\t-defaultImage \"vacantCell.xP:/\"\n\t\t\t\t-image \"\"\n\t\t\t\t-sc false\n\t\t\t\t-configString \"global string $gMainPane; paneLayout -e -cn \\\"vertical2\\\" -ps 1 20 100 -ps 2 80 100 $gMainPane;\"\n\t\t\t\t-removeAllPanels\n\t\t\t\t-ap false\n\t\t\t\t\t(localizedPanelLabel(\"Outliner\")) \n\t\t\t\t\t\"outlinerPanel\"\n\t\t\t\t\t\"$panelName = `outlinerPanel -unParent -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels `;\\n$editorName = $panelName;\\noutlinerEditor -e \\n -docTag \\\"isolOutln_fromSeln\\\" \\n -showShapes 0\\n -showReferenceNodes 1\\n -showReferenceMembers 1\\n -showAttributes 0\\n -showConnected 0\\n -showAnimCurvesOnly 0\\n -showMuteInfo 0\\n -organizeByLayer 1\\n -showAnimLayerWeight 1\\n -autoExpandLayers 1\\n -autoExpand 0\\n -showDagOnly 1\\n -showAssets 1\\n -showContainedOnly 1\\n -showPublishedAsConnected 0\\n -showContainerContents 1\\n -ignoreDagHierarchy 0\\n -expandConnections 0\\n -showUpstreamCurves 1\\n -showUnitlessCurves 1\\n -showCompounds 1\\n -showLeafs 1\\n -showNumericAttrsOnly 0\\n -highlightActive 1\\n -autoSelectNewObjects 0\\n -doNotSelectNewObjects 0\\n -dropIsParent 1\\n -transmitFilters 0\\n -setFilter \\\"defaultSetFilter\\\" \\n -showSetMembers 1\\n -allowMultiSelection 1\\n -alwaysToggleSelect 0\\n -directSelect 0\\n -displayMode \\\"DAG\\\" \\n -expandObjects 0\\n -setsIgnoreFilters 1\\n -containersIgnoreFilters 0\\n -editAttrName 0\\n -showAttrValues 0\\n -highlightSecondary 0\\n -showUVAttrsOnly 0\\n -showTextureNodesOnly 0\\n -attrAlphaOrder \\\"default\\\" \\n -animLayerFilterOptions \\\"allAffecting\\\" \\n -sortOrder \\\"none\\\" \\n -longNames 0\\n -niceNames 1\\n -showNamespace 1\\n -showPinIcons 0\\n -mapMotionTrails 0\\n $editorName\"\n"
+ "\t\t\t\t\t\"outlinerPanel -edit -l (localizedPanelLabel(\\\"Outliner\\\")) -mbv $menusOkayInPanels $panelName;\\n$editorName = $panelName;\\noutlinerEditor -e \\n -docTag \\\"isolOutln_fromSeln\\\" \\n -showShapes 0\\n -showReferenceNodes 1\\n -showReferenceMembers 1\\n -showAttributes 0\\n -showConnected 0\\n -showAnimCurvesOnly 0\\n -showMuteInfo 0\\n -organizeByLayer 1\\n -showAnimLayerWeight 1\\n -autoExpandLayers 1\\n -autoExpand 0\\n -showDagOnly 1\\n -showAssets 1\\n -showContainedOnly 1\\n -showPublishedAsConnected 0\\n -showContainerContents 1\\n -ignoreDagHierarchy 0\\n -expandConnections 0\\n -showUpstreamCurves 1\\n -showUnitlessCurves 1\\n -showCompounds 1\\n -showLeafs 1\\n -showNumericAttrsOnly 0\\n -highlightActive 1\\n -autoSelectNewObjects 0\\n -doNotSelectNewObjects 0\\n -dropIsParent 1\\n -transmitFilters 0\\n -setFilter \\\"defaultSetFilter\\\" \\n -showSetMembers 1\\n -allowMultiSelection 1\\n -alwaysToggleSelect 0\\n -directSelect 0\\n -displayMode \\\"DAG\\\" \\n -expandObjects 0\\n -setsIgnoreFilters 1\\n -containersIgnoreFilters 0\\n -editAttrName 0\\n -showAttrValues 0\\n -highlightSecondary 0\\n -showUVAttrsOnly 0\\n -showTextureNodesOnly 0\\n -attrAlphaOrder \\\"default\\\" \\n -animLayerFilterOptions \\\"allAffecting\\\" \\n -sortOrder \\\"none\\\" \\n -longNames 0\\n -niceNames 1\\n -showNamespace 1\\n -showPinIcons 0\\n -mapMotionTrails 0\\n $editorName\"\n"
+ "\t\t\t\t-ap false\n\t\t\t\t\t(localizedPanelLabel(\"Persp View\")) \n\t\t\t\t\t\"modelPanel\"\n"
+ "\t\t\t\t\t\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels `;\\n$editorName = $panelName;\\nmodelEditor -e \\n -cam `findStartUpCamera persp` \\n -useInteractiveMode 0\\n -displayLights \\\"default\\\" \\n -displayAppearance \\\"smoothShaded\\\" \\n -activeOnly 0\\n -ignorePanZoom 0\\n -wireframeOnShaded 0\\n -headsUpDisplay 1\\n -selectionHiliteDisplay 1\\n -useDefaultMaterial 0\\n -bufferMode \\\"double\\\" \\n -twoSidedLighting 1\\n -backfaceCulling 0\\n -xray 0\\n -jointXray 0\\n -activeComponentsXray 0\\n -displayTextures 0\\n -smoothWireframe 0\\n -lineWidth 1\\n -textureAnisotropic 0\\n -textureHilight 1\\n -textureSampling 2\\n -textureDisplay \\\"modulate\\\" \\n -textureMaxSize 16384\\n -fogging 0\\n -fogSource \\\"fragment\\\" \\n -fogMode \\\"linear\\\" \\n -fogStart 0\\n -fogEnd 100\\n -fogDensity 0.1\\n -fogColor 0.5 0.5 0.5 1 \\n -maxConstantTransparency 1\\n -rendererName \\\"base_OpenGL_Renderer\\\" \\n -objectFilterShowInHUD 1\\n -isFiltered 0\\n -colorResolution 256 256 \\n -bumpResolution 512 512 \\n -textureCompression 0\\n -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n -transpInShadows 0\\n -cullingOverride \\\"none\\\" \\n -lowQualityLighting 0\\n -maximumNumHardwareLights 1\\n -occlusionCulling 0\\n -shadingModel 0\\n -useBaseRenderer 0\\n -useReducedRenderer 0\\n -smallObjectCulling 0\\n -smallObjectThreshold -1 \\n -interactiveDisableShadows 0\\n -interactiveBackFaceCull 0\\n -sortTransparent 1\\n -nurbsCurves 1\\n -nurbsSurfaces 1\\n -polymeshes 1\\n -subdivSurfaces 1\\n -planes 1\\n -lights 1\\n -cameras 1\\n -controlVertices 1\\n -hulls 1\\n -grid 0\\n -imagePlane 1\\n -joints 1\\n -ikHandles 1\\n -deformers 1\\n -dynamics 1\\n -fluids 1\\n -hairSystems 1\\n -follicles 1\\n -nCloths 1\\n -nParticles 1\\n -nRigids 1\\n -dynamicConstraints 1\\n -locators 1\\n -manipulators 1\\n -dimensions 1\\n -handles 1\\n -pivots 1\\n -textures 1\\n -strokes 1\\n -motionTrails 1\\n -clipGhosts 1\\n -shadows 0\\n $editorName;\\nmodelEditor -e -viewSelected 0 $editorName\"\n"
+ "\t\t\t\t\t\"modelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels $panelName;\\n$editorName = $panelName;\\nmodelEditor -e \\n -cam `findStartUpCamera persp` \\n -useInteractiveMode 0\\n -displayLights \\\"default\\\" \\n -displayAppearance \\\"smoothShaded\\\" \\n -activeOnly 0\\n -ignorePanZoom 0\\n -wireframeOnShaded 0\\n -headsUpDisplay 1\\n -selectionHiliteDisplay 1\\n -useDefaultMaterial 0\\n -bufferMode \\\"double\\\" \\n -twoSidedLighting 1\\n -backfaceCulling 0\\n -xray 0\\n -jointXray 0\\n -activeComponentsXray 0\\n -displayTextures 0\\n -smoothWireframe 0\\n -lineWidth 1\\n -textureAnisotropic 0\\n -textureHilight 1\\n -textureSampling 2\\n -textureDisplay \\\"modulate\\\" \\n -textureMaxSize 16384\\n -fogging 0\\n -fogSource \\\"fragment\\\" \\n -fogMode \\\"linear\\\" \\n -fogStart 0\\n -fogEnd 100\\n -fogDensity 0.1\\n -fogColor 0.5 0.5 0.5 1 \\n -maxConstantTransparency 1\\n -rendererName \\\"base_OpenGL_Renderer\\\" \\n -objectFilterShowInHUD 1\\n -isFiltered 0\\n -colorResolution 256 256 \\n -bumpResolution 512 512 \\n -textureCompression 0\\n -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n -transpInShadows 0\\n -cullingOverride \\\"none\\\" \\n -lowQualityLighting 0\\n -maximumNumHardwareLights 1\\n -occlusionCulling 0\\n -shadingModel 0\\n -useBaseRenderer 0\\n -useReducedRenderer 0\\n -smallObjectCulling 0\\n -smallObjectThreshold -1 \\n -interactiveDisableShadows 0\\n -interactiveBackFaceCull 0\\n -sortTransparent 1\\n -nurbsCurves 1\\n -nurbsSurfaces 1\\n -polymeshes 1\\n -subdivSurfaces 1\\n -planes 1\\n -lights 1\\n -cameras 1\\n -controlVertices 1\\n -hulls 1\\n -grid 0\\n -imagePlane 1\\n -joints 1\\n -ikHandles 1\\n -deformers 1\\n -dynamics 1\\n -fluids 1\\n -hairSystems 1\\n -follicles 1\\n -nCloths 1\\n -nParticles 1\\n -nRigids 1\\n -dynamicConstraints 1\\n -locators 1\\n -manipulators 1\\n -dimensions 1\\n -handles 1\\n -pivots 1\\n -textures 1\\n -strokes 1\\n -motionTrails 1\\n -clipGhosts 1\\n -shadows 0\\n $editorName;\\nmodelEditor -e -viewSelected 0 $editorName\"\n"
+ "\t\t\t\t$configName;\n\n setNamedPanelLayout (localizedPanelLabel(\"Current Layout\"));\n }\n\n panelHistory -e -clear mainPanelHistory;\n setFocus `paneLayout -q -p1 $gMainPane`;\n sceneUIReplacement -deleteRemaining;\n sceneUIReplacement -clear;\n\t}\n\n\ngrid -spacing 5 -size 12 -divisions 5 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \"\" -homeParameters \"\" -selectionLockParameters \"\";\n}\n");
setAttr ".st" 3;
createNode script -n "sceneConfigurationScriptNode";
setAttr ".b" -type "string" "playbackOptions -min 1 -max 24 -ast 1 -aet 48 ";
setAttr ".st" 6;
select -ne :time1;
setAttr -av -k on ".cch";
setAttr -cb on ".ihi";
setAttr -av -k on ".nds";
setAttr -cb on ".bnm";
setAttr ".o" 6;
setAttr -av ".unw" 6;
select -ne :renderPartition;
setAttr -k on ".cch";
setAttr -cb on ".ihi";
setAttr -k on ".nds";
setAttr -cb on ".bnm";
setAttr -s 5 ".st";
setAttr -cb on ".an";
setAttr -cb on ".pt";
select -ne :initialShadingGroup;
setAttr -k on ".cch";
setAttr -cb on ".ihi";
setAttr -av -k on ".nds";
setAttr -cb on ".bnm";
setAttr -k on ".mwc";
setAttr -cb on ".an";
setAttr -cb on ".il";
setAttr -cb on ".vo";
setAttr -cb on ".eo";
setAttr -cb on ".fo";
setAttr -cb on ".epo";
setAttr ".ro" yes;
setAttr -cb on ".mimt";
setAttr -cb on ".miop";
setAttr -cb on ".mise";
setAttr -cb on ".mism";
setAttr -cb on ".mice";
setAttr -av -cb on ".micc";
setAttr -cb on ".mica";
setAttr -cb on ".micw";
setAttr -cb on ".mirw";
select -ne :initialParticleSE;
setAttr -av -k on ".cch";
setAttr -cb on ".ihi";
setAttr -av -k on ".nds";
setAttr -cb on ".bnm";
setAttr -k on ".mwc";
setAttr -cb on ".an";
setAttr -cb on ".il";
setAttr -cb on ".vo";
setAttr -cb on ".eo";
setAttr -cb on ".fo";
setAttr -cb on ".epo";
setAttr ".ro" yes;
setAttr -cb on ".mimt";
setAttr -cb on ".miop";
setAttr -cb on ".mise";
setAttr -cb on ".mism";
setAttr -cb on ".mice";
setAttr -av -cb on ".micc";
setAttr -cb on ".mica";
setAttr -av -cb on ".micw";
setAttr -cb on ".mirw";
select -ne :defaultShaderList1;
setAttr -k on ".cch";
setAttr -cb on ".ihi";
setAttr -k on ".nds";
setAttr -cb on ".bnm";
setAttr -s 5 ".s";
select -ne :postProcessList1;
setAttr -k on ".cch";
setAttr -cb on ".ihi";
setAttr -k on ".nds";
setAttr -cb on ".bnm";
setAttr -s 2 ".p";
select -ne :defaultRenderingList1;
select -ne :renderGlobalsList1;
setAttr -k on ".cch";
setAttr -cb on ".ihi";
setAttr -k on ".nds";
setAttr -cb on ".bnm";
select -ne :defaultLightSet;
setAttr -k on ".cch";
setAttr -k on ".ihi";
setAttr -av -k on ".nds";
setAttr -k on ".bnm";
setAttr -k on ".mwc";
setAttr -k on ".an";
setAttr -k on ".il";
setAttr -k on ".vo";
setAttr -k on ".eo";
setAttr -k on ".fo";
setAttr -k on ".epo";
setAttr ".ro" yes;
select -ne :defaultObjectSet;
setAttr -k on ".cch";
setAttr -k on ".ihi";
setAttr -k on ".nds";
setAttr -k on ".bnm";
setAttr -k on ".mwc";
setAttr -k on ".an";
setAttr -k on ".il";
setAttr -k on ".vo";
setAttr -k on ".eo";
setAttr -k on ".fo";
setAttr -k on ".epo";
setAttr ".ro" yes;
select -ne :hardwareRenderGlobals;
setAttr -k on ".cch";
setAttr -cb on ".ihi";
setAttr -k on ".nds";
setAttr -cb on ".bnm";
setAttr ".ctrs" 256;
setAttr -av ".btrs" 512;
setAttr -k off ".fbfm";
setAttr -k off -cb on ".ehql";
setAttr -k off -cb on ".eams";
setAttr -k off -cb on ".eeaa";
setAttr -k off -cb on ".engm";
setAttr -k off -cb on ".mes";
setAttr -k off -cb on ".emb";
setAttr -av -k off -cb on ".mbbf";
setAttr -k off -cb on ".mbs";
setAttr -k off -cb on ".trm";
setAttr -k off -cb on ".tshc";
setAttr -k off ".enpt";
setAttr -k off -cb on ".clmt";
setAttr -k off -cb on ".tcov";
setAttr -k off -cb on ".lith";
setAttr -k off -cb on ".sobc";
setAttr -k off -cb on ".cuth";
setAttr -k off -cb on ".hgcd";
setAttr -k off -cb on ".hgci";
setAttr -k off -cb on ".mgcs";
setAttr -k off -cb on ".twa";
setAttr -k off -cb on ".twz";
setAttr -k on ".hwcc";
setAttr -k on ".hwdp";
setAttr -k on ".hwql";
setAttr -k on ".hwfr";
setAttr -k on ".soll";
setAttr -k on ".sosl";
setAttr -k on ".bswa";
setAttr -k on ".shml";
setAttr -k on ".hwel";
select -ne :defaultHardwareRenderGlobals;
setAttr -k on ".cch";
setAttr -cb on ".ihi";
setAttr -k on ".nds";
setAttr -cb on ".bnm";
setAttr -av -k on ".rp";
setAttr -k on ".cai";
setAttr -k on ".coi";
setAttr -cb on ".bc";
setAttr -av -k on ".bcb";
setAttr -av -k on ".bcg";
setAttr -av -k on ".bcr";
setAttr -k on ".ei";
setAttr -k on ".ex";
setAttr -av -k on ".es";
setAttr -av -k on ".ef";
setAttr -av -k on ".bf";
setAttr -k on ".fii";
setAttr -av -k on ".sf";
setAttr -k on ".gr";
setAttr -k on ".li";
setAttr -k on ".ls";
setAttr -av -k on ".mb";
setAttr -k on ".ti";
setAttr -k on ".txt";
setAttr -k on ".mpr";
setAttr -k on ".wzd";
setAttr ".fn" -type "string" "im";
setAttr -k on ".if";
setAttr ".res" -type "string" "ntsc_4d 646 485 1.333";
setAttr -k on ".as";
setAttr -k on ".ds";
setAttr -k on ".lm";
setAttr -k on ".fir";
setAttr -k on ".aap";
setAttr -k on ".gh";
setAttr -cb on ".sd";
connectAttr "groupId517.id" "lraShape.iog.og[0].gid";
connectAttr "lambert3SG.mwc" "lraShape.iog.og[0].gco";
connectAttr "groupId518.id" "lraShape.iog.og[1].gid";
connectAttr "lambert2SG.mwc" "lraShape.iog.og[1].gco";
connectAttr "groupId519.id" "lraShape.iog.og[2].gid";
connectAttr "lambert4SG.mwc" "lraShape.iog.og[2].gco";
connectAttr "groupId520.id" "lraShape.iog.og[3].gid";
connectAttr ":initialShadingGroup.mwc" "lraShape.iog.og[3].gco";
connectAttr "red_m.oc" "lambert3SG.ss";
connectAttr "lraShape.iog.og[0]" "lambert3SG.dsm" -na;
connectAttr "groupId517.msg" "lambert3SG.gn" -na;
connectAttr "lambert3SG.msg" "materialInfo2.sg";
connectAttr "red_m.msg" "materialInfo2.m";
connectAttr "blue_m.oc" "lambert2SG.ss";
connectAttr "lraShape.iog.og[1]" "lambert2SG.dsm" -na;
connectAttr "groupId518.msg" "lambert2SG.gn" -na;
connectAttr "lambert2SG.msg" "materialInfo1.sg";
connectAttr "blue_m.msg" "materialInfo1.m";
connectAttr "green_m.oc" "lambert4SG.ss";
connectAttr "lraShape.iog.og[2]" "lambert4SG.dsm" -na;
connectAttr "groupId519.msg" "lambert4SG.gn" -na;
connectAttr "lambert4SG.msg" "materialInfo3.sg";
connectAttr "green_m.msg" "materialInfo3.m";
relationship "link" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message";
relationship "link" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message";
relationship "link" ":lightLinker1" "lambert2SG.message" ":defaultLightSet.message";
relationship "link" ":lightLinker1" "lambert3SG.message" ":defaultLightSet.message";
relationship "link" ":lightLinker1" "lambert4SG.message" ":defaultLightSet.message";
relationship "shadowLink" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message";
relationship "shadowLink" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message";
relationship "shadowLink" ":lightLinker1" "lambert2SG.message" ":defaultLightSet.message";
relationship "shadowLink" ":lightLinker1" "lambert3SG.message" ":defaultLightSet.message";
relationship "shadowLink" ":lightLinker1" "lambert4SG.message" ":defaultLightSet.message";
connectAttr "layerManager.dli[0]" "defaultLayer.id";
connectAttr "renderLayerManager.rlmi[0]" "defaultRenderLayer.rlid";
connectAttr "hyperView1.msg" "nodeEditorPanel1Info.b[0]";
connectAttr "hyperLayout1.msg" "hyperView1.hl";
connectAttr ":persp.msg" "hyperLayout1.hyp[0].dn";
connectAttr ":perspShape.msg" "hyperLayout1.hyp[1].dn";
connectAttr ":top.msg" "hyperLayout1.hyp[2].dn";
connectAttr ":topShape.msg" "hyperLayout1.hyp[3].dn";
connectAttr ":front.msg" "hyperLayout1.hyp[4].dn";
connectAttr ":frontShape.msg" "hyperLayout1.hyp[5].dn";
connectAttr ":side.msg" "hyperLayout1.hyp[6].dn";
connectAttr ":sideShape.msg" "hyperLayout1.hyp[7].dn";
connectAttr "layerManager.msg" "hyperLayout1.hyp[8].dn";
connectAttr "defaultLayer.msg" "hyperLayout1.hyp[9].dn";
connectAttr "defaultRenderLayer.msg" "hyperLayout1.hyp[10].dn";
connectAttr "lambert2SG.pa" ":renderPartition.st" -na;
connectAttr "lambert3SG.pa" ":renderPartition.st" -na;
connectAttr "lambert4SG.pa" ":renderPartition.st" -na;
connectAttr "lraShape.iog.og[3]" ":initialShadingGroup.dsm" -na;
connectAttr "groupId520.msg" ":initialShadingGroup.gn" -na;
connectAttr "blue_m.msg" ":defaultShaderList1.s" -na;
connectAttr "red_m.msg" ":defaultShaderList1.s" -na;
connectAttr "green_m.msg" ":defaultShaderList1.s" -na;
connectAttr "defaultRenderLayer.msg" ":defaultRenderingList1.r" -na;
connectAttr ":perspShape.msg" ":defaultRenderGlobals.sc";
// End of ART_Root.ma
|