-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoxFaceAnimation_StopStaring.ma
1210 lines (1210 loc) · 120 KB
/
BoxFaceAnimation_StopStaring.ma
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
//Maya ASCII 2013 scene
//Name: BoxFaceAnimation_StopStaring.ma
//Last modified: Sat, Jun 01, 2013 01:42:41 PM
//Codeset: UTF-8
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" "201207040330-835994";
fileInfo "osv" "Mac OS X 10.8.3";
fileInfo "license" "student";
createNode transform -s -n "persp";
setAttr ".v" no;
setAttr ".t" -type "double3" 1.5859359494634897 4.693487707643949 -0.019006066201894073 ;
setAttr ".r" -type "double3" -83.738352729604188 -0.59999999999929443 -4.969889191964474e-17 ;
createNode camera -s -n "perspShape" -p "persp";
setAttr -k off ".v" no;
setAttr ".fl" 34.999999999999986;
setAttr ".coi" 4.7216562263322883;
setAttr ".imn" -type "string" "persp";
setAttr ".den" -type "string" "persp_depth";
setAttr ".man" -type "string" "persp_mask";
setAttr ".tp" -type "double3" 1.5913287724679619 0 -0.53396390459029275 ;
setAttr ".hc" -type "string" "viewSet -p %camera";
createNode transform -s -n "top";
setAttr ".v" no;
setAttr ".t" -type "double3" 0.052048379968194114 100.11474628947803 -0.2257541255572042 ;
setAttr ".r" -type "double3" -89.999999999999986 0 0 ;
createNode camera -s -n "topShape" -p "top";
setAttr -k off ".v" no;
setAttr ".rnd" no;
setAttr ".coi" 100.1;
setAttr ".ow" 4.6401329570167356;
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 0 100.1 ;
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" 0 89.999999999999986 0 ;
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 transform -n "Face";
createNode mesh -n "FaceShape" -p "Face";
addAttr -ci true -sn "mso" -ln "miShadingSamplesOverride" -min 0 -max 1 -at "bool";
addAttr -ci true -sn "msh" -ln "miShadingSamples" -min 0 -smx 8 -at "float";
addAttr -ci true -sn "mdo" -ln "miMaxDisplaceOverride" -min 0 -max 1 -at "bool";
addAttr -ci true -sn "mmd" -ln "miMaxDisplace" -min 0 -smx 1 -at "float";
setAttr -k off ".v";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".uvst[0].uvsn" -type "string" "map1";
setAttr -s 51 ".uvst[0].uvsp[0:50]" -type "float2" 0 -2.9802322e-08
0.10000002 -2.9802322e-08 0.10000002 0.37531894 0 0.24999994 0.19999999 -2.9802322e-08
0.19999999 0.23716533 0.30000001 -2.9802322e-08 0.30000001 0.23716533 0.39999998
-2.9802322e-08 0.39999998 0.37531894 0.5 -2.9802322e-08 0.5 0.24999994 0.10000002
0.49999994 0 0.49999994 0.5 0.49999994 0.39999998 0.49999994 0.10000002 0.624681
0 0.75 0.5 0.75 0.39999998 0.624681 0.10000002 0.99999988 0 0.99999988 0.19999999
0.76283455 0.19999999 0.99999988 0.30000001 0.76283455 0.30000001 0.99999988 0.39999998
0.99999988 0.5 0.99999988 1 -2.9802322e-08 1 0.24999994 0.89999998 0.37531894 0.89999998
-2.9802322e-08 0.79999995 0.23716533 0.79999995 -2.9802322e-08 0.70000005 0.23716533
0.70000005 -2.9802322e-08 0.60000002 0.37531894 0.60000002 -2.9802322e-08 1 0.49999994
0.89999998 0.49999994 0.60000002 0.49999994 1 0.75 0.89999998 0.624681 0.60000002
0.624681 1 0.99999988 0.89999998 0.99999988 0.79999995 0.99999988 0.79999995 0.76283455
0.70000005 0.99999988 0.70000005 0.76283455 0.60000002 0.99999988;
setAttr ".cuvs" -type "string" "map1";
setAttr ".dcc" -type "string" "Ambient+Diffuse";
setAttr ".covm[0]" 0 1 1;
setAttr ".cdvm[0]" 0 1 1;
setAttr ".bnr" 0;
setAttr -s 28 ".pt";
setAttr ".pt[0]" -type "float3" -0.078505412 0 0.51487643 ;
setAttr ".pt[1]" -type "float3" 0 0 0.51487643 ;
setAttr ".pt[2]" -type "float3" 0 0 0.51487643 ;
setAttr ".pt[3]" -type "float3" 0 0 0.51487643 ;
setAttr ".pt[4]" -type "float3" 0 0 0.51487643 ;
setAttr ".pt[5]" -type "float3" 0 0 0.51487643 ;
setAttr ".pt[6]" -type "float3" -0.078505412 0 -1.4901161e-08 ;
setAttr ".pt[12]" -type "float3" -0.078505412 0 0 ;
setAttr ".pt[16]" -type "float3" -0.078505412 0 0 ;
setAttr ".pt[22]" -type "float3" -0.078505412 0 -0.37323001 ;
setAttr ".pt[23]" -type "float3" 0 0 -0.37323001 ;
setAttr ".pt[24]" -type "float3" 0 0 -0.37323001 ;
setAttr ".pt[25]" -type "float3" 0 0 -0.37323001 ;
setAttr ".pt[26]" -type "float3" 0 0 -0.37323001 ;
setAttr ".pt[27]" -type "float3" 0 0 -0.37323001 ;
setAttr ".pt[28]" -type "float3" 0.078505412 0 0.51487643 ;
setAttr ".pt[29]" -type "float3" 0 0 0.51487643 ;
setAttr ".pt[30]" -type "float3" 0 0 0.51487643 ;
setAttr ".pt[31]" -type "float3" 0 0 0.51487643 ;
setAttr ".pt[32]" -type "float3" 0 0 0.51487643 ;
setAttr ".pt[33]" -type "float3" 0.078505412 0 -1.4901161e-08 ;
setAttr ".pt[38]" -type "float3" 0.078505412 0 0 ;
setAttr ".pt[41]" -type "float3" 0.078505412 0 0 ;
setAttr ".pt[46]" -type "float3" 0.078505412 0 -0.37323001 ;
setAttr ".pt[47]" -type "float3" 0 0 -0.37323001 ;
setAttr ".pt[48]" -type "float3" 0 0 -0.37323001 ;
setAttr ".pt[49]" -type "float3" 0 0 -0.37323001 ;
setAttr ".pt[50]" -type "float3" 0 0 -0.37323001 ;
setAttr -s 51 ".vt[0:50]" -0.5 -4.4408922e-17 0.2 -0.40000001 -4.4408922e-17 0.2
-0.30000001 -4.4408922e-17 0.2 -0.19999999 -4.4408922e-17 0.2 -0.099999994 -4.4408922e-17 0.2
0 -4.4408922e-17 0.2 -0.5 -2.2204461e-17 0.1 -0.40000001 -2.2204461e-17 0.049872398
-0.30000001 -2.2204461e-17 0.10513384 -0.19999999 -2.2204461e-17 0.10513384 -0.099999994 -2.2204461e-17 0.049872398
0 -2.2204461e-17 0.1 -0.5 0 0 -0.40000001 2.4651903e-32 -1.8673987e-09 -0.099999994 2.4651903e-32 -1.8673987e-09
0 0 0 -0.5 2.2204462e-17 -0.10000001 -0.40000001 2.2204462e-17 -0.049872406 -0.30000001 2.2204462e-17 -0.10513385
-0.19999999 2.2204462e-17 -0.10513385 -0.099999994 2.2204462e-17 -0.049872406 0 2.2204462e-17 -0.10000001
-0.5 4.4408922e-17 -0.2 -0.40000001 4.4408922e-17 -0.2 -0.30000001 4.4408922e-17 -0.2
-0.19999999 4.4408922e-17 -0.2 -0.099999994 4.4408922e-17 -0.2 0 4.4408922e-17 -0.2
0.5 -4.4408922e-17 0.2 0.40000001 -4.4408922e-17 0.2 0.30000001 -4.4408922e-17 0.2
0.19999999 -4.4408922e-17 0.2 0.099999994 -4.4408922e-17 0.2 0.5 -2.2204461e-17 0.1
0.40000001 -2.2204461e-17 0.049872398 0.30000001 -2.2204461e-17 0.10513384 0.19999999 -2.2204461e-17 0.10513384
0.099999994 -2.2204461e-17 0.049872398 0.5 0 0 0.40000001 2.4651903e-32 -1.8673987e-09
0.099999994 2.4651903e-32 -1.8673987e-09 0.5 2.2204462e-17 -0.10000001 0.40000001 2.2204462e-17 -0.049872406
0.30000001 2.2204462e-17 -0.10513385 0.19999999 2.2204462e-17 -0.10513385 0.099999994 2.2204462e-17 -0.049872406
0.5 4.4408922e-17 -0.2 0.40000001 4.4408922e-17 -0.2 0.30000001 4.4408922e-17 -0.2
0.19999999 4.4408922e-17 -0.2 0.099999994 4.4408922e-17 -0.2;
setAttr -s 80 ".ed[0:79]" 0 1 0 0 6 0 1 2 0 1 7 1 2 3 0 2 8 1 3 4 0
3 9 1 4 5 0 4 10 1 5 11 1 6 7 1 6 12 0 7 8 0 7 13 0 8 9 0 9 10 0 10 11 1 10 14 0
11 15 1 12 13 1 12 16 0 13 17 0 14 15 1 14 20 0 15 21 1 16 17 1 16 22 0 17 18 0 17 23 1
18 19 0 18 24 1 19 20 0 19 25 1 20 21 1 20 26 1 21 27 1 22 23 0 23 24 0 24 25 0 25 26 0
26 27 0 28 29 0 28 33 0 29 30 0 29 34 1 30 31 0 30 35 1 31 32 0 31 36 1 32 5 0 32 37 1
33 34 1 33 38 0 34 35 0 34 39 0 35 36 0 36 37 0 37 11 1 37 40 0 38 39 1 38 41 0 39 42 0
40 15 1 40 45 0 41 42 1 41 46 0 42 43 0 42 47 1 43 44 0 43 48 1 44 45 0 44 49 1 45 21 1
45 50 1 46 47 0 47 48 0 48 49 0 49 50 0 50 27 0;
setAttr -s 28 -ch 112 ".fc[0:27]" -type "polyFaces"
f 4 0 3 -12 -2
mu 0 4 0 1 2 3
f 4 2 5 -14 -4
mu 0 4 1 4 5 2
f 4 4 7 -16 -6
mu 0 4 4 6 7 5
f 4 6 9 -17 -8
mu 0 4 6 8 9 7
f 4 8 10 -18 -10
mu 0 4 8 10 11 9
f 4 11 14 -21 -13
mu 0 4 3 2 12 13
f 4 17 19 -24 -19
mu 0 4 9 11 14 15
f 4 20 22 -27 -22
mu 0 4 13 12 16 17
f 4 23 25 -35 -25
mu 0 4 15 14 18 19
f 4 26 29 -38 -28
mu 0 4 17 16 20 21
f 4 28 31 -39 -30
mu 0 4 16 22 23 20
f 4 30 33 -40 -32
mu 0 4 22 24 25 23
f 4 32 35 -41 -34
mu 0 4 24 19 26 25
f 4 34 36 -42 -36
mu 0 4 19 18 27 26
f 4 43 52 -46 -43
mu 0 4 28 29 30 31
f 4 45 54 -48 -45
mu 0 4 31 30 32 33
f 4 47 56 -50 -47
mu 0 4 33 32 34 35
f 4 49 57 -52 -49
mu 0 4 35 34 36 37
f 4 51 58 -11 -51
mu 0 4 37 36 11 10
f 4 53 60 -56 -53
mu 0 4 29 38 39 30
f 4 59 63 -20 -59
mu 0 4 36 40 14 11
f 4 61 65 -63 -61
mu 0 4 38 41 42 39
f 4 64 73 -26 -64
mu 0 4 40 43 18 14
f 4 66 75 -69 -66
mu 0 4 41 44 45 42
f 4 68 76 -71 -68
mu 0 4 42 45 46 47
f 4 70 77 -73 -70
mu 0 4 47 46 48 49
f 4 72 78 -75 -72
mu 0 4 49 48 50 43
f 4 74 79 -37 -74
mu 0 4 43 50 27 18;
setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ;
setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ;
setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ;
setAttr ".db" yes;
setAttr ".bck" 1;
setAttr ".vbc" no;
setAttr ".dr" 1;
setAttr ".vnm" 0;
createNode transform -n "UprLids" -p "Face";
setAttr ".rp" -type "double3" 0 0.01 -0.1957592131001018 ;
setAttr ".sp" -type "double3" 0 0.01 -0.1957592131001018 ;
createNode mesh -n "UprLidsShape" -p "UprLids";
setAttr -k off ".v";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".uvst[0].uvsn" -type "string" "map1";
setAttr ".cuvs" -type "string" "map1";
setAttr ".dcc" -type "string" "Ambient+Diffuse";
setAttr ".covm[0]" 0 1 1;
setAttr ".cdvm[0]" 0 1 1;
setAttr ".bnr" 0;
setAttr ".db" yes;
setAttr ".bck" 1;
setAttr ".vbc" no;
setAttr ".vnm" 0;
createNode transform -n "LwrLids" -p "Face";
setAttr ".rp" -type "double3" 0 0.01 0.21662236273985289 ;
setAttr ".sp" -type "double3" 0 0.01 0.21662236273985289 ;
createNode mesh -n "LwrLidsShape" -p "LwrLids";
setAttr -k off ".v";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".uvst[0].uvsn" -type "string" "map1";
setAttr -s 4 ".uvst[0].uvsp[0:3]" -type "float2" 0 0 1 0 0 0.25 1
0.25;
setAttr ".cuvs" -type "string" "map1";
setAttr ".dcc" -type "string" "Ambient+Diffuse";
setAttr ".covm[0]" 0 1 1;
setAttr ".cdvm[0]" 0 1 1;
setAttr ".bnr" 0;
setAttr -s 4 ".pt[0:3]" -type "float3" 0 0.0099999998 0.21662237
0 0.0099999998 0.21662237 0 0.0099999998 0.21662237 0 0.0099999998 0.21662237;
setAttr -s 4 ".vt[0:3]" -0.5 -2.7755576e-17 0.125 0.5 -2.7755576e-17 0.125
-0.5 2.7755576e-17 -0.125 0.5 2.7755576e-17 -0.125;
setAttr -s 4 ".ed[0:3]" 0 1 0 0 2 0 1 3 0 2 3 0;
setAttr -ch 4 ".fc[0]" -type "polyFaces"
f 4 0 2 -4 -2
mu 0 4 0 1 3 2;
setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ;
setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ;
setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ;
setAttr ".db" yes;
setAttr ".bck" 1;
setAttr ".vbc" no;
setAttr ".vnm" 0;
createNode transform -n "Eyes" -p "Face";
setAttr ".s" -type "double3" 0.1 0.1 0.1 ;
createNode locator -n "EyesShape" -p "Eyes";
setAttr -k off ".v";
createNode transform -n "LEye" -p "Eyes";
setAttr ".s" -type "double3" 10 10 10 ;
setAttr ".rp" -type "double3" 2.4999999999999982 -0.09999999999999841 -9.4283920291646225e-16 ;
setAttr ".sp" -type "double3" 0.24999999999999992 -0.0099999999999998146 -1.6367285933071856e-16 ;
setAttr ".spt" -type "double3" 2.2499999999999991 -0.089999999999998331 -1.4730557339764671e-15 ;
createNode mesh -n "LEyeShape" -p "LEye";
setAttr -k off ".v";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".uvst[0].uvsn" -type "string" "map1";
setAttr -s 24 ".uvst[0].uvsp[0:23]" -type "float2" 0 0.33333334 0.1
0.33333334 0.2 0.33333334 0.30000001 0.33333334 0.40000001 0.33333334 0.5 0.33333334
0.60000002 0.33333334 0.70000005 0.33333334 0.80000007 0.33333334 0.9000001 0.33333334
1.000000119209 0.33333334 0 0.66666669 0.1 0.66666669 0.2 0.66666669 0.30000001 0.66666669
0.40000001 0.66666669 0.5 0.66666669 0.60000002 0.66666669 0.70000005 0.66666669
0.80000007 0.66666669 0.9000001 0.66666669 1.000000119209 0.66666669 0.5 0 0.5 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 ".bnr" 0;
setAttr -s 22 ".pt[0:21]" -type "float3" 2.7366998 2.388 -0.62344342
2.2913551 2.388 -0.49797988 2.0211978 2.388 -0.18230498 2.029418 2.388 0.20300433
2.3128762 2.388 0.51077282 2.7633004 2.388 0.62344348 3.2086449 2.388 0.49797994
3.4788024 2.388 0.18230481 3.470582 2.388 -0.20300417 3.1871243 2.388 -0.51077265
2.7366998 1.592 -0.62344342 2.2913551 1.592 -0.49797988 2.0211978 1.592 -0.18230498
2.029418 1.592 0.20300433 2.3128762 1.592 0.51077282 2.7633004 1.592 0.62344348 3.2086449
1.592 0.49797994 3.4788024 1.592 0.18230481 3.470582 1.592 -0.20300417 3.1871243
1.592 -0.51077265 2.75 2.786 1.7792175e-15 2.75 1.194 1.7792175e-15;
setAttr -s 22 ".vt[0:21]" -2.48790884 -2.4000001 0.69271493 -2.083050251 -2.4000001 0.55331099
-1.83745265 -2.4000001 0.20256108 -1.8449254 -2.4000001 -0.22556037 -2.10261464 -2.4000001 -0.56752533
-2.5120914 -2.4000001 -0.69271499 -2.91694999 -2.4000001 -0.55331105 -3.16254759 -2.4000001 -0.2025609
-3.1550746 -2.4000001 0.22556019 -2.8973856 -2.4000001 0.56752515 -2.48790884 -1.60000002 0.69271493
-2.083050251 -1.60000002 0.55331099 -1.83745265 -1.60000002 0.20256108 -1.8449254 -1.60000002 -0.22556037
-2.10261464 -1.60000002 -0.56752533 -2.5120914 -1.60000002 -0.69271499 -2.91694999 -1.60000002 -0.55331105
-3.16254759 -1.60000002 -0.2025609 -3.1550746 -1.60000002 0.22556019 -2.8973856 -1.60000002 0.56752515
-2.5 -2.79999995 -1.9428903e-15 -2.5 -1.20000005 -1.9428903e-15;
setAttr -s 50 ".ed[0:49]" 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 0 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 10 0 0 10 0 1 11 0 2 12 0 3 13 0 4 14 0 5 15 0 6 16 0 7 17 0 8 18 0 9 19 0
20 0 0 20 1 0 20 2 0 20 3 0 20 4 0 20 5 0 20 6 0 20 7 0 20 8 0 20 9 0 10 21 0 11 21 0
12 21 0 13 21 0 14 21 0 15 21 0 16 21 0 17 21 0 18 21 0 19 21 0;
setAttr -s 30 -ch 100 ".fc[0:29]" -type "polyFaces"
f 4 0 21 -11 -21
mu 0 4 0 1 12 11
f 4 1 22 -12 -22
mu 0 4 1 2 13 12
f 4 2 23 -13 -23
mu 0 4 2 3 14 13
f 4 3 24 -14 -24
mu 0 4 3 4 15 14
f 4 4 25 -15 -25
mu 0 4 4 5 16 15
f 4 5 26 -16 -26
mu 0 4 5 6 17 16
f 4 6 27 -17 -27
mu 0 4 6 7 18 17
f 4 7 28 -18 -28
mu 0 4 7 8 19 18
f 4 8 29 -19 -29
mu 0 4 8 9 20 19
f 4 9 20 -20 -30
mu 0 4 9 10 21 20
f 3 -1 -31 31
mu 0 3 1 0 22
f 3 -2 -32 32
mu 0 3 2 1 22
f 3 -3 -33 33
mu 0 3 3 2 22
f 3 -4 -34 34
mu 0 3 4 3 22
f 3 -5 -35 35
mu 0 3 5 4 22
f 3 -6 -36 36
mu 0 3 6 5 22
f 3 -7 -37 37
mu 0 3 7 6 22
f 3 -8 -38 38
mu 0 3 8 7 22
f 3 -9 -39 39
mu 0 3 9 8 22
f 3 -10 -40 30
mu 0 3 10 9 22
f 3 10 41 -41
mu 0 3 11 12 23
f 3 11 42 -42
mu 0 3 12 13 23
f 3 12 43 -43
mu 0 3 13 14 23
f 3 13 44 -44
mu 0 3 14 15 23
f 3 14 45 -45
mu 0 3 15 16 23
f 3 15 46 -46
mu 0 3 16 17 23
f 3 16 47 -47
mu 0 3 17 18 23
f 3 17 48 -48
mu 0 3 18 19 23
f 3 18 49 -49
mu 0 3 19 20 23
f 3 19 40 -50
mu 0 3 20 21 23;
setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ;
setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ;
setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ;
setAttr ".db" yes;
setAttr ".bck" 1;
setAttr ".vbc" no;
setAttr ".vnm" 0;
createNode transform -n "REye" -p "Eyes";
setAttr ".s" -type "double3" 10 10 10 ;
setAttr ".rp" -type "double3" -2.5 -0.099999999999999353 -1.2490009027033011e-15 ;
setAttr ".sp" -type "double3" -0.25 -0.0099999999999997504 -1.9428902930940239e-16 ;
setAttr ".spt" -type "double3" -2.25 -0.089999999999997748 -1.7486012637846216e-15 ;
createNode mesh -n "REyeShape" -p "REye";
setAttr -k off ".v";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".uvst[0].uvsn" -type "string" "map1";
setAttr ".cuvs" -type "string" "map1";
setAttr ".dcc" -type "string" "Ambient+Diffuse";
setAttr ".covm[0]" 0 1 1;
setAttr ".cdvm[0]" 0 1 1;
setAttr ".bnr" 0;
setAttr ".db" yes;
setAttr ".bck" 1;
setAttr ".vbc" no;
setAttr ".vnm" 0;
createNode transform -n "Brows" -p "Face";
setAttr ".s" -type "double3" 0.1 0.1 0.1 ;
createNode locator -n "BrowsShape" -p "Brows";
setAttr -k off ".v";
createNode transform -n "RBrow" -p "Brows";
setAttr ".t" -type "double3" -2.5 0.5 -2 ;
setAttr ".s" -type "double3" 10 10 10 ;
createNode mesh -n "RBrowShape" -p "RBrow";
setAttr -k off ".v";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".uvst[0].uvsn" -type "string" "map1";
setAttr ".cuvs" -type "string" "map1";
setAttr ".dcc" -type "string" "Ambient+Diffuse";
setAttr ".covm[0]" 0 1 1;
setAttr ".cdvm[0]" 0 1 1;
setAttr ".bnr" 0;
setAttr ".db" yes;
setAttr ".bck" 1;
setAttr ".vbc" no;
setAttr ".vnm" 0;
createNode transform -n "LBrow" -p "Brows";
setAttr ".t" -type "double3" 2.5 0.5 -2 ;
setAttr ".s" -type "double3" 10 10 10 ;
createNode mesh -n "LBrowShape" -p "LBrow";
setAttr -k off ".v";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".uvst[0].uvsn" -type "string" "map1";
setAttr -s 4 ".uvst[0].uvsp[0:3]" -type "float2" 0 0 1 0 0 0.25 1
0.25;
setAttr ".cuvs" -type "string" "map1";
setAttr ".dcc" -type "string" "Ambient+Diffuse";
setAttr ".covm[0]" 0 1 1;
setAttr ".cdvm[0]" 0 1 1;
setAttr ".bnr" 0;
setAttr -s 4 ".vt[0:3]" -0.2 -1.110223e-17 0.050000001 0.2 -1.110223e-17 0.050000001
-0.2 1.110223e-17 -0.050000001 0.2 1.110223e-17 -0.050000001;
setAttr -s 4 ".ed[0:3]" 0 1 0 0 2 0 1 3 0 2 3 0;
setAttr -ch 4 ".fc[0]" -type "polyFaces"
f 4 0 2 -4 -2
mu 0 4 0 1 3 2;
setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ;
setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ;
setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ;
setAttr ".db" yes;
setAttr ".bck" 1;
setAttr ".vbc" no;
setAttr ".vnm" 0;
createNode transform -n "Mouth1" -p "Face";
setAttr ".s" -type "double3" 0.1 0.1 0.1 ;
createNode locator -n "Mouth1Shape" -p "Mouth1";
setAttr -k off ".v";
createNode transform -n "Mouth_small" -p "Mouth1";
setAttr ".t" -type "double3" 0 0.12927085396137319 3.5640201379567484 ;
createNode nurbsCurve -n "Mouth_smallShape" -p "Mouth_small";
setAttr -k off ".v";
setAttr ".cc" -type "nurbsCurve"
3 8 2 no 3
13 -2 -1 0 1 2 3 4 5 6 7 8 9 10
11
0.21871619652103497 1.9749209759483463e-17 -0.0056194868296398741
-3.4635721542741445e-17 2.7929600288012626e-17 -0.0079471544880530057
-0.21871619652103472 1.9749209759483478e-17 -0.0056194868296396989
-0.30931141143070662 8.0932994200366466e-33 -2.3028865485309123e-18
-0.2187161965210348 -1.9749209759483472e-17 0.0056194868296398741
-9.0340536579978625e-17 -2.7929600288012632e-17 0.0079471544880530057
0.21871619652103452 -1.9749209759483478e-17 0.0056194868296398741
0.30931141143070662 -1.5001042797925487e-32 4.26843217832144e-18
0.21871619652103497 1.9749209759483463e-17 -0.0056194868296398741
-3.4635721542741445e-17 2.7929600288012626e-17 -0.0079471544880530057
-0.21871619652103472 1.9749209759483478e-17 -0.0056194868296396989
;
createNode nurbsCurve -n "Mouth_smallShapeOrig" -p "Mouth_small";
setAttr -k off ".v";
setAttr ".io" yes;
setAttr ".cc" -type "nurbsCurve"
3 8 2 no 3
13 -2 -1 0 1 2 3 4 5 6 7 8 9 10
11
0.3225290716185869 1.9749209759483463e-17 -0.015744692033800238
-5.2038407151305916e-17 2.7929600288012626e-17 -0.022266357009585989
-0.32252907161858657 1.9749209759483478e-17 -0.015744692033799742
-0.45612498734260853 8.0932994200366466e-33 -6.4522332011095733e-18
-0.32252907161858668 -1.9749209759483472e-17 0.015744692033800238
-1.3743936047556158e-16 -2.7929600288012632e-17 0.022266357009585989
0.3225290716185864 -1.9749209759483478e-17 0.015744692033800238
0.45612498734260853 -1.5001042797925487e-32 1.1959303785598694e-17
0.3225290716185869 1.9749209759483463e-17 -0.015744692033800238
-5.2038407151305916e-17 2.7929600288012626e-17 -0.022266357009585989
-0.32252907161858657 1.9749209759483478e-17 -0.015744692033799742
;
createNode transform -n "WideNarrow" -p "Mouth1";
setAttr ".v" no;
setAttr ".t" -type "double3" -11.163363199278695 0 -2.6057212446207512 ;
setAttr ".s" -type "double3" 10 10 10 ;
createNode nurbsCurve -n "WideNarrowShape" -p "WideNarrow";
setAttr -k off ".v";
setAttr ".cc" -type "nurbsCurve"
3 8 2 no 3
13 -2 -1 0 1 2 3 4 5 6 7 8 9 10
11
0.32917773939151584 1.9749209759483463e-17 -0.0017777581726714509
-5.3111135506753541e-17 2.7929600288012626e-17 -0.002514129718411362
-0.32917773939151546 1.9749209759483478e-17 -0.0017777581726713954
-0.4655276234787975 8.0932994200366466e-33 -7.2853189383635373e-19
-0.32917773939151557 -1.9749209759483472e-17 0.0017777581726714509
-1.4027255824635495e-16 -2.7929600288012632e-17 0.002514129718411362
0.32917773939151523 -1.9749209759483478e-17 0.0017777581726714509
0.4655276234787975 -1.5001042797925487e-32 1.3503439761582366e-18
0.32917773939151584 1.9749209759483463e-17 -0.0017777581726714509
-5.3111135506753541e-17 2.7929600288012626e-17 -0.002514129718411362
-0.32917773939151546 1.9749209759483478e-17 -0.0017777581726713954
;
createNode transform -n "OpenClosed" -p "Mouth1";
setAttr ".v" no;
setAttr ".t" -type "double3" -11.163363199278695 0 -2.6057212446207512 ;
setAttr ".s" -type "double3" 10 10 10 ;
createNode nurbsCurve -n "OpenClosedShape" -p "OpenClosed";
setAttr -k off ".v";
setAttr ".cc" -type "nurbsCurve"
3 8 2 no 3
13 -2 -1 0 1 2 3 4 5 6 7 8 9 10
11
0.19947172688643217 1.9749209759483463e-17 -0.015744692033800238
-5.2038407151305916e-17 2.7929600288012626e-17 -0.022266357009585989
-0.19947172688643175 1.9749209759483478e-17 -0.015744692033799742
-0.28209562147277389 8.0932994200366466e-33 0.038362816951270577
-0.19947172688643189 -1.9749209759483472e-17 0.21117517789570084
-1.3743936047556158e-16 -2.7929600288012632e-17 0.29454320979373111
0.19947172688643175 -1.9749209759483478e-17 0.21117517789570084
0.28209562147277389 -1.5001042797925487e-32 0.038362816951270598
0.19947172688643217 1.9749209759483463e-17 -0.015744692033800238
-5.2038407151305916e-17 2.7929600288012626e-17 -0.022266357009585989
-0.19947172688643175 1.9749209759483478e-17 -0.015744692033799742
;
createNode transform -n "Mouth" -p "Mouth1";
setAttr ".t" -type "double3" 0 0.12927085396137319 3.5640201379567484 ;
setAttr ".s" -type "double3" 10 10 10 ;
createNode nurbsCurve -n "MouthShape" -p "Mouth";
setAttr -k off ".v";
setAttr -s 4 ".iog[0].og";
setAttr ".tw" yes;
createNode nurbsCurve -n "MouthShapeOrig" -p "Mouth";
setAttr -k off ".v";
setAttr ".io" yes;
setAttr ".cc" -type "nurbsCurve"
3 8 2 no 3
13 -2 -1 0 1 2 3 4 5 6 7 8 9 10
11
0.3225290716185869 1.9749209759483463e-17 -0.015744692033800238
-5.2038407151305916e-17 2.7929600288012626e-17 -0.022266357009585989
-0.32252907161858657 1.9749209759483478e-17 -0.015744692033799742
-0.45612498734260853 8.0932994200366466e-33 -6.4522332011095733e-18
-0.32252907161858668 -1.9749209759483472e-17 0.015744692033800238
-1.3743936047556158e-16 -2.7929600288012632e-17 0.022266357009585989
0.3225290716185864 -1.9749209759483478e-17 0.015744692033800238
0.45612498734260853 -1.5001042797925487e-32 1.1959303785598694e-17
0.3225290716185869 1.9749209759483463e-17 -0.015744692033800238
-5.2038407151305916e-17 2.7929600288012626e-17 -0.022266357009585989
-0.32252907161858657 1.9749209759483478e-17 -0.015744692033799742
;
createNode transform -n "Ctrl_Prnt";
setAttr ".t" -type "double3" -1.1258515583986723 0 0.48420475048758954 ;
setAttr ".s" -type "double3" 0.25 0.25 0.25 ;
createNode locator -n "Ctrl_PrntShape" -p "Ctrl_Prnt";
setAttr -k off ".v";
createNode transform -n "Ctrl_Mouth" -p "Ctrl_Prnt";
setAttr ".t" -type "double3" -0.22827048862207722 0 0.22664450716387607 ;
setAttr -k off ".ty";
setAttr -k off ".rx";
setAttr -k off ".ry";
setAttr -k off ".rz";
setAttr ".s" -type "double3" 4 4 4 ;
setAttr -k off ".sx";
setAttr -k off ".sy";
setAttr -k off ".sz";
setAttr ".mntl" -type "double3" -1 0 -1 ;
setAttr ".mxtl" -type "double3" 1 0 1 ;
setAttr ".mtxe" yes;
setAttr ".mtye" yes;
setAttr ".mtze" yes;
setAttr ".xtxe" yes;
setAttr ".xtye" yes;
setAttr ".xtze" yes;
createNode nurbsCurve -n "Ctrl_MouthShape" -p "Ctrl_Mouth";
setAttr -k off ".v";
setAttr ".tw" yes;
createNode transform -n "Ctrl_Prnt1";
setAttr ".t" -type "double3" -1.1369734078148372 0 -0.45602823136101223 ;
setAttr ".s" -type "double3" 0.25 0.25 0.25 ;
createNode locator -n "Ctrl_Prnt1Shape" -p "Ctrl_Prnt1";
setAttr -k off ".v";
createNode transform -n "Ctrl_Face" -p "Ctrl_Prnt1";
setAttr ".t" -type "double3" -0.021932759060197426 0 -0.023558740518397681 ;
setAttr -k off ".ty";
setAttr -k off ".rx";
setAttr -k off ".ry";
setAttr -k off ".rz";
setAttr ".s" -type "double3" 4 4 4 ;
setAttr -k off ".sx";
setAttr -k off ".sy";
setAttr -k off ".sz";
setAttr ".mntl" -type "double3" -1 0 -1 ;
setAttr ".mxtl" -type "double3" 1 0 1 ;
setAttr ".mtxe" yes;
setAttr ".mtye" yes;
setAttr ".mtze" yes;
setAttr ".xtxe" yes;
setAttr ".xtye" yes;
setAttr ".xtze" yes;
createNode nurbsCurve -n "Ctrl_FaceShape" -p "Ctrl_Face";
setAttr -k off ".v";
setAttr ".cc" -type "nurbsCurve"
3 8 2 no 3
13 -2 -1 0 1 2 3 4 5 6 7 8 9 10
11
0.078361162489122491 4.798237340988469e-18 -0.078361162489122393
-1.2643170607829328e-17 6.7857323231109131e-18 -0.1108194187554388
-0.078361162489122435 4.7982373409884713e-18 -0.078361162489122435
-0.1108194187554388 1.966335461618786e-33 -3.2112695072372301e-17
-0.078361162489122449 -4.7982373409884698e-18 0.078361162489122393
-3.3392053635905197e-17 -6.7857323231109162e-18 0.11081941875543884
0.078361162489122393 -4.7982373409884721e-18 0.078361162489122449
0.1108194187554388 -3.6446300679047917e-33 5.9521325992805854e-17
0.078361162489122491 4.798237340988469e-18 -0.078361162489122393
-1.2643170607829328e-17 6.7857323231109131e-18 -0.1108194187554388
-0.078361162489122435 4.7982373409884713e-18 -0.078361162489122435
;
createNode transform -n "loftedSurface1";
createNode nurbsSurface -n "loftedSurfaceShape1" -p "loftedSurface1";
addAttr -ci true -sn "mso" -ln "miShadingSamplesOverride" -min 0 -max 1 -at "bool";
addAttr -ci true -sn "msh" -ln "miShadingSamples" -min 0 -smx 8 -at "float";
addAttr -ci true -sn "mdo" -ln "miMaxDisplaceOverride" -min 0 -max 1 -at "bool";
addAttr -ci true -sn "mmd" -ln "miMaxDisplace" -min 0 -smx 1 -at "float";
setAttr -k off ".v";
setAttr ".vir" yes;
setAttr ".vif" yes;
setAttr ".tw" yes;
setAttr ".covm[0]" 0 1 1;
setAttr ".cdvm[0]" 0 1 1;
setAttr ".dvu" 0;
setAttr ".dvv" 0;
setAttr ".cpr" 4;
setAttr ".cps" 4;
createNode transform -n "Ctrl_Prnt2";
setAttr ".t" -type "double3" 1.2310059855700994 0 -0.1802322347968727 ;
setAttr ".s" -type "double3" 0.25 0.25 0.25 ;
createNode locator -n "Ctrl_Prnt2Shape" -p "Ctrl_Prnt2";
setAttr -k off ".v";
createNode transform -n "Ctrl_Eyes" -p "Ctrl_Prnt2";
setAttr ".t" -type "double3" 0.38586475568895917 0 -0.16003323925418389 ;
setAttr -k off ".ty";
setAttr -k off ".rx";
setAttr -k off ".ry";
setAttr -k off ".rz";
setAttr ".s" -type "double3" 4 4 4 ;
setAttr -k off ".sx";
setAttr -k off ".sy";
setAttr -k off ".sz";
setAttr ".mntl" -type "double3" -1 0 -1 ;
setAttr ".mxtl" -type "double3" 1 0 1 ;
setAttr ".mtxe" yes;
setAttr ".mtye" yes;
setAttr ".mtze" yes;
setAttr ".xtxe" yes;
setAttr ".xtye" yes;
setAttr ".xtze" yes;
createNode nurbsCurve -n "Ctrl_EyesShape" -p "Ctrl_Eyes";
setAttr -k off ".v";
setAttr ".cc" -type "nurbsCurve"
3 8 2 no 3
13 -2 -1 0 1 2 3 4 5 6 7 8 9 10
11
0.078361162489122491 4.798237340988469e-18 -0.078361162489122393
-1.2643170607829328e-17 6.7857323231109131e-18 -0.1108194187554388
-0.078361162489122435 4.7982373409884713e-18 -0.078361162489122435
-0.1108194187554388 1.966335461618786e-33 -3.2112695072372301e-17
-0.078361162489122449 -4.7982373409884698e-18 0.078361162489122393
-3.3392053635905197e-17 -6.7857323231109162e-18 0.11081941875543884
0.078361162489122393 -4.7982373409884721e-18 0.078361162489122449
0.1108194187554388 -3.6446300679047917e-33 5.9521325992805854e-17
0.078361162489122491 4.798237340988469e-18 -0.078361162489122393
-1.2643170607829328e-17 6.7857323231109131e-18 -0.1108194187554388
-0.078361162489122435 4.7982373409884713e-18 -0.078361162489122435
;
createNode transform -n "Ctrl_Prnt3";
setAttr ".t" -type "double3" 1.2410701677512257 0 0.48515103320225711 ;
setAttr ".s" -type "double3" 0.25 0.25 0.25 ;
createNode locator -n "Ctrl_Prnt3Shape" -p "Ctrl_Prnt3";
setAttr -k off ".v";
createNode transform -n "Ctrl_Lids" -p "Ctrl_Prnt3";
setAttr ".t" -type "double3" 0.41023648693645764 0 0.067424258638793422 ;
setAttr -k off ".ty";
setAttr -k off ".rx";
setAttr -k off ".ry";
setAttr -k off ".rz";
setAttr ".s" -type "double3" 4 4 4 ;
setAttr -k off ".sx";
setAttr -k off ".sy";
setAttr -k off ".sz";
setAttr ".mntl" -type "double3" -1 0 -1 ;
setAttr ".mxtl" -type "double3" 1 0 1 ;
setAttr ".mtxe" yes;
setAttr ".mtye" yes;
setAttr ".mtze" yes;
setAttr ".xtxe" yes;
setAttr ".xtye" yes;
setAttr ".xtze" yes;
createNode nurbsCurve -n "Ctrl_LidsShape" -p "Ctrl_Lids";
setAttr -k off ".v";
setAttr ".cc" -type "nurbsCurve"
3 8 2 no 3
13 -2 -1 0 1 2 3 4 5 6 7 8 9 10
11
0.078361162489122491 4.798237340988469e-18 -0.078361162489122393
-1.2643170607829328e-17 6.7857323231109131e-18 -0.1108194187554388
-0.078361162489122435 4.7982373409884713e-18 -0.078361162489122435
-0.1108194187554388 1.966335461618786e-33 -3.2112695072372301e-17
-0.078361162489122449 -4.7982373409884698e-18 0.078361162489122393
-3.3392053635905197e-17 -6.7857323231109162e-18 0.11081941875543884
0.078361162489122393 -4.7982373409884721e-18 0.078361162489122449
0.1108194187554388 -3.6446300679047917e-33 5.9521325992805854e-17
0.078361162489122491 4.798237340988469e-18 -0.078361162489122393
-1.2643170607829328e-17 6.7857323231109131e-18 -0.1108194187554388
-0.078361162489122435 4.7982373409884713e-18 -0.078361162489122435
;
createNode transform -n "Ctrl_Prnt4";
setAttr ".t" -type "double3" 1.2240725343563112 0 -0.95424950573463907 ;
setAttr ".s" -type "double3" 0.25 0.25 0.25 ;
createNode locator -n "Ctrl_Prnt4Shape" -p "Ctrl_Prnt4";
setAttr -k off ".v";
createNode transform -n "Ctrl_Brows" -p "Ctrl_Prnt4";
setAttr ".t" -type "double3" 0.044678508849496978 0 0.47684775484615116 ;
setAttr -k off ".ty";
setAttr -k off ".rx";
setAttr -k off ".ry";
setAttr -k off ".rz";
setAttr ".s" -type "double3" 4 4 4 ;
setAttr -k off ".sx";
setAttr -k off ".sy";
setAttr -k off ".sz";
setAttr ".mntl" -type "double3" -1 0 -1 ;
setAttr ".mxtl" -type "double3" 1 0 1 ;
setAttr ".mtxe" yes;
setAttr ".mtye" yes;
setAttr ".mtze" yes;
setAttr ".xtxe" yes;
setAttr ".xtye" yes;
setAttr ".xtze" yes;
createNode nurbsCurve -n "Ctrl_BrowsShape" -p "Ctrl_Brows";
setAttr -k off ".v";
setAttr ".cc" -type "nurbsCurve"
3 8 2 no 3
13 -2 -1 0 1 2 3 4 5 6 7 8 9 10
11
0.078361162489122491 4.798237340988469e-18 -0.078361162489122393
-1.2643170607829328e-17 6.7857323231109131e-18 -0.1108194187554388
-0.078361162489122435 4.7982373409884713e-18 -0.078361162489122435
-0.1108194187554388 1.966335461618786e-33 -3.2112695072372301e-17
-0.078361162489122449 -4.7982373409884698e-18 0.078361162489122393
-3.3392053635905197e-17 -6.7857323231109162e-18 0.11081941875543884
0.078361162489122393 -4.7982373409884721e-18 0.078361162489122449
0.1108194187554388 -3.6446300679047917e-33 5.9521325992805854e-17
0.078361162489122491 4.798237340988469e-18 -0.078361162489122393
-1.2643170607829328e-17 6.7857323231109131e-18 -0.1108194187554388
-0.078361162489122435 4.7982373409884713e-18 -0.078361162489122435
;
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 shadingEngine -n "texturedFacets";
setAttr ".ihi" 0;
setAttr ".ro" yes;
createNode materialInfo -n "materialInfo1";
createNode checker -n "defaultPolygonTexture";
createNode lambert -n "defaultPolygonShader";
createNode groupId -n "groupId6";
setAttr ".ihi" 0;
createNode shadingEngine -n "texturedFacets1";
setAttr ".ihi" 0;
setAttr ".ro" yes;
createNode materialInfo -n "materialInfo2";
createNode polyPlane -n "polyPlane2";
setAttr ".w" 0.4;
setAttr ".h" 0.1;
setAttr ".sw" 1;
setAttr ".sh" 1;
setAttr ".cuv" 2;
createNode polyPlane -n "polyPlane4";
setAttr ".h" 0.25;
setAttr ".sw" 1;
setAttr ".sh" 1;
setAttr ".cuv" 2;
createNode lambert -n "lambert_brow";
setAttr ".c" -type "float3" 0.20311999 0.20311999 0.20311999 ;
createNode shadingEngine -n "lambert2SG";
setAttr ".ihi" 0;
setAttr -s 5 ".dsm";
setAttr ".ro" yes;
createNode materialInfo -n "materialInfo3";
createNode transformGeometry -n "transformGeometry1";
setAttr ".txf" -type "matrix" 1 0 0 0 0 1 0 0 0 0 1 0 0 0.01 -0.1957592131001018 1;
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 \"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(\"Top View\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n modelEditor -e \n -camera \"top\" \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\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 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(\"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 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;\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 -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 -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 -stackedCurves 0\n -stackedCurvesMin -1\n -stackedCurvesMax 1\n -stackedCurvesSpace 0.2\n -displayNormalized 1\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 -stackedCurves 0\n -stackedCurvesMin -1\n -stackedCurvesMax 1\n -stackedCurvesSpace 0.2\n -displayNormalized 1\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\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 \"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}\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\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 -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;\nstring $editorName = ($panelName+\"Editor\");\n stereoCameraView -e \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\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"multiListerPanel\" (localizedPanelLabel(\"Multilister\")) `;\n"
+ "\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"multiListerPanel\" -l (localizedPanelLabel(\"Multilister\")) -mbv $menusOkayInPanels `;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Multilister\")) -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 \"devicePanel\" (localizedPanelLabel(\"Devices\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\tdevicePanel -unParent -l (localizedPanelLabel(\"Devices\")) -mbv $menusOkayInPanels ;\n\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tdevicePanel -edit -l (localizedPanelLabel(\"Devices\")) -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 \"webBrowserPanel\" (localizedPanelLabel(\"Web Browser\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"webBrowserPanel\" -l (localizedPanelLabel(\"Web Browser\")) -mbv $menusOkayInPanels `;\n"
+ "\t\t}\n\t} else {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Web Browser\")) -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 \"hyperGraphPanel\" (localizedPanelLabel(\"Hypergraph Hierarchy1\")) `;\n\tif (\"\" == $panelName) {\n\t\tif ($useSceneConfig) {\n\t\t\t$panelName = `scriptedPanel -unParent -type \"hyperGraphPanel\" -l (localizedPanelLabel(\"Hypergraph Hierarchy1\")) -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 1\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 Hierarchy1\")) -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 1\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 \"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 \"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\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"
+ "\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\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.xpm\"\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 \\\"single\\\" -ps 1 100 100 $gMainPane;\"\n\t\t\t\t-removeAllPanels\n\t\t\t\t-ap false\n\t\t\t\t\t(localizedPanelLabel(\"Top View\")) \n\t\t\t\t\t\"modelPanel\"\n"
+ "\t\t\t\t\t\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\"Top View\\\")) -mbv $menusOkayInPanels `;\\n$editorName = $panelName;\\nmodelEditor -e \\n -cam `findStartUpCamera top` \\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(\\\"Top View\\\")) -mbv $menusOkayInPanels $panelName;\\n$editorName = $panelName;\\nmodelEditor -e \\n -cam `findStartUpCamera top` \\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;
createNode polySphere -n "polySphere1";
setAttr ".r" 0.8;
setAttr ".sa" 10;
setAttr ".sh" 3;
setAttr ".cuv" 1;
createNode deleteComponent -n "deleteComponent1";
setAttr ".dc" -type "componentList" 0;
createNode transformGeometry -n "transformGeometry2";
setAttr ".txf" -type "matrix" 1 0 0 0 0 1 0 0 0 0 1 0 1.4339410908776151 -2 2.0478801107224784 1;
createNode transformGeometry -n "transformGeometry3";
setAttr ".txf" -type "matrix" -0.57357643635104649 0 0.81915204428899202 0 0 1 0 0
-0.81915204428899202 0 -0.57357643635104649 0 1.3877787807814457e-15 4.5796699765787707e-14 -1.9428902930940239e-15 1;
createNode transformGeometry -n "transformGeometry4";
setAttr ".txf" -type "matrix" 0.10000000000000001 0 0 0 0 0.0050000000000000001 0 0
0 0 0.10000000000000001 0 -1.1102230246251563e-16 2.4286128663675299e-17 0 1;
createNode blendShape -n "MouthShapes";
addAttr -ci true -h true -sn "aal" -ln "attributeAliasList" -dt "attributeAlias";
setAttr -s 2 ".w";
setAttr -s 2 ".w";
setAttr -s 2 ".it[0].itg";
setAttr ".aal" -type "attributeAlias" {"WideNarrow","weight[0]","OpenClosed","weight[1]"
} ;
createNode tweak -n "tweak1";
setAttr -s 8 ".pl[0].cp[0:7]" -type "double3" -0.10381287509755197
0 0.010125205204160364 1.7402685608564478e-17 0 0.014319202521532985 0.10381287509755184
0 0.010125205204160045 0.14681357591190194 0 4.1493466525786602e-18 0.1038128750975519
0 -0.010125205204160364 4.7098823895582955e-17 0 -0.014319202521532985 -0.1038128750975519
0 -0.010125205204160364 -0.14681357591190194 0 -7.6908716072772535e-18;
createNode objectSet -n "blendShape1Set";
setAttr ".ihi" 0;
setAttr ".vo" yes;
createNode groupId -n "blendShape1GroupId";
setAttr ".ihi" 0;
createNode groupParts -n "blendShape1GroupParts";
setAttr ".ihi" 0;
setAttr ".ic" -type "componentList" 1 "cv[*]";
createNode objectSet -n "tweakSet1";
setAttr ".ihi" 0;
setAttr ".vo" yes;
createNode groupId -n "groupId8";
setAttr ".ihi" 0;
createNode groupParts -n "groupParts2";
setAttr ".ihi" 0;
setAttr ".ic" -type "componentList" 1 "cv[*]";
createNode expression -n "expression1";
setAttr -k on ".nds";
setAttr ".ixp" -type "string" ".O[0] = .I[0];";
createNode expression -n "expression2";
setAttr -k on ".nds";
setAttr ".ixp" -type "string" ".O[0] = .I[0]";
createNode loft -n "loft1";
setAttr -s 2 ".ic";
setAttr ".u" yes;
setAttr ".rsn" yes;
createNode makeNurbCircle -n "makeNurbCircle1";
setAttr ".nr" -type "double3" 0 1 0 ;
setAttr ".r" 0.1;
createNode expression -n "expression3";
setAttr -k on ".nds";
setAttr ".ixp" -type "string" ".O[0] = .I[0] * -35;";
createNode expression -n "expression4";
setAttr -k on ".nds";
setAttr ".ixp" -type "string" ".O[0] = .I[0] * 15;";
createNode unitConversion -n "unitConversion2";
setAttr ".cf" 0.017453292519943295;
createNode unitConversion -n "unitConversion3";
setAttr ".cf" 0.017453292519943295;
createNode expression -n "expression5";
setAttr -k on ".nds";
setAttr -s 2 ".in";
setAttr -s 2 ".in";
setAttr -s 2 ".out";
setAttr ".ixp" -type "string" ".O[0] = .I[0] * .1;\r.O[1] = .I[1] * .1;";
createNode expression -n "expression6";
setAttr -k on ".nds";
setAttr -s 3 ".in";
setAttr -s 3 ".in";
setAttr -s 2 ".out";
setAttr ".ixp" -type "string" ".O[0] = .I[0] + (.I[1] * .2) ;\r.O[1] = -.I[2] * .1;";
createNode expression -n "expression7";
setAttr -k on ".nds";
setAttr -s 2 ".in";
setAttr -s 2 ".in";
setAttr -s 3 ".out";
setAttr ".ixp" -type "string" ".O[0] = .I[0] * .15;\r.O[1] = .I[1] * 10;\r.O[2] = .I[1] * -10;";
createNode unitConversion -n "unitConversion4";
setAttr ".cf" 0.017453292519943295;
createNode unitConversion -n "unitConversion5";
setAttr ".cf" 0.017453292519943295;
select -ne :time1;
setAttr -av -k on ".cch";
setAttr -cb on ".ihi";
setAttr -k on ".nds";
setAttr -cb on ".bnm";
setAttr ".o" 1;
setAttr ".unw" 1;
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 -s 3 ".dsm";
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;
select -ne :initialParticleSE;
setAttr -k on ".cch";
setAttr -cb on ".ihi";
setAttr -k on ".nds";
setAttr -cb on ".bnm";
setAttr -k on ".mwc";
setAttr -cb on ".an";
setAttr -cb on ".il";