Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
Kaydara FBX Binary  ��FBXHeaderExtension\FBXHeaderVersionI�x
FBXVersionI��EncryptionTypeI�CreationTimeStamp�VersionI��YearI��MonthIDayI'HourI?MinuteI
WSecondItMillisecondIW�'CreatorS"FBX SDK/FBX Plugins version 2013.0�'	SceneInfoSGlobalInfoSceneInfoSUserData
TypeSUserData0VersionIdMetaData^VersionIduTitleS�SubjectS�AuthorS�KeywordsS�RevisionS�CommentS�Properties70��PSDocumentUrlSKStringSUrlSS]C:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_221_Run_FastStop_Idle.fbxN�PSSrcDocumentUrlSKStringSUrlSS]C:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_221_Run_FastStop_Idle.fbx�$PSOriginalSCompoundSS�BPSOriginal|ApplicationVendorSKStringSSSAutodesk#EPSOriginal|ApplicationNameSKStringSSS
MotionBuilderp?PSOriginal|ApplicationVersionSKStringSSS2013�MPSOriginal|DateTime_GMTSDateTimeSSS08/11/2012 21:13:30.592
1PSOriginal|FileNameSKStringSSS=%PS	LastSavedSCompoundSS�CPSLastSaved|ApplicationVendorSKStringSSSAutodesk�FPSLastSaved|ApplicationNameSKStringSSS
MotionBuilder0@PSLastSaved|ApplicationVersionSKStringSSS2013�NPSLastSaved|DateTime_GMTSDateTimeSSS08/11/2012 21:13:30.592�FileIdR+�(� �Ϸɲ!�$��CreationTimeS2012-11-08 16:13:30:599Z6CreatorS1FBX SDK/FBX Plugins version 2013.0 build=20120105�GlobalSettings�VersionI��Properties70�)PSUpAxisSintSIntegerSI	-PS
UpAxisSignSintSIntegerSIS	,PS	FrontAxisSintSIntegerSI�	0PS
FrontAxisSignSintSIntegerSI�	,PS	CoordAxisSintSIntegerSI	
0PS
CoordAxisSignSintSIntegerSIH
1PSOriginalUpAxisSintSIntegerSI�����
5PSOriginalUpAxisSignSintSIntegerSI�
8PSUnitScaleFactorSdoubleSNumberSD�?@PSOriginalUnitScaleFactorSdoubleSNumberSD�?uHPSAmbientColorSColorRGBSColorSD����?D����?D����?�APS
DefaultCameraSKStringSSSProducer Perspective�%PSTimeModeSenumSSI83PS
TimeSpanStartSKTimeSTimeSLx2PSTimeSpanStopSKTimeSTimeSLp6��5�8PSCustomFrameRateSdoubleSNumberSD�	Documents
CountI	!DocumentL~�S	KFbxSceneSScene�
Properties70�
&PSSourceObjectSobjectSS�
;PSActiveAnimStackNameSKStringSSSTake 001�
	RootNodeL:
References�CDefinitionskVersionId�CountI��
ObjectTypeSGlobalSettings�CountI$
ObjectTypeSMotionBuilder_SystemCountI�"

ObjectTypeSModel\CountIT�"PropertyTemplateSFbxNode�"Properties70�2PSQuaternionInterpolateSenumSSI7KPSRotationOffsetSVector3DSVectorSDDD�JPS
RotationPivotSVector3DSVectorSDDD�JPS
ScalingOffsetSVector3DSVectorSDDD>IPSScalingPivotSVector3DSVectorSDDDz.PSTranslationActiveSboolSSI�KPSTranslationMinSVector3DSVectorSDDD,KPSTranslationMaxSVector3DSVectorSDDDf,PSTranslationMinXSboolSSI�,PSTranslationMinYSboolSSI�,PSTranslationMinZSboolSSI,PSTranslationMaxXSboolSSIN,PSTranslationMaxYSboolSSI�,PSTranslationMaxZSboolSSI�*PS
RotationOrderSenumSSI6PSRotationSpaceForLimitOnlySboolSSIM;PSRotationStiffnessXSdoubleSNumberSD�;PSRotationStiffnessYSdoubleSNumberSD�;PSRotationStiffnessZSdoubleSNumberSD0PSAxisLenSdoubleSNumberSD$@sHPSPreRotationSVector3DSVectorSDDD�IPSPostRotationSVector3DSVectorSDDD+PSRotationActiveSboolSSIYHPSRotationMinSVector3DSVectorSDDD�HPSRotationMaxSVector3DSVectorSDDD�)PSRotationMinXSboolSSI)PSRotationMinYSboolSSIT)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI�)PSRotationMaxYSboolSSI�)PSRotationMaxZSboolSSI/(PSInheritTypeSenumSSIg*PS
ScalingActiveSboolSSI�GPS
ScalingMinSVector3DSVectorSDDDGPS
ScalingMaxSVector3DSVectorSD�?D�?D�?G(PSScalingMinXSboolSSI}(PSScalingMinYSboolSSI�(PSScalingMinZSboolSSI�(PSScalingMaxXSboolSSI(PSScalingMaxYSboolSSIU(PSScalingMaxZSboolSSI�QPSGeometricTranslationSVector3DSVectorSDDDNPSGeometricRotationSVector3DSVectorSDDDkMPSGeometricScalingSVector3DSVectorSD�?D�?D�?�6PS
MinDampRangeXSdoubleSNumberSD�6PS
MinDampRangeYSdoubleSNumberSD76PS
MinDampRangeZSdoubleSNumberSD{6PS
MaxDampRangeXSdoubleSNumberSD�6PS
MaxDampRangeYSdoubleSNumberSD6PS
MaxDampRangeZSdoubleSNumberSDJ9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD�9PSMinDampStrengthZSdoubleSNumberSD9PSMaxDampStrengthXSdoubleSNumberSDf9PSMaxDampStrengthYSdoubleSNumberSD�9PSMaxDampStrengthZSdoubleSNumberSD�7PSPreferedAngleXSdoubleSNumberSD77PSPreferedAngleYSdoubleSNumberSD|7PSPreferedAngleZSdoubleSNumberSD�(PSLookAtPropertySobjectSS�*PSUpVectorPropertySobjectSS !PSShowSboolSSI_ 8PSNegativePercentShapeSupportSboolSSI� 8PSDefaultAttributeIndexSintSIntegerSI����� #PSFreezeSboolSSI!#PSLODBoxSboolSSIc!NPSLcl TranslationSLcl TranslationSSADDD�!HPSLcl RotationSLcl RotationSSADDD
"FPSLcl ScalingSLcl ScalingSSAD�?D�?D�?M"2PS
VisibilityS
VisibilitySSAD�?�"EPSVisibility InheritanceSVisibility InheritanceSSI�=
ObjectTypeS
NodeAttribute#CountIT�=PropertyTemplateS	FbxCamera�=Properties70�#>PSPositionSVectorSSADDDI��#>PSUpVectorSVectorSSADD�?D7$FPSInterestPositionSVectorSSADDDk$&PSRollSRollSSAD�$:PSOpticalCenterXSOpticalCenterXSSAD�$:PSOpticalCenterYSOpticalCenterYSSADM%DPSBackgroundColorSColorSSAD)\���(�?D)\���(�?D)\���(�?�%-PS	TurnTableSNumberSSAD�%1PSDisplayTurnTableIconSboolSSI�%*PS
UseMotionBlurSboolSSI?&2PSUseRealTimeMotionBlurSboolSSI�&9PSMotion Blur IntensitySNumberSSAD�?�&,PSAspectRatioModeSenumSSI'4PSAspectWidthSdoubleSNumberSDt@E'5PSAspectHeightSdoubleSNumberSDi@�'9PSPixelAspectRatioSdoubleSNumberSD�?�'/PSFilmOffsetXSNumberSSAD(/PSFilmOffsetYSNumberSSADF(2PS	FilmWidthSdoubleSNumberSD�&1��?�(3PS
FilmHeightSdoubleSNumberSD/�$���?�(8PSFilmAspectRatioSdoubleSNumberSDUUUUUU�?)9PSFilmSqueezeRatioSdoubleSNumberSD�?N),PSFilmFormatIndexSenumSSI�),PSPreScaleSNumberSSAD�?�)2PSFilmTranslateXSNumberSSAD*2PSFilmTranslateYSNumberSSADH*2PSFilmRollPivotXSNumberSSAD�*2PSFilmRollPivotYSNumberSSAD�*1PS
FilmRollValueSNumberSSAD�**PS
FilmRollOrderSenumSSI6+)PSApertureModeSenumSSIh+$PSGateFitSenumSSI�+4PSFieldOfViewSFieldOfViewSSAD�p9@�+6PSFieldOfViewXSFieldOfViewXSSADD@2,6PSFieldOfViewYSFieldOfViewYSSADD@o,/PSFocalLengthSNumberSSAD&��VrA@�,)PSCameraFormatSenumSSI�,*PS
UseFrameColorSboolSSI2-FPS
FrameColorSColorRGBSColorSD333333�?D333333�?D333333�?e-%PSShowNameSboolSSI�--PSShowInfoOnMovingSboolSSI�-%PSShowGridSboolSSI..PSShowOpticalCenterSboolSSID.'PS
ShowAzimutSboolSSI{.)PSShowTimeCodeSboolSSI�.&PS	ShowAudioSboolSSI/GPS
AudioColorSVector3DSVectorSDD�?DD/2PS	NearPlaneSdoubleSNumberSD$@�/1PSFarPlaneSdoubleSNumberSD@�@�/1PSAutoComputeClipPanesSboolSSI�//PSViewCameraToLookAtSboolSSIA04PSViewFrustumNearFarPlaneSboolSSI�05PSViewFrustumBackPlaneModeSenumSSI�05PSBackPlaneDistanceSNumberSSAD@�@12PSBackPlaneDistanceModeSenumSSIK16PSViewFrustumFrontPlaneModeSenumSSI�16PSFrontPlaneDistanceSNumberSSAD$@�13PSFrontPlaneDistanceModeSenumSSI2%PSLockModeSboolSSID23PSLockInterestNavigationSboolSSI�2.PSBackPlateFitImageSboolSSI�2*PS
BackPlateCropSboolSSI�2,PSBackPlateCenterSboolSSI/3/PSBackPlateKeepRatioSboolSSI}3@PSBackgroundAlphaTresholdSdoubleSNumberSD�?�3*PS
ShowBackplateSboolSSI�34PSBackPlaneOffsetXSNumberSSAD944PSBackPlaneOffsetYSNumberSSAD|45PSBackPlaneRotationSNumberSSAD�43PSBackPlaneScaleXSNumberSSAD�?�43PSBackPlaneScaleYSNumberSSAD�?85,PSBackground TextureSobjectSSu5/PSFrontPlateFitImageSboolSSI�5+PSFrontPlateCropSboolSSI�5-PSFrontPlateCenterSboolSSI'60PSFrontPlateKeepRatioSboolSSIp6;PSForeground OpacitySdoubleSNumberSD�?�6+PSShowFrontplateSboolSSI�65PSFrontPlaneOffsetXSNumberSSAD/75PSFrontPlaneOffsetYSNumberSSADs76PSFrontPlaneRotationSNumberSSAD�74PSFrontPlaneScaleXSNumberSSAD�?�74PSFrontPlaneScaleYSNumberSSAD�?18,PSForeground TextureSobjectSSk8,PSDisplaySafeAreaSboolSSI�84PSDisplaySafeAreaOnRenderSboolSSI�81PSSafeAreaDisplayStyleSenumSSI69<PSSafeAreaAspectRatioSdoubleSNumberSDFUUUUU�?s9/PSUse2DMagnifierZoomSboolSSI�95PS2D Magnifier ZoomSNumberSSADY@�92PS2D Magnifier XSNumberSSADI@6:2PS2D Magnifier YSNumberSSADI@u:1PSCameraProjectionTypeSenumSSI�:2PS	OrthoZoomSdoubleSNumberSD�?�:0PSUseRealTimeDOFAndAASboolSSI-;,PSUseDepthOfFieldSboolSSIc;(PSFocusSourceSenumSSI�;3PS
FocusAngleSdoubleSNumberSD@�;6PS
FocusDistanceSdoubleSNumberSDi@"<,PSUseAntialiasingSboolSSIn<>PSAntialiasingIntensitySdoubleSNumberSD��9�}��?�</PSAntialiasingMethodSenumSSI�<2PSUseAccumulationBufferSboolSSI.=5PSFrameSamplingCountSintSIntegerSIj=.PSFrameSamplingTypeSenumSSI�=APSColorSColorRGBSColorSD�������?D�������?D�������?5>
ObjectTypeSMotionBuilder_Generic(>CountI�@
ObjectTypeSAnimationLayerv>CountI�@PropertyTemplateSFbxAnimLayer�@Properties70�>*PSWeightSNumberSSADY@$?!PSMuteSboolSSIS?!PSSoloSboolSSI�?!PSLockSboolSSI�?APSColorSColorRGBSColorSD�������?D�������?D�������?@&PS	BlendModeSenumSSIH@5PSRotationAccumulationModeSenumSSI�@2PSScaleAccumulationModeSenumSSI�@5PSBlendModeBypassS	ULongLongSSL�B
ObjectTypeSAnimationStack3ACountI�BPropertyTemplateSFbxAnimStack�BProperties70�A+PSDescriptionSKStringSSS�A0PS
LocalStartSKTimeSTimeSL.B/PS	LocalStopSKTimeSTimeSLpB4PSReferenceStartSKTimeSTimeSL�B3PS
ReferenceStopSKTimeSTimeSL*C
ObjectTypeSAnimationCurveNodeCCountI�xC
ObjectTypeSAnimationCurvekCCountI#��	ObjectswH<
NodeAttributeLKd;S#Producer PerspectiveNodeAttributeSCameraGProperties70TD>PSPositionSVectorSSADD b@D�r@�DFPSInterestPositionSVectorSSAD1�ʧ�U�<D�����V@D�DDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?9E1PSDisplayTurnTableIconSboolSSIsE,PSFilmFormatIndexSenumSSI�E4PSFieldOfViewSFieldOfViewSSADD@�E/PSFocalLengthSNumberSSAD �Z5@<F<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?F5PS2D Magnifier ZoomSNumberSSAD�F2PS2D Magnifier XSNumberSSAD�F2PS2D Magnifier YSNumberSSAD-G	TypeFlagsSCameraNGGeometryVersionI|~GPositionDD b@D�r@�GUpDD�?D�GLookAtD1�ʧ�U�<D�����V@D�GShowInfoOnMovingIH	ShowAudioIEH
AudioColorDD�?DjH	CameraOrthoZoomD�?
N6
NodeAttributeL�:d;SProducer FrontNodeAttributeSCamera�LProperties70,I>PSPositionSVectorSSADD�V@DL�@�IFPSInterestPositionSVectorSSADD�V@D�IDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?J1PSDisplayTurnTableIconSboolSSIKJ,PSFilmFormatIndexSenumSSI�J4PSFieldOfViewSFieldOfViewSSADD@�J/PSFocalLengthSNumberSSAD �Z5@
K2PS	NearPlaneSdoubleSNumberSD�?IK1PSFarPlaneSdoubleSNumberSDL�@�K<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�K5PS2D Magnifier ZoomSNumberSSADL2PS2D Magnifier XSNumberSSADVL2PS2D Magnifier YSNumberSSAD�L1PSCameraProjectionTypeSenumSSI�L	TypeFlagsSCamera�LGeometryVersionI|MPositionDD�V@DL�@>MUpDD�?DlMLookAtDD�V@D�MShowInfoOnMovingI�M	ShowAudioI�M
AudioColorDD�?DN	CameraOrthoZoomD�?�S5
NodeAttributeL�>d;SProducer BackNodeAttributeSCamera7RProperties70�N>PSPositionSVectorSSADD�V@DL��OFPSInterestPositionSVectorSSADD�V@DgODPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�O1PSDisplayTurnTableIconSboolSSI�O,PSFilmFormatIndexSenumSSI"P4PSFieldOfViewSFieldOfViewSSADD@_P/PSFocalLengthSNumberSSAD �Z5@�P2PS	NearPlaneSdoubleSNumberSD�?�P1PSFarPlaneSdoubleSNumberSDL�@(Q<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?kQ5PS2D Magnifier ZoomSNumberSSAD�Q2PS2D Magnifier XSNumberSSAD�Q2PS2D Magnifier YSNumberSSAD*R1PSCameraProjectionTypeSenumSSIXR	TypeFlagsSCamerayRGeometryVersionI|�RPositionDD�V@DL���RUpDD�?DSLookAtDD�V@D#SShowInfoOnMovingI>S	ShowAudioIpS
AudioColorDD�?D�S	CameraOrthoZoomD�?8Y6
NodeAttributeLCd;SProducer RightNodeAttributeSCamera�WProperties70WT>PSPositionSVectorSSADL�@D�V@D�TFPSInterestPositionSVectorSSADD�V@D�TDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?<U1PSDisplayTurnTableIconSboolSSIvU,PSFilmFormatIndexSenumSSI�U4PSFieldOfViewSFieldOfViewSSADD@�U/PSFocalLengthSNumberSSAD �Z5@5V2PS	NearPlaneSdoubleSNumberSD�?tV1PSFarPlaneSdoubleSNumberSDL�@�V<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?W5PS2D Magnifier ZoomSNumberSSADAW2PS2D Magnifier XSNumberSSAD�W2PS2D Magnifier YSNumberSSAD�W1PSCameraProjectionTypeSenumSSI�W	TypeFlagsSCameraXGeometryVersionI|?XPositionDL�@D�V@DiXUpDD�?D�XLookAtDD�V@D�XShowInfoOnMovingI�X	ShowAudioIY
AudioColorDD�?D+Y	CameraOrthoZoomD�?�^5
NodeAttributeLش�;SProducer LeftNodeAttributeSCamerab]Properties70�Y>PSPositionSVectorSSADL��D�V@D@ZFPSInterestPositionSVectorSSADD�V@D�ZDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�Z1PSDisplayTurnTableIconSboolSSI[,PSFilmFormatIndexSenumSSIM[4PSFieldOfViewSFieldOfViewSSADD@�[/PSFocalLengthSNumberSSAD �Z5@�[2PS	NearPlaneSdoubleSNumberSD�?	\1PSFarPlaneSdoubleSNumberSDL�@S\<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�\5PS2D Magnifier ZoomSNumberSSAD�\2PS2D Magnifier XSNumberSSAD]2PS2D Magnifier YSNumberSSADU]1PSCameraProjectionTypeSenumSSI�]	TypeFlagsSCamera�]GeometryVersionI|�]PositionDL��D�V@D�]UpDD�?D,^LookAtDD�V@DN^ShowInfoOnMovingIi^	ShowAudioI�^
AudioColorDD�?D�^	CameraOrthoZoomD�?�d4
NodeAttributeL�;SProducer TopNodeAttributeSCameraBcProperties70�_>PSPositionSVectorSSADDy�@D�_>PSUpVectorSVectorSSADDD� `FPSInterestPositionSVectorSSADD�V@Dr`DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�`1PSDisplayTurnTableIconSboolSSI�`,PSFilmFormatIndexSenumSSI-a4PSFieldOfViewSFieldOfViewSSADD@ja/PSFocalLengthSNumberSSAD �Z5@�a2PS	NearPlaneSdoubleSNumberSD�?�a1PSFarPlaneSdoubleSNumberSDL�@3b<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?vb5PS2D Magnifier ZoomSNumberSSAD�b2PS2D Magnifier XSNumberSSAD�b2PS2D Magnifier YSNumberSSAD5c1PSCameraProjectionTypeSenumSSIcc	TypeFlagsSCamera�cGeometryVersionI|�cPositionDDy�@D�cUpDDD�dLookAtDD�V@D.dShowInfoOnMovingIId	ShowAudioI{d
AudioColorDD�?D�d	CameraOrthoZoomD�?�j7
NodeAttributeL�/�;SProducer BottomNodeAttributeSCamera%iProperties70ce>PSPositionSVectorSSADD��D�e>PSUpVectorSVectorSSAD�D�D�?fFPSInterestPositionSVectorSSADD�V@DUfDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�f1PSDisplayTurnTableIconSboolSSI�f,PSFilmFormatIndexSenumSSIg4PSFieldOfViewSFieldOfViewSSADD@Mg/PSFocalLengthSNumberSSAD �Z5@�g2PS	NearPlaneSdoubleSNumberSD�?�g1PSFarPlaneSdoubleSNumberSDL�@h<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?Yh5PS2D Magnifier ZoomSNumberSSAD�h2PS2D Magnifier XSNumberSSAD�h2PS2D Magnifier YSNumberSSADi1PSCameraProjectionTypeSenumSSIFi	TypeFlagsSCameragiGeometryVersionI|�iPositionDD��D�iUpD�D�D�?�iLookAtDD�V@DjShowInfoOnMovingI,j	ShowAudioI^j
AudioColorDD�?D�j	CameraOrthoZoomD�?�k?
NodeAttributeL�3:SCamera SwitcherNodeAttributeSCameraSwitcherJkProperties70=k-PSCamera IndexSIntegerSSAIckVersionIe�kNameSCamera SwitcherModel�kCameraIdI�k
CameraNameId�kCameraIndexNamebl*
NodeAttributeLP��9SNodeAttributeSLimbNodeUl
	TypeFlagsSSkeleton�l*
NodeAttributeLn�9SNodeAttributeSLimbNode�l
	TypeFlagsSSkeletonJm*
NodeAttributeL���9SNodeAttributeSLimbNode=m
	TypeFlagsSSkeleton�m*
NodeAttributeL�K�9SNodeAttributeSLimbNode�m
	TypeFlagsSSkeleton2n*
NodeAttributeLP��9SNodeAttributeSLimbNode%n
	TypeFlagsSSkeleton�n*
NodeAttributeLPX�9SNodeAttributeSLimbNode�n
	TypeFlagsSSkeletono*
NodeAttributeL��9SNodeAttributeSLimbNode
o
	TypeFlagsSSkeleton�o*
NodeAttributeLX�9SNodeAttributeSLimbNode�o
	TypeFlagsSSkeletonp*
NodeAttributeLP&�9SNodeAttributeSLimbNode�o
	TypeFlagsSSkeletonvp*
NodeAttributeL�z�9SNodeAttributeSLimbNodeip
	TypeFlagsSSkeleton�p*
NodeAttributeL�$�9SNodeAttributeSLimbNode�p
	TypeFlagsSSkeleton^q*
NodeAttributeL���9SNodeAttributeSLimbNodeQq
	TypeFlagsSSkeleton�q*
NodeAttributeL�ײ9SNodeAttributeSLimbNode�q
	TypeFlagsSSkeletonFr*
NodeAttributeL�<�9SNodeAttributeSLimbNode9r
	TypeFlagsSSkeleton�r*
NodeAttributeLP�9SNodeAttributeSLimbNode�r
	TypeFlagsSSkeleton.s*
NodeAttributeLP�9SNodeAttributeSLimbNode!s
	TypeFlagsSSkeleton�s*
NodeAttributeL��9SNodeAttributeSLimbNode�s
	TypeFlagsSSkeletont*
NodeAttributeL]�9SNodeAttributeSLimbNode	t
	TypeFlagsSSkeleton�t*
NodeAttributeLP_�9SNodeAttributeSLimbNode}t
	TypeFlagsSSkeleton�t*
NodeAttributeLP;�9SNodeAttributeSLimbNode�t
	TypeFlagsSSkeletonru*
NodeAttributeL�9SNodeAttributeSLimbNodeeu
	TypeFlagsSSkeleton�u*
NodeAttributeLЏ�9SNodeAttributeSLimbNode�u
	TypeFlagsSSkeletonZv*
NodeAttributeLPy�9SNodeAttributeSLimbNodeMv
	TypeFlagsSSkeleton�v*
NodeAttributeL�>�9SNodeAttributeSLimbNode�v
	TypeFlagsSSkeletonBw*
NodeAttributeLPȲ9SNodeAttributeSLimbNode5w
	TypeFlagsSSkeleton�w*
NodeAttributeL��9SNodeAttributeSLimbNode�w
	TypeFlagsSSkeleton*x*
NodeAttributeLP�9SNodeAttributeSLimbNodex
	TypeFlagsSSkeleton�x*
NodeAttributeL��9SNodeAttributeSLimbNode�x
	TypeFlagsSSkeletony*
NodeAttributeLP�9SNodeAttributeSLimbNodey
	TypeFlagsSSkeleton�y*
NodeAttributeL��9SNodeAttributeSLimbNodeyy
	TypeFlagsSSkeleton�y*
NodeAttributeL��9SNodeAttributeSLimbNode�y
	TypeFlagsSSkeletonnz*
NodeAttributeL�e�9SNodeAttributeSLimbNodeaz
	TypeFlagsSSkeleton�z*
NodeAttributeL�o�9SNodeAttributeSLimbNode�z
	TypeFlagsSSkeletonV{*
NodeAttributeL�H�9SNodeAttributeSLimbNodeI{
	TypeFlagsSSkeleton�{*
NodeAttributeLP��9SNodeAttributeSLimbNode�{
	TypeFlagsSSkeleton>|*
NodeAttributeLE�9SNodeAttributeSLimbNode1|
	TypeFlagsSSkeleton�|*
NodeAttributeLЍ�9SNodeAttributeSLimbNode�|
	TypeFlagsSSkeleton&}*
NodeAttributeL>�9SNodeAttributeSLimbNode}
	TypeFlagsSSkeleton�}*
NodeAttributeLP�9SNodeAttributeSLimbNode�}
	TypeFlagsSSkeleton~*
NodeAttributeL�Ͳ9SNodeAttributeSLimbNode~
	TypeFlagsSSkeleton�~*
NodeAttributeL��9SNodeAttributeSLimbNodeu~
	TypeFlagsSSkeleton�~*
NodeAttributeL��9SNodeAttributeSLimbNode�~
	TypeFlagsSSkeletonj*
NodeAttributeLr�9SNodeAttributeSLimbNode]
	TypeFlagsSSkeleton�*
NodeAttributeL�>�9SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonR�*
NodeAttributeLP�9SNodeAttributeSLimbNodeE�
	TypeFlagsSSkeletonƀ*
NodeAttributeLPb�9SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton:�*
NodeAttributeLֲ9SNodeAttributeSLimbNode-�
	TypeFlagsSSkeleton��*
NodeAttributeLP}�9SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton"�*
NodeAttributeL�>�9SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL�g�9SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton
�*
NodeAttributeL��9SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton~�*
NodeAttributeL�f�9SNodeAttributeSLimbNodeq�
	TypeFlagsSSkeleton�*
NodeAttributeL���9SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonf�*
NodeAttributeLP"�9SNodeAttributeSLimbNodeY�
	TypeFlagsSSkeletonڄ*
NodeAttributeLС�9SNodeAttributeSLimbNodë́
	TypeFlagsSSkeletonN�*
NodeAttributeL��9SNodeAttributeSLimbNodeA�
	TypeFlagsSSkeleton…*
NodeAttributeL�b�9SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton6�*
NodeAttributeLг�9SNodeAttributeSLimbNode)�
	TypeFlagsSSkeleton��*
NodeAttributeL��9SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLPG�9SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL�b�9SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL���9SNodeAttributeSLimbNode��
	TypeFlagsSSkeletonz�*
NodeAttributeLPų9SNodeAttributeSLimbNodem�
	TypeFlagsSSkeleton�*
NodeAttributeLP�9SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonb�*
NodeAttributeL��9SNodeAttributeSLimbNodeU�
	TypeFlagsSSkeleton։*
NodeAttributeL7�9SNodeAttributeSLimbNodeɉ
	TypeFlagsSSkeletonJ�*
NodeAttributeL�ó9SNodeAttributeSLimbNode=�
	TypeFlagsSSkeleton��*
NodeAttributeL^�9SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton2�*
NodeAttributeLP��9SNodeAttributeSLimbNode%�
	TypeFlagsSSkeleton��*
NodeAttributeLP��9SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLP*�9SNodeAttributeSLimbNode
�
	TypeFlagsSSkeleton��*
NodeAttributeL��9SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�9SNodeAttributeSLimbNode��
	TypeFlagsSSkeletonv�*
NodeAttributeLD�9SNodeAttributeSLimbNodei�
	TypeFlagsSSkeleton�*
NodeAttributeLP³9SNodeAttributeSLimbNodeݍ
	TypeFlagsSSkeleton^�*
NodeAttributeL���9SNodeAttributeSLimbNodeQ�
	TypeFlagsSSkeleton��4ModelL0Bv)SProducer PerspectiveModelSCamera��VersionI�a�Properties70+�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?Z�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD b@D�r@R�HPSLcl RotationSLcl RotationSSAD�V�D����S@D�V���,PS	MultiTakeSintSIntegerSIǐ-PSManipulationModeSenumSSI*�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDg�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI-�:PSLocalTranslationRefVisibilitySboolSSIm�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI4�9PSHierarchicalCenterVisibilitySboolSSIx�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIB�3PSDefaultKeyingGroupEnumSenumSSIu�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIW�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?ӕ0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSI5�!PSCropSboolSSIf�#PSCenterSboolSSI��&PS	KeepRatioSboolSSIږ2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSIT�*PSResetCameraSActionSSIw�ShadingCW��CullingS
CullingOff�.ModelL(=v)SProducer FrontModelSCamera�VersionI���Properties70n�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSI?�NPSLcl TranslationSLcl TranslationSSADD�V@DL�@��HPSLcl RotationSLcl RotationSSADD�V@Dϙ,PS	MultiTakeSintSIntegerSI
�-PSManipulationModeSenumSSIm�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI(�5PSRotationLimitsVisibilitySboolSSIp�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI0�1PSScalingRefVisibilitySboolSSIw�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@D�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI&�(PSCullingModeSenumSSIa�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI؞0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?I�%PSFitImageSboolSSIx�!PSCropSboolSSI��#PSCenterSboolSSIݟ&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSI_�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCWݠCullingS
CullingOff,�-ModelLHQv)SProducer BackModelSCameraB�VersionI��Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?ߡ!PSShowSboolSSI%�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD�V@DL��עHPSLcl RotationSLcl RotationSSAD�D�V�D�,PS	MultiTakeSintSIntegerSIL�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI'�-PSPivotsVisibilitySenumSSIj�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI3�3PSRotationAxisVisibilitySboolSSIr�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIC�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIǦ3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI2�*PS
TransformableSboolSSIh�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIܧ+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?X�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI��!PSCropSboolSSI�#PSCenterSboolSSI�&PS	KeepRatioSboolSSI_�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI٩*PSResetCameraSActionSSI��ShadingCW�CullingS
CullingOffo�.ModelL�v)SProducer RightModelSCamera��VersionI�)�Properties70�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?"�!PSShowSboolSSIh�8PSDefaultAttributeIndexSintSIntegerSIīNPSLcl TranslationSLcl TranslationSSADL�@D�V@D�HPSLcl RotationSLcl RotationSSAD�f@D�D�f@T�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD/�/PSSetPreferedAngleSActionSSIj�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI5�2PSRotationRefVisibilitySboolSSIv�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI@�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ɯ5PSDefaultKeyingGroupSintSIntegerSI
�3PSDefaultKeyingGroupEnumSenumSSI=�%PSPickableSboolSSIu�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSI]�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?α%PSFitImageSboolSSI��!PSCropSboolSSI.�#PSCenterSboolSSIb�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI?�ShadingCWb�CullingS
CullingOff[�-ModelL3v)SProducer LeftModelSCameradzVersionI��Properties705�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?d�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADL��D�V@D@�,PS	MultiTakeSintSIntegerSI{�-PSManipulationModeSenumSSI޵UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIV�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI!�2PSRotationRefVisibilitySboolSSIb�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI,�6PSGeometricCenterVisibilitySboolSSIr�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI)�%PSPickableSboolSSIa�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIҹ-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSII�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI�!PSCropSboolSSI�#PSCenterSboolSSIN�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSIл4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI+�ShadingCWN�CullingS
CullingOff��,ModelLPVv)SProducer TopModelSCamera��VersionI�V�Properties70 �GPS
ScalingMinSVector3DSVectorSD�?D�?D�?O�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADDy�@DG�HPSLcl RotationSLcl RotationSSAD�V�D�D�V���,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD\�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIڿ5PSRotationLimitsVisibilitySboolSSI"�:PSLocalTranslationRefVisibilitySboolSSIb�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI)�9PSHierarchicalCenterVisibilitySboolSSIm�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI7�3PSDefaultKeyingGroupEnumSenumSSIj�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIL�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI*�!PSCropSboolSSI[�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSII�*PSResetCameraSActionSSIl�ShadingCW��CullingS
CullingOff��/ModelL)v)SProducer BottomModelSCamera��VersionI���Properties70d�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI5�NPSLcl TranslationSLcl TranslationSSADD��D��HPSLcl RotationSLcl RotationSSAD�V@D�D�V@��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIc�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIf�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI&�1PSScalingRefVisibilitySboolSSIm�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@:�5PSDefaultKeyingGroupSintSIntegerSI{�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIW�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�??�%PSFitImageSboolSSIn�!PSCropSboolSSI��#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSIU�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOffD�7ModelL�:SCamera SwitcherModelSCameraSwitcherB�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI%�8PSDefaultAttributeIndexSintSIntegerSI_�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD:�/PSSetPreferedAngleSActionSSIu�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI@�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIK�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIH�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�ShadingCW7�CullingS
CullingOffp�+ModelL:SReferenceModelSLimbNode��VersionI�*�Properties70��+PSRotationActiveSboolSSI"�(PSInheritTypeSenumSSIw�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�EPSVisibility InheritanceSVisibility InheritanceSSIJ�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD%�/PSSetPreferedAngleSActionSSI`�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI+�2PSRotationRefVisibilitySboolSSIl�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI6�6PSGeometricCenterVisibilitySboolSSI|�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI3�%PSPickableSboolSSIk�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�3PSlockInfluenceWeightsSBoolSSAUI@�ShadingCYc�CullingS
CullingOff��&ModelL:SHipsModelSLimbNode��VersionI���Properties70�+PSRotationActiveSboolSSII�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIA�OPSLcl TranslationSLcl TranslationSSA+DD HX@D��IPSLcl RotationSLcl RotationSSA+DDD��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?@�EPSVisibility InheritanceSVisibility InheritanceSSIz�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDU�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI[�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI"�9PSHierarchicalCenterVisibilitySboolSSIf�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI0�3PSDefaultKeyingGroupEnumSenumSSIc�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI<�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffP�'ModelL:SSpineModelSLimbNode2�VersionI�
�Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDU�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD@�D�s"@D�;�?�IPSLcl RotationSLcl RotationSSA+DDD]�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI%�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIC�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIK�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@_�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIA�(PSCullingModeSenumSSI|�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ �ShadingCYC�CullingS
CullingOff�'ModelL:SChestModelSLimbNode��VersionI���Properties70��+PSRotationActiveSboolSSI*�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI!�NPSLcl TranslationSLcl TranslationSSADDA0@D�2ſt�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIL�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIO�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIV�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@#�5PSDefaultKeyingGroupSintSIntegerSId�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI@�-PSShowTrajectoriesSboolSSIp�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��&ModelL ":SNeckModelSLimbNodee�VersionI�=�Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIB�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD`��9@D <�	�;�IPSLcl RotationSLcl RotationSSA+DDD��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIX�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI3�-PSPivotsVisibilitySenumSSIv�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI?�3PSRotationAxisVisibilitySboolSSI~�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI	�6PSGeometricCenterVisibilitySboolSSIO�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI>�*PS
TransformableSboolSSIt�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI0�CPSLimbLength 1SNumberSSAUD�?DDY@S�ShadingCYv�CullingS
CullingOff�&ModelL(':SHeadModelSLimbNode��VersionI��Properties70&�+PSRotationActiveSboolSSI\�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIS�NPSLcl TranslationSLcl TranslationSSAD@;D 4� @D s�?��IPSLcl RotationSLcl RotationSSA+DDD��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?REPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI*UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDg/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI-:PSLocalTranslationRefVisibilitySboolSSIm2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI49PSHierarchicalCenterVisibilitySboolSSIx6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIB3PSDefaultKeyingGroupEnumSenumSSIu%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSIN"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�
)ModelL0,:SLeftEyeModelSLimbNodeFVersionI�r
Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI#GPS
ScalingMaxSVector3DSVectorSDDDi8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD෭@D`#� @D��+@EPSVisibility InheritanceSVisibility InheritanceSSIR,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD-	/PSSetPreferedAngleSActionSSIh	-PSPivotsVisibilitySenumSSI�	5PSRotationLimitsVisibilitySboolSSI�	:PSLocalTranslationRefVisibilitySboolSSI3
2PSRotationRefVisibilitySboolSSIt
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI�
9PSHierarchicalCenterVisibilitySboolSSI>6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSI;%PSPickableSboolSSIs*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI
"PSliwSBoolSSAUIe
CPSLimbLength 1SNumberSSAUD�?DDY@�
ShadingCY�
CullingS
CullingOff�*ModelL81:SRightEyeModelSLimbNode
VersionI�qProperties70^*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI"GPS
ScalingMaxSVector3DSVectorSDDDh8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���D %� @D�+@EPSVisibility InheritanceSVisibility InheritanceSSIQ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD,/PSSetPreferedAngleSActionSSIg-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI22PSRotationRefVisibilitySboolSSIs3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI=6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSI:%PSPickableSboolSSIr*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUIdCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff%ModelL@6:S
JawModelSLimbNodeVersionI��Properties70Y+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD)7PSPreferedAngleXSdoubleSNumberSDUs\O,T9@o8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@�D@���?D`)��?!HPSLcl RotationSLcl RotationSSADD�Y	�<D����<tEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSILUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSIO:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIV9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@#5PSDefaultKeyingGroupSintSIntegerSId3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSI@-PSShowTrajectoriesSboolSSIp"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff�%,ModelLH;:STongueBackModelSLimbNodekVersionI��%Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIHGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@<D��K�D`'�?= EPSVisibility InheritanceSVisibility InheritanceSSIw ,PS	MultiTakeSintSIntegerSI� -PSManipulationModeSenumSSI!UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDR!/PSSetPreferedAngleSActionSSI�!-PSPivotsVisibilitySenumSSI�!5PSRotationLimitsVisibilitySboolSSI":PSLocalTranslationRefVisibilitySboolSSIX"2PSRotationRefVisibilitySboolSSI�"3PSRotationAxisVisibilitySboolSSI�"1PSScalingRefVisibilitySboolSSI#9PSHierarchicalCenterVisibilitySboolSSIc#6PSGeometricCenterVisibilitySboolSSI�#8PSReferentialSizeSdoubleSNumberSD(@�#5PSDefaultKeyingGroupSintSIntegerSI-$3PSDefaultKeyingGroupEnumSenumSSI`$%PSPickableSboolSSI�$*PS
TransformableSboolSSI�$(PSCullingModeSenumSSI	%-PSShowTrajectoriesSboolSSI9%"PSliwSBoolSSAUI�%CPSLimbLength 1SNumberSSAUD�?DDY@�%ShadingCY�%CullingS
CullingOff�-+ModelLP@:STongueTipModelSLimbNode3&VersionI�_-Properties70�&+PSRotationActiveSboolSSI�&(PSInheritTypeSenumSSI'GPS
ScalingMaxSVector3DSVectorSDDDV'8PSDefaultAttributeIndexSintSIntegerSI�'NPSLcl TranslationSLcl TranslationSSAD@<D@���D�}�@(EPSVisibility InheritanceSVisibility InheritanceSSI?(,PS	MultiTakeSintSIntegerSIz(-PSManipulationModeSenumSSI�(UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD)/PSSetPreferedAngleSActionSSIU)-PSPivotsVisibilitySenumSSI�)5PSRotationLimitsVisibilitySboolSSI�):PSLocalTranslationRefVisibilitySboolSSI *2PSRotationRefVisibilitySboolSSIa*3PSRotationAxisVisibilitySboolSSI�*1PSScalingRefVisibilitySboolSSI�*9PSHierarchicalCenterVisibilitySboolSSI++6PSGeometricCenterVisibilitySboolSSIq+8PSReferentialSizeSdoubleSNumberSD(@�+5PSDefaultKeyingGroupSintSIntegerSI�+3PSDefaultKeyingGroupEnumSenumSSI(,%PSPickableSboolSSI`,*PS
TransformableSboolSSI�,(PSCullingModeSenumSSI�,-PSShowTrajectoriesSboolSSI-"PSliwSBoolSSAUIR-CPSLimbLength 1SNumberSSAUD�?DDY@u-ShadingCY�-CullingS
CullingOffp5.ModelL��z:SLeftLipLowerModelSLimbNode�-VersionI�*5Properties70P.+PSRotationActiveSboolSSI�.(PSInheritTypeSenumSSI�.GPS
ScalingMaxSVector3DSVectorSDDD!/8PSDefaultAttributeIndexSintSIntegerSI}/NPSLcl TranslationSLcl TranslationSSAD�"��?D��Y�D��r @�/EPSVisibility InheritanceSVisibility InheritanceSSI
0,PS	MultiTakeSintSIntegerSIE0-PSManipulationModeSenumSSI�0UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�0/PSSetPreferedAngleSActionSSI 1-PSPivotsVisibilitySenumSSIc15PSRotationLimitsVisibilitySboolSSI�1:PSLocalTranslationRefVisibilitySboolSSI�12PSRotationRefVisibilitySboolSSI,23PSRotationAxisVisibilitySboolSSIk21PSScalingRefVisibilitySboolSSI�29PSHierarchicalCenterVisibilitySboolSSI�26PSGeometricCenterVisibilitySboolSSI<38PSReferentialSizeSdoubleSNumberSD(@35PSDefaultKeyingGroupSintSIntegerSI�33PSDefaultKeyingGroupEnumSenumSSI�3%PSPickableSboolSSI+4*PS
TransformableSboolSSIa4(PSCullingModeSenumSSI�4-PSShowTrajectoriesSboolSSI�4"PSliwSBoolSSAUI5CPSLimbLength 1SNumberSSAUD�?DDY@@5ShadingCYc5CullingS
CullingOffm=(ModelL��z:S
JawENDModelSLimbNode�5VersionI�'=Properties706*PS
RotationOrderSenumSSIM6+PSRotationActiveSboolSSI�6(PSInheritTypeSenumSSI�6GPS
ScalingMaxSVector3DSVectorSDDD78PSDefaultAttributeIndexSintSIntegerSIz7NPSLcl TranslationSLcl TranslationSSAD@<D��P�D���@�7EPSVisibility InheritanceSVisibility InheritanceSSI8,PS	MultiTakeSintSIntegerSIB8-PSManipulationModeSenumSSI�8UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�8/PSSetPreferedAngleSActionSSI9-PSPivotsVisibilitySenumSSI`95PSRotationLimitsVisibilitySboolSSI�9:PSLocalTranslationRefVisibilitySboolSSI�92PSRotationRefVisibilitySboolSSI):3PSRotationAxisVisibilitySboolSSIh:1PSScalingRefVisibilitySboolSSI�:9PSHierarchicalCenterVisibilitySboolSSI�:6PSGeometricCenterVisibilitySboolSSI9;8PSReferentialSizeSdoubleSNumberSD(@|;5PSDefaultKeyingGroupSintSIntegerSI�;3PSDefaultKeyingGroupEnumSenumSSI�;%PSPickableSboolSSI(<*PS
TransformableSboolSSI^<(PSCullingModeSenumSSI�<-PSShowTrajectoriesSboolSSI�<"PSliwSBoolSSAUI=CPSLimbLength 1SNumberSSAUD�?DDY@==ShadingCY`=CullingS
CullingOff9E/ModelL��z:SRightLipLowerModelSLimbNode�=VersionI��DProperties70>+PSRotationActiveSboolSSIO>(PSInheritTypeSenumSSI�>GPS
ScalingMaxSVector3DSVectorSDDD�>8PSDefaultAttributeIndexSintSIntegerSIF?NPSLcl TranslationSLcl TranslationSSAD�"���D��Y�D@�r @�?EPSVisibility InheritanceSVisibility InheritanceSSI�?,PS	MultiTakeSintSIntegerSI@-PSManipulationModeSenumSSIq@UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�@/PSSetPreferedAngleSActionSSI�@-PSPivotsVisibilitySenumSSI,A5PSRotationLimitsVisibilitySboolSSItA:PSLocalTranslationRefVisibilitySboolSSI�A2PSRotationRefVisibilitySboolSSI�A3PSRotationAxisVisibilitySboolSSI4B1PSScalingRefVisibilitySboolSSI{B9PSHierarchicalCenterVisibilitySboolSSI�B6PSGeometricCenterVisibilitySboolSSIC8PSReferentialSizeSdoubleSNumberSD(@HC5PSDefaultKeyingGroupSintSIntegerSI�C3PSDefaultKeyingGroupEnumSenumSSI�C%PSPickableSboolSSI�C*PS
TransformableSboolSSI*D(PSCullingModeSenumSSIeD-PSShowTrajectoriesSboolSSI�D"PSliwSBoolSSAUI�DCPSLimbLength 1SNumberSSAUD�?DDY@	EShadingCY,ECullingS
CullingOffM0ModelL��z:SRightLipCornerModelSLimbNode�EVersionI��LProperties70�E+PSRotationActiveSboolSSIF(PSInheritTypeSenumSSIqFGPS
ScalingMaxSVector3DSVectorSDDD�F8PSDefaultAttributeIndexSintSIntegerSIGNPSLcl TranslationSLcl TranslationSSAD��E
�D����D@�r@fGEPSVisibility InheritanceSVisibility InheritanceSSI�G,PS	MultiTakeSintSIntegerSI�G-PSManipulationModeSenumSSI>HUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD{H/PSSetPreferedAngleSActionSSI�H-PSPivotsVisibilitySenumSSI�H5PSRotationLimitsVisibilitySboolSSIAI:PSLocalTranslationRefVisibilitySboolSSI�I2PSRotationRefVisibilitySboolSSI�I3PSRotationAxisVisibilitySboolSSIJ1PSScalingRefVisibilitySboolSSIHJ9PSHierarchicalCenterVisibilitySboolSSI�J6PSGeometricCenterVisibilitySboolSSI�J8PSReferentialSizeSdoubleSNumberSD(@K5PSDefaultKeyingGroupSintSIntegerSIVK3PSDefaultKeyingGroupEnumSenumSSI�K%PSPickableSboolSSI�K*PS
TransformableSboolSSI�K(PSCullingModeSenumSSI2L-PSShowTrajectoriesSboolSSIbL"PSliwSBoolSSAUI�LCPSLimbLength 1SNumberSSAUD�?DDY@�LShadingCY�LCullingS
CullingOff�T/ModelL��z:SLeftLipCornerModelSLimbNode`MVersionI��TProperties70�M+PSRotationActiveSboolSSI�M(PSInheritTypeSenumSSI=NGPS
ScalingMaxSVector3DSVectorSDDD�N8PSDefaultAttributeIndexSintSIntegerSI�NNPSLcl TranslationSLcl TranslationSSAD�LF
@D����D`�r@2OEPSVisibility InheritanceSVisibility InheritanceSSIlO,PS	MultiTakeSintSIntegerSI�O-PSManipulationModeSenumSSI
PUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDGP/PSSetPreferedAngleSActionSSI�P-PSPivotsVisibilitySenumSSI�P5PSRotationLimitsVisibilitySboolSSI
Q:PSLocalTranslationRefVisibilitySboolSSIMQ2PSRotationRefVisibilitySboolSSI�Q3PSRotationAxisVisibilitySboolSSI�Q1PSScalingRefVisibilitySboolSSIR9PSHierarchicalCenterVisibilitySboolSSIXR6PSGeometricCenterVisibilitySboolSSI�R8PSReferentialSizeSdoubleSNumberSD(@�R5PSDefaultKeyingGroupSintSIntegerSI"S3PSDefaultKeyingGroupEnumSenumSSIUS%PSPickableSboolSSI�S*PS
TransformableSboolSSI�S(PSCullingModeSenumSSI�S-PSShowTrajectoriesSboolSSI.T"PSliwSBoolSSAUITCPSLimbLength 1SNumberSSAUD�?DDY@�TShadingCY�TCullingS
CullingOff�\.ModelL��z:SLeftLipUpperModelSLimbNode+UVersionI�W\Properties70}U+PSRotationActiveSboolSSI�U(PSInheritTypeSenumSSIVGPS
ScalingMaxSVector3DSVectorSDDDNV8PSDefaultAttributeIndexSintSIntegerSI�VNPSLcl TranslationSLcl TranslationSSAD�3�?D��[�D |�"@�VEPSVisibility InheritanceSVisibility InheritanceSSI7W,PS	MultiTakeSintSIntegerSIrW-PSManipulationModeSenumSSI�WUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDX/PSSetPreferedAngleSActionSSIMX-PSPivotsVisibilitySenumSSI�X5PSRotationLimitsVisibilitySboolSSI�X:PSLocalTranslationRefVisibilitySboolSSIY2PSRotationRefVisibilitySboolSSIYY3PSRotationAxisVisibilitySboolSSI�Y1PSScalingRefVisibilitySboolSSI�Y9PSHierarchicalCenterVisibilitySboolSSI#Z6PSGeometricCenterVisibilitySboolSSIiZ8PSReferentialSizeSdoubleSNumberSD(@�Z5PSDefaultKeyingGroupSintSIntegerSI�Z3PSDefaultKeyingGroupEnumSenumSSI [%PSPickableSboolSSIX[*PS
TransformableSboolSSI�[(PSCullingModeSenumSSI�[-PSShowTrajectoriesSboolSSI�["PSliwSBoolSSAUIJ\CPSLimbLength 1SNumberSSAUD�?DDY@m\ShadingCY�\CullingS
CullingOffgd-ModelL��z:SLeftNostrilModelSLimbNode�\VersionI�!dProperties70G]+PSRotationActiveSboolSSI}](PSInheritTypeSenumSSI�]GPS
ScalingMaxSVector3DSVectorSDDD^8PSDefaultAttributeIndexSintSIntegerSIt^NPSLcl TranslationSLcl TranslationSSADף�?D�@D@i,"@�^EPSVisibility InheritanceSVisibility InheritanceSSI_,PS	MultiTakeSintSIntegerSI<_-PSManipulationModeSenumSSI�_UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�_/PSSetPreferedAngleSActionSSI`-PSPivotsVisibilitySenumSSIZ`5PSRotationLimitsVisibilitySboolSSI�`:PSLocalTranslationRefVisibilitySboolSSI�`2PSRotationRefVisibilitySboolSSI#a3PSRotationAxisVisibilitySboolSSIba1PSScalingRefVisibilitySboolSSI�a9PSHierarchicalCenterVisibilitySboolSSI�a6PSGeometricCenterVisibilitySboolSSI3b8PSReferentialSizeSdoubleSNumberSD(@vb5PSDefaultKeyingGroupSintSIntegerSI�b3PSDefaultKeyingGroupEnumSenumSSI�b%PSPickableSboolSSI"c*PS
TransformableSboolSSIXc(PSCullingModeSenumSSI�c-PSShowTrajectoriesSboolSSI�c"PSliwSBoolSSAUIdCPSLimbLength 1SNumberSSAUD�?DDY@7dShadingCYZdCullingS
CullingOff/l+ModelL��z:SLeftCheekModelSLimbNode�dVersionI��kProperties70e+PSRotationActiveSboolSSIEe(PSInheritTypeSenumSSI�eGPS
ScalingMaxSVector3DSVectorSDDD�e8PSDefaultAttributeIndexSintSIntegerSI<fNPSLcl TranslationSLcl TranslationSSAD���@D�(�
@D`��@�fEPSVisibility InheritanceSVisibility InheritanceSSI�f,PS	MultiTakeSintSIntegerSIg-PSManipulationModeSenumSSIggUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�g/PSSetPreferedAngleSActionSSI�g-PSPivotsVisibilitySenumSSI"h5PSRotationLimitsVisibilitySboolSSIjh:PSLocalTranslationRefVisibilitySboolSSI�h2PSRotationRefVisibilitySboolSSI�h3PSRotationAxisVisibilitySboolSSI*i1PSScalingRefVisibilitySboolSSIqi9PSHierarchicalCenterVisibilitySboolSSI�i6PSGeometricCenterVisibilitySboolSSI�i8PSReferentialSizeSdoubleSNumberSD(@>j5PSDefaultKeyingGroupSintSIntegerSIj3PSDefaultKeyingGroupEnumSenumSSI�j%PSPickableSboolSSI�j*PS
TransformableSboolSSI k(PSCullingModeSenumSSI[k-PSShowTrajectoriesSboolSSI�k"PSliwSBoolSSAUI�kCPSLimbLength 1SNumberSSAUD�?DDY@�kShadingCY"lCullingS
CullingOffSt1ModelL��z:SLeftEyelidLowerModelSLimbNode�lVersionI�
tProperties70�l+PSRotationActiveSboolSSIm(PSInheritTypeSenumSSIhmGPS
ScalingMaxSVector3DSVectorSDDD�m8PSDefaultAttributeIndexSintSIntegerSI
nNPSLcl TranslationSLcl TranslationSSAD@�~@D�@D p~@`nHPSLcl RotationSLcl RotationSSAD�D�D�nEPSVisibility InheritanceSVisibility InheritanceSSI�n,PS	MultiTakeSintSIntegerSI(o-PSManipulationModeSenumSSI�oUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�o/PSSetPreferedAngleSActionSSIp-PSPivotsVisibilitySenumSSIFp5PSRotationLimitsVisibilitySboolSSI�p:PSLocalTranslationRefVisibilitySboolSSI�p2PSRotationRefVisibilitySboolSSIq3PSRotationAxisVisibilitySboolSSINq1PSScalingRefVisibilitySboolSSI�q9PSHierarchicalCenterVisibilitySboolSSI�q6PSGeometricCenterVisibilitySboolSSIr8PSReferentialSizeSdoubleSNumberSD(@br5PSDefaultKeyingGroupSintSIntegerSI�r3PSDefaultKeyingGroupEnumSenumSSI�r%PSPickableSboolSSIs*PS
TransformableSboolSSIDs(PSCullingModeSenumSSIs-PSShowTrajectoriesSboolSSI�s"PSliwSBoolSSAUItCPSLimbLength 1SNumberSSAUD�?DDY@#tShadingCYFtCullingS
CullingOff!|1ModelL��z:SLeftEyelidUpperModelSLimbNode�tVersionI��{Properties70u+PSRotationActiveSboolSSI7u(PSInheritTypeSenumSSI�uGPS
ScalingMaxSVector3DSVectorSDDD�u8PSDefaultAttributeIndexSintSIntegerSI.vNPSLcl TranslationSLcl TranslationSSAD`��@D#$@D�
 @�vEPSVisibility InheritanceSVisibility InheritanceSSI�v,PS	MultiTakeSintSIntegerSI�v-PSManipulationModeSenumSSIYwUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�w/PSSetPreferedAngleSActionSSI�w-PSPivotsVisibilitySenumSSIx5PSRotationLimitsVisibilitySboolSSI\x:PSLocalTranslationRefVisibilitySboolSSI�x2PSRotationRefVisibilitySboolSSI�x3PSRotationAxisVisibilitySboolSSIy1PSScalingRefVisibilitySboolSSIcy9PSHierarchicalCenterVisibilitySboolSSI�y6PSGeometricCenterVisibilitySboolSSI�y8PSReferentialSizeSdoubleSNumberSD(@0z5PSDefaultKeyingGroupSintSIntegerSIqz3PSDefaultKeyingGroupEnumSenumSSI�z%PSPickableSboolSSI�z*PS
TransformableSboolSSI{(PSCullingModeSenumSSIM{-PSShowTrajectoriesSboolSSI}{"PSliwSBoolSSAUI�{CPSLimbLength 1SNumberSSAUD�?DDY@�{ShadingCY|CullingS
CullingOff�/ModelL��z:SLeftInnerBrowModelSLimbNode{|VersionI���Properties70�|+PSRotationActiveSboolSSI}(PSInheritTypeSenumSSIX}GPS
ScalingMaxSVector3DSVectorSDDD�}8PSDefaultAttributeIndexSintSIntegerSI�}NPSLcl TranslationSLcl TranslationSSAD��L�?D ��'@D`��"@M~EPSVisibility InheritanceSVisibility InheritanceSSI�~,PS	MultiTakeSintSIntegerSI�~-PSManipulationModeSenumSSI%UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDb/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI(�:PSLocalTranslationRefVisibilitySboolSSIh�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI/�9PSHierarchicalCenterVisibilitySboolSSIs�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI=�3PSDefaultKeyingGroupEnumSenumSSIp�%PSPickableSboolSSI��*PS
TransformableSboolSSIނ(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSII�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�0ModelL{:SLeftIOuterBrowModelSLimbNodeH�VersionI���Properties70��*PS
RotationOrderSenumSSI҄+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI]�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD@@D �&@D��@R�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIdž-PSManipulationModeSenumSSI*�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDg�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI-�:PSLocalTranslationRefVisibilitySboolSSIm�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI4�9PSHierarchicalCenterVisibilitySboolSSIx�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIB�3PSDefaultKeyingGroupEnumSenumSSIu�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIN�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@‹ShadingCY�CullingS
CullingOff��0ModelL 0K;SRightInnerBrowModelSLimbNodeM�VersionI�y�Properties70��+PSRotationActiveSboolSSIՌ(PSInheritTypeSenumSSI*�GPS
ScalingMaxSVector3DSVectorSDDDp�8PSDefaultAttributeIndexSintSIntegerSI̍NPSLcl TranslationSLcl TranslationSSAD��L�D ��'@D`��"@�EPSVisibility InheritanceSVisibility InheritanceSSIY�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD4�/PSSetPreferedAngleSActionSSIo�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI:�2PSRotationRefVisibilitySboolSSI{�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIE�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@Α5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIB�%PSPickableSboolSSIz�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIl�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffś1ModelL(5K;SRightIOuterBrowModelSLimbNode�VersionI��Properties70l�*PS
RotationOrderSenumSSI��+PSRotationActiveSboolSSI۔(PSInheritTypeSenumSSI0�GPS
ScalingMaxSVector3DSVectorSDDDv�8PSDefaultAttributeIndexSintSIntegerSIҕNPSLcl TranslationSLcl TranslationSSAD��D���&@D��@%�EPSVisibility InheritanceSVisibility InheritanceSSI_�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD:�/PSSetPreferedAngleSActionSSIu�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI@�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIK�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ԙ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIH�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI!�"PSliwSBoolSSAUIr�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��2ModelL0:K;SRightEyelidUpperModelSLimbNode"�VersionI�N�Properties70t�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDE�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD+��D�`$@D`�
 @��EPSVisibility InheritanceSVisibility InheritanceSSI.�,PS	MultiTakeSintSIntegerSIi�-PSManipulationModeSenumSSI̞UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD	�/PSSetPreferedAngleSActionSSID�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIϟ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIP�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI֠9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI`�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIO�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIA�CPSLimbLength 1SNumberSSAUD�?DDY@d�ShadingCY��CullingS
CullingOff��2ModelL8?K;SRightEyelidLowerModelSLimbNode�VersionI�s�Properties70C�+PSRotationActiveSboolSSIy�(PSInheritTypeSenumSSIΤGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIp�NPSLcl TranslationSLcl TranslationSSAD��~�D u@D��~@ƥHPSLcl RotationSLcl RotationSSAD�D�D�EPSVisibility InheritanceSVisibility InheritanceSSIS�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD.�/PSSetPreferedAngleSActionSSIi�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI4�2PSRotationRefVisibilitySboolSSIu�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI?�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ȩ5PSDefaultKeyingGroupSintSIntegerSI	�3PSDefaultKeyingGroupEnumSenumSSI<�%PSPickableSboolSSIt�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIf�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��,ModelL@DK;SRightCheekModelSLimbNode�VersionI�<�Properties70b�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD3�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD-��D�V�
@D�]�@�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIW�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI2�-PSPivotsVisibilitySenumSSIu�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI>�3PSRotationAxisVisibilitySboolSSI}�1PSScalingRefVisibilitySboolSSIİ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIN�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIұ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI=�*PS
TransformableSboolSSIs�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI޲"PSliwSBoolSSAUI/�CPSLimbLength 1SNumberSSAUD�?DDY@R�ShadingCYu�CullingS
CullingOffM�.ModelLHIK;SRightNostrilModelSLimbNode۳VersionI��Properties70-�+PSRotationActiveSboolSSIc�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIZ�NPSLcl TranslationSLcl TranslationSSADף��D`@D`�,"@��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI"�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD¶/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI@�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIȷ2PSRotationRefVisibilitySboolSSI	�3PSRotationAxisVisibilitySboolSSIH�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIӸ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@\�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIй%PSPickableSboolSSI�*PS
TransformableSboolSSI>�(PSCullingModeSenumSSIy�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY@�CullingS
CullingOff�/ModelLPNK;SRightLipUpperModelSLimbNode��VersionI���Properties70��+PSRotationActiveSboolSSI/�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDʼ8PSDefaultAttributeIndexSintSIntegerSI&�NPSLcl TranslationSLcl TranslationSSAD�3��D��W�D@i�"@y�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIQ�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIɾ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIT�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIտ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI[�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@(�5PSDefaultKeyingGroupSintSIntegerSIi�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI
�(PSCullingModeSenumSSIE�-PSShowTrajectoriesSboolSSIu�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��/ModelLXSK;SRightShoulderModelSLimbNodes�VersionI���Properties70��HPSPreRotationSVector3DSVectorSDc�5ua f�De0��`@D�(�Vc��+PSRotationActiveSboolSSIQ�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIH�NPSLcl TranslationSLcl TranslationSSAD����D`�)6@D@
M����IPSLcl RotationSLcl RotationSSA+DD ܥ�D e|�<��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?G�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD\�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI"�:PSLocalTranslationRefVisibilitySboolSSIb�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI)�9PSHierarchicalCenterVisibilitySboolSSIm�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI7�3PSDefaultKeyingGroupEnumSenumSSIj�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIC�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��*ModelL`XK;SRightArmModelSLimbNode<�VersionI�j�Properties70��HPSPreRotationSVector3DSVectorSD�&(�|f�D�`����!�DOE�rc���+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIo�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD��$@D��a0�D@�վh�IPSLcl RotationSLcl RotationSSA+D@��D�D 	��<��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSIJ�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD%�/PSSetPreferedAngleSActionSSI`�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI+�2PSRotationRefVisibilitySboolSSIl�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI6�6PSGeometricCenterVisibilitySboolSSI|�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI3�%PSPickableSboolSSIk�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI]�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff}�.ModelLh]K;SRightForeArmModelSLimbNode	�VersionI�7�Properties70x�HPSPreRotationSVector3DSVectorSD�@���D�D�e�:�D
>���?��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI<�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD`�W9�D �<�?D`,���5�IPSLcl RotationSLcl RotationSSA+D e|��D ܥܼD 2�弊�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIR�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI-�-PSPivotsVisibilitySenumSSIp�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI9�3PSRotationAxisVisibilitySboolSSIx�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSII�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI8�*PS
TransformableSboolSSIn�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI*�CPSLimbLength 1SNumberSSAUD�?DDY@M�ShadingCYp�CullingS
CullingOff��+ModelLpbK;SRightHandModelSLimbNode��VersionI���Properties70%�+PSRotationActiveSboolSSI[�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIR�NPSLcl TranslationSLcl TranslationSSAD ��8�D <P@D����?��IPSLcl RotationSLcl RotationSSA+D� �<D ܥ��D�
��<��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?Q�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI)�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDf�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI,�:PSLocalTranslationRefVisibilitySboolSSIl�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI3�9PSHierarchicalCenterVisibilitySboolSSIw�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIA�3PSDefaultKeyingGroupEnumSenumSSIt�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIM�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��1ModelLxgK;SRightHandPinky1ModelSLimbNodeM�VersionI�{�Properties70��HPSPreRotationSVector3DSVectorSD���P�οDrQ�'d�$@DH�Z~Q����+PSRotationActiveSboolSSI+�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI"�NPSLcl TranslationSLcl TranslationSSAD����D�K�ɿD�ۚ�y�IPSLcl RotationSLcl RotationSSA+D�K��D ܥ�<D����<��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?!�EPSVisibility InheritanceSVisibility InheritanceSSI[�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD6�/PSSetPreferedAngleSActionSSIq�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI<�2PSRotationRefVisibilitySboolSSI}�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIG�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSID�%PSPickableSboolSSI|�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIn�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��1ModelL���9SRightHandPinky2ModelSLimbNode�VersionI�K�Properties70��HPSPreRotationSVector3DSVectorSD�	�SQ㋿DG~�)'��?DL����?��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIP�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD���D�(���D`��I�IPSLcl RotationSLcl RotationSSA+D�D3�<D��	=D��
ռ��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI+�,PS	MultiTakeSintSIntegerSIf�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIA�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIM�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI]�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIL�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI>�CPSLimbLength 1SNumberSSAUD�?DDY@a�ShadingCY��CullingS
CullingOff1ModelL���9SRightHandPinky3ModelSLimbNode��VersionI���Properties70?�+PSRotationActiveSboolSSIu�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIl�NPSLcl TranslationSLcl TranslationSSAD�8$�D��V��D �@���IPSLcl RotationSLcl RotationSSA+DD ܥ�<D ܥ\��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?k�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIC�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIF�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIM�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI[�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI7�-PSShowTrajectoriesSboolSSIg�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�0ModelL���9SRightHandRing1ModelSLimbNodefVersionI��Properties70�HPSPreRotationSVector3DSVectorSD���=ģ�D�˘^�@Dm�a>4c�+PSRotationActiveSboolSSID(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI;NPSLcl TranslationSLcl TranslationSSAD�H=�D�is�?D �mᅭIPSLcl RotationSLcl RotationSSA+D e|u<D����<D��o���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?:EPSVisibility InheritanceSVisibility InheritanceSSIt,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDO/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIU2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSI`6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI*3PSDefaultKeyingGroupEnumSenumSSI]%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSI6"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�0ModelL���9SRightHandRing2ModelSLimbNode5	VersionI�cProperties70�	HPSPreRotationSVector3DSVectorSD-��	�ԿD!FWP*@D�@�?�{��	+PSRotationActiveSboolSSI
(PSInheritTypeSenumSSIh
GPS
ScalingMaxSVector3DSVectorSDDD�
8PSDefaultAttributeIndexSintSIntegerSI
NPSLcl TranslationSLcl TranslationSSAD�'�D ښ��D@K�߿aIPSLcl RotationSLcl RotationSSA+D�a�D e|�<D�ja�<�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?	EPSVisibility InheritanceSVisibility InheritanceSSIC,PS	MultiTakeSintSIntegerSI~-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD
/PSSetPreferedAngleSActionSSIY
-PSPivotsVisibilitySenumSSI�
5PSRotationLimitsVisibilitySboolSSI�
:PSLocalTranslationRefVisibilitySboolSSI$2PSRotationRefVisibilitySboolSSIe3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI/6PSGeometricCenterVisibilitySboolSSIu8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI,%PSPickableSboolSSId*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUIVCPSLimbLength 1SNumberSSAUD�?DDY@yShadingCY�CullingS
CullingOff"0ModelL���9SRightHandRing3ModelSLimbNodeVersionI��Properties70V+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD'8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@���D�
��D��ݿ�IPSLcl RotationSLcl RotationSSA+D ܥ��D ܥܼD�9p��/GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIZUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSI]:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSId9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@15PSDefaultKeyingGroupSintSIntegerSIr3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIN-PSShowTrajectoriesSboolSSI~"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff�"2ModelL���9SRightHandMiddle1ModelSLimbNodeVersionI��"Properties70�HPSPreRotationSVector3DSVectorSD�iaQ7؀�Dr3�k��D
��--�'+PSRotationActiveSboolSSI](PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSITNPSLcl TranslationSLcl TranslationSSAD�QB�D<��?D@��?�IPSLcl RotationSLcl RotationSSA+D@�Q�<D ܥܼD���<GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?SEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI+UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDh/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI.:PSLocalTranslationRefVisibilitySboolSSIn2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI5 9PSHierarchicalCenterVisibilitySboolSSIy 6PSGeometricCenterVisibilitySboolSSI� 8PSReferentialSizeSdoubleSNumberSD(@!5PSDefaultKeyingGroupSintSIntegerSIC!3PSDefaultKeyingGroupEnumSenumSSIv!%PSPickableSboolSSI�!*PS
TransformableSboolSSI�!(PSCullingModeSenumSSI"-PSShowTrajectoriesSboolSSIO""PSliwSBoolSSAUI�"CPSLimbLength 1SNumberSSAUD�?DDY@�"ShadingCY�"CullingS
CullingOff�+2ModelL���9SRightHandMiddle2ModelSLimbNodeP#VersionI�~+Properties70�#HPSPreRotationSVector3DSVectorSD�l�`�տDQT���@D��#W'9��#+PSRotationActiveSboolSSI.$(PSInheritTypeSenumSSI�$GPS
ScalingMaxSVector3DSVectorSDDD�$8PSDefaultAttributeIndexSintSIntegerSI%%NPSLcl TranslationSLcl TranslationSSAD`��D���?D@��?|%IPSLcl RotationSLcl RotationSSA+D`~�ʼD���=D@��%GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?$&EPSVisibility InheritanceSVisibility InheritanceSSI^&,PS	MultiTakeSintSIntegerSI�&-PSManipulationModeSenumSSI�&UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD9'/PSSetPreferedAngleSActionSSIt'-PSPivotsVisibilitySenumSSI�'5PSRotationLimitsVisibilitySboolSSI�':PSLocalTranslationRefVisibilitySboolSSI?(2PSRotationRefVisibilitySboolSSI�(3PSRotationAxisVisibilitySboolSSI�(1PSScalingRefVisibilitySboolSSI)9PSHierarchicalCenterVisibilitySboolSSIJ)6PSGeometricCenterVisibilitySboolSSI�)8PSReferentialSizeSdoubleSNumberSD(@�)5PSDefaultKeyingGroupSintSIntegerSI*3PSDefaultKeyingGroupEnumSenumSSIG*%PSPickableSboolSSI**PS
TransformableSboolSSI�*(PSCullingModeSenumSSI�*-PSShowTrajectoriesSboolSSI +"PSliwSBoolSSAUIq+CPSLimbLength 1SNumberSSAUD�?DDY@�+ShadingCY�+CullingS
CullingOff?42ModelL���9SRightHandMiddle3ModelSLimbNode!,VersionI��3Properties70s,+PSRotationActiveSboolSSI�,(PSInheritTypeSenumSSI�,GPS
ScalingMaxSVector3DSVectorSDDDD-8PSDefaultAttributeIndexSintSIntegerSI�-NPSLcl TranslationSLcl TranslationSSAD >u
�D@�&�D�I��?�-IPSLcl RotationSLcl RotationSSA+D ܥ��D ܥ�<D��h��L.GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�.EPSVisibility InheritanceSVisibility InheritanceSSI�.,PS	MultiTakeSintSIntegerSI/-PSManipulationModeSenumSSIw/UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�//PSSetPreferedAngleSActionSSI�/-PSPivotsVisibilitySenumSSI205PSRotationLimitsVisibilitySboolSSIz0:PSLocalTranslationRefVisibilitySboolSSI�02PSRotationRefVisibilitySboolSSI�03PSRotationAxisVisibilitySboolSSI:11PSScalingRefVisibilitySboolSSI�19PSHierarchicalCenterVisibilitySboolSSI�16PSGeometricCenterVisibilitySboolSSI28PSReferentialSizeSdoubleSNumberSD(@N25PSDefaultKeyingGroupSintSIntegerSI�23PSDefaultKeyingGroupEnumSenumSSI�2%PSPickableSboolSSI�2*PS
TransformableSboolSSI03(PSCullingModeSenumSSIk3-PSShowTrajectoriesSboolSSI�3"PSliwSBoolSSAUI�3CPSLimbLength 1SNumberSSAUD�?DDY@4ShadingCY24CullingS
CullingOff=1ModelL��9SRightHandIndex1ModelSLimbNode�4VersionI��<Properties70
5HPSPreRotationSVector3DSVectorSD(Qp�c�D���PNk"�Dk�	A��C5+PSRotationActiveSboolSSIy5(PSInheritTypeSenumSSI�5GPS
ScalingMaxSVector3DSVectorSDDD68PSDefaultAttributeIndexSintSIntegerSIp6NPSLcl TranslationSLcl TranslationSSAD�e��D�yҿ�D��y@�6IPSLcl RotationSLcl RotationSSA+D`~۪�D e|�D`��ݼ7GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?o7EPSVisibility InheritanceSVisibility InheritanceSSI�7,PS	MultiTakeSintSIntegerSI�7-PSManipulationModeSenumSSIG8UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�8/PSSetPreferedAngleSActionSSI�8-PSPivotsVisibilitySenumSSI95PSRotationLimitsVisibilitySboolSSIJ9:PSLocalTranslationRefVisibilitySboolSSI�92PSRotationRefVisibilitySboolSSI�93PSRotationAxisVisibilitySboolSSI
:1PSScalingRefVisibilitySboolSSIQ:9PSHierarchicalCenterVisibilitySboolSSI�:6PSGeometricCenterVisibilitySboolSSI�:8PSReferentialSizeSdoubleSNumberSD(@;5PSDefaultKeyingGroupSintSIntegerSI_;3PSDefaultKeyingGroupEnumSenumSSI�;%PSPickableSboolSSI�;*PS
TransformableSboolSSI<(PSCullingModeSenumSSI;<-PSShowTrajectoriesSboolSSIk<"PSliwSBoolSSAUI�<CPSLimbLength 1SNumberSSAUD�?DDY@�<ShadingCY=CullingS
CullingOff�E1ModelL�	�9SRightHandIndex2ModelSLimbNodek=VersionI��EProperties70�=HPSPreRotationSVector3DSVectorSD�tc�hQ�?D������D�+�}�\�>+PSRotationActiveSboolSSII>(PSInheritTypeSenumSSI�>GPS
ScalingMaxSVector3DSVectorSDDD�>8PSDefaultAttributeIndexSintSIntegerSI@?NPSLcl TranslationSLcl TranslationSSAD���
�D���?D�!C�?�?IPSLcl RotationSLcl RotationSSA+D`���<D��	�D���<�?GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�??@EPSVisibility InheritanceSVisibility InheritanceSSIy@,PS	MultiTakeSintSIntegerSI�@-PSManipulationModeSenumSSIAUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDTA/PSSetPreferedAngleSActionSSI�A-PSPivotsVisibilitySenumSSI�A5PSRotationLimitsVisibilitySboolSSIB:PSLocalTranslationRefVisibilitySboolSSIZB2PSRotationRefVisibilitySboolSSI�B3PSRotationAxisVisibilitySboolSSI�B1PSScalingRefVisibilitySboolSSI!C9PSHierarchicalCenterVisibilitySboolSSIeC6PSGeometricCenterVisibilitySboolSSI�C8PSReferentialSizeSdoubleSNumberSD(@�C5PSDefaultKeyingGroupSintSIntegerSI/D3PSDefaultKeyingGroupEnumSenumSSIbD%PSPickableSboolSSI�D*PS
TransformableSboolSSI�D(PSCullingModeSenumSSIE-PSShowTrajectoriesSboolSSI;E"PSliwSBoolSSAUI�ECPSLimbLength 1SNumberSSAUD�?DDY@�EShadingCY�ECullingS
CullingOffYN1ModelL�9SRightHandIndex3ModelSLimbNode;FVersionI�NProperties70�F+PSRotationActiveSboolSSI�F(PSInheritTypeSenumSSIGGPS
ScalingMaxSVector3DSVectorSDDD^G8PSDefaultAttributeIndexSintSIntegerSI�GNPSLcl TranslationSLcl TranslationSSAD�.�D��߿D@���?HIPSLcl RotationSLcl RotationSSA+D e|ռD ܥ��D`���fHGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�HEPSVisibility InheritanceSVisibility InheritanceSSI�H,PS	MultiTakeSintSIntegerSI.I-PSManipulationModeSenumSSI�IUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�I/PSSetPreferedAngleSActionSSI	J-PSPivotsVisibilitySenumSSILJ5PSRotationLimitsVisibilitySboolSSI�J:PSLocalTranslationRefVisibilitySboolSSI�J2PSRotationRefVisibilitySboolSSIK3PSRotationAxisVisibilitySboolSSITK1PSScalingRefVisibilitySboolSSI�K9PSHierarchicalCenterVisibilitySboolSSI�K6PSGeometricCenterVisibilitySboolSSI%L8PSReferentialSizeSdoubleSNumberSD(@hL5PSDefaultKeyingGroupSintSIntegerSI�L3PSDefaultKeyingGroupEnumSenumSSI�L%PSPickableSboolSSIM*PS
TransformableSboolSSIJM(PSCullingModeSenumSSI�M-PSShowTrajectoriesSboolSSI�M"PSliwSBoolSSAUINCPSLimbLength 1SNumberSSAUD�?DDY@)NShadingCYLNCullingS
CullingOff)W1ModelL�9SRightHandThumb1ModelSLimbNode�NVersionI��VProperties70$OHPSPreRotationSVector3DSVectorSD�#uS�L<D��t[��?D��*�]O+PSRotationActiveSboolSSI�O(PSInheritTypeSenumSSI�OGPS
ScalingMaxSVector3DSVectorSDDD.P8PSDefaultAttributeIndexSintSIntegerSI�PNPSLcl TranslationSLcl TranslationSSAD�~��D����D༯@�PIPSLcl RotationSLcl RotationSSA+D@�B��D ܥ��D�>��6QGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�QEPSVisibility InheritanceSVisibility InheritanceSSI�Q,PS	MultiTakeSintSIntegerSI�Q-PSManipulationModeSenumSSIaRUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�R/PSSetPreferedAngleSActionSSI�R-PSPivotsVisibilitySenumSSIS5PSRotationLimitsVisibilitySboolSSIdS:PSLocalTranslationRefVisibilitySboolSSI�S2PSRotationRefVisibilitySboolSSI�S3PSRotationAxisVisibilitySboolSSI$T1PSScalingRefVisibilitySboolSSIkT9PSHierarchicalCenterVisibilitySboolSSI�T6PSGeometricCenterVisibilitySboolSSI�T8PSReferentialSizeSdoubleSNumberSD(@8U5PSDefaultKeyingGroupSintSIntegerSIyU3PSDefaultKeyingGroupEnumSenumSSI�U%PSPickableSboolSSI�U*PS
TransformableSboolSSIV(PSCullingModeSenumSSIUV-PSShowTrajectoriesSboolSSI�V"PSliwSBoolSSAUI�VCPSLimbLength 1SNumberSSAUD�?DDY@�VShadingCYWCullingS
CullingOff�_1ModelL�^�9SRightHandThumb2ModelSLimbNode�WVersionI�]_Properties70�W+PSRotationActiveSboolSSI
X(PSInheritTypeSenumSSIbXGPS
ScalingMaxSVector3DSVectorSDDD�X8PSDefaultAttributeIndexSintSIntegerSIYNPSLcl TranslationSLcl TranslationSSAD`�2��D`���D��@[YIPSLcl RotationSLcl RotationSSA+DD�D ���9�YGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?ZEPSVisibility InheritanceSVisibility InheritanceSSI=Z,PS	MultiTakeSintSIntegerSIxZ-PSManipulationModeSenumSSI�ZUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD[/PSSetPreferedAngleSActionSSIS[-PSPivotsVisibilitySenumSSI�[5PSRotationLimitsVisibilitySboolSSI�[:PSLocalTranslationRefVisibilitySboolSSI\2PSRotationRefVisibilitySboolSSI_\3PSRotationAxisVisibilitySboolSSI�\1PSScalingRefVisibilitySboolSSI�\9PSHierarchicalCenterVisibilitySboolSSI)]6PSGeometricCenterVisibilitySboolSSIo]8PSReferentialSizeSdoubleSNumberSD(@�]5PSDefaultKeyingGroupSintSIntegerSI�]3PSDefaultKeyingGroupEnumSenumSSI&^%PSPickableSboolSSI^^*PS
TransformableSboolSSI�^(PSCullingModeSenumSSI�^-PSShowTrajectoriesSboolSSI�^"PSliwSBoolSSAUIP_CPSLimbLength 1SNumberSSAUD�?DDY@s_ShadingCY�_CullingS
CullingOffsh1ModelL�c�9SRightHandThumb3ModelSLimbNode�_VersionI�-hProperties70n`HPSPreRotationSVector3DSVectorSD$�rOϸ>DD�`+PSRotationActiveSboolSSI�`(PSInheritTypeSenumSSI2aGPS
ScalingMaxSVector3DSVectorSDDDxa8PSDefaultAttributeIndexSintSIntegerSI�aNPSLcl TranslationSLcl TranslationSSAD@5^�D �r�D@��@+bIPSLcl RotationSLcl RotationSSA+D e|��D@��R8D ���9�bGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�bEPSVisibility InheritanceSVisibility InheritanceSSI
c,PS	MultiTakeSintSIntegerSIHc-PSManipulationModeSenumSSI�cUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�c/PSSetPreferedAngleSActionSSI#d-PSPivotsVisibilitySenumSSIfd5PSRotationLimitsVisibilitySboolSSI�d:PSLocalTranslationRefVisibilitySboolSSI�d2PSRotationRefVisibilitySboolSSI/e3PSRotationAxisVisibilitySboolSSIne1PSScalingRefVisibilitySboolSSI�e9PSHierarchicalCenterVisibilitySboolSSI�e6PSGeometricCenterVisibilitySboolSSI?f8PSReferentialSizeSdoubleSNumberSD(@�f5PSDefaultKeyingGroupSintSIntegerSI�f3PSDefaultKeyingGroupEnumSenumSSI�f%PSPickableSboolSSI.g*PS
TransformableSboolSSIdg(PSCullingModeSenumSSI�g-PSShowTrajectoriesSboolSSI�g"PSliwSBoolSSAUI hCPSLimbLength 1SNumberSSAUD�?DDY@ChShadingCYfhCullingS
CullingOff@q.ModelL�h�9SLeftShoulderModelSLimbNode�hVersionI��pProperties70;iHPSPreRotationSVector3DSVectorSD�2e��D�Z��_@D�OZ2�I9�ti+PSRotationActiveSboolSSI�i(PSInheritTypeSenumSSI�iGPS
ScalingMaxSVector3DSVectorSDDDEj8PSDefaultAttributeIndexSintSIntegerSI�jNPSLcl TranslationSLcl TranslationSSAD��@D@�)6@D@
M���jIPSLcl RotationSLcl RotationSSA+D e|�D����D`�s=MkGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�kEPSVisibility InheritanceSVisibility InheritanceSSI�k,PS	MultiTakeSintSIntegerSIl-PSManipulationModeSenumSSIxlUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�l/PSSetPreferedAngleSActionSSI�l-PSPivotsVisibilitySenumSSI3m5PSRotationLimitsVisibilitySboolSSI{m:PSLocalTranslationRefVisibilitySboolSSI�m2PSRotationRefVisibilitySboolSSI�m3PSRotationAxisVisibilitySboolSSI;n1PSScalingRefVisibilitySboolSSI�n9PSHierarchicalCenterVisibilitySboolSSI�n6PSGeometricCenterVisibilitySboolSSIo8PSReferentialSizeSdoubleSNumberSD(@Oo5PSDefaultKeyingGroupSintSIntegerSI�o3PSDefaultKeyingGroupEnumSenumSSI�o%PSPickableSboolSSI�o*PS
TransformableSboolSSI1p(PSCullingModeSenumSSIlp-PSShowTrajectoriesSboolSSI�p"PSliwSBoolSSAUI�pCPSLimbLength 1SNumberSSAUD�?DDY@qShadingCY3qCullingS
CullingOff	z)ModelL�m�9SLeftArmModelSLimbNode�qVersionI��yProperties70rHPSPreRotationSVector3DSVectorSD��.�&��D�t�r%�D����9@<r+PSRotationActiveSboolSSIrr(PSInheritTypeSenumSSI�rGPS
ScalingMaxSVector3DSVectorSDDD
s8PSDefaultAttributeIndexSintSIntegerSIjsOPSLcl TranslationSLcl TranslationSSA+D��$@D0=D�<�sIPSLcl RotationSLcl RotationSSA+D���ռD ܥ�<D`*4!�tGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?itEPSVisibility InheritanceSVisibility InheritanceSSI�t,PS	MultiTakeSintSIntegerSI�t-PSManipulationModeSenumSSIAuUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD~u/PSSetPreferedAngleSActionSSI�u-PSPivotsVisibilitySenumSSI�u5PSRotationLimitsVisibilitySboolSSIDv:PSLocalTranslationRefVisibilitySboolSSI�v2PSRotationRefVisibilitySboolSSI�v3PSRotationAxisVisibilitySboolSSIw1PSScalingRefVisibilitySboolSSIKw9PSHierarchicalCenterVisibilitySboolSSI�w6PSGeometricCenterVisibilitySboolSSI�w8PSReferentialSizeSdoubleSNumberSD(@x5PSDefaultKeyingGroupSintSIntegerSIYx3PSDefaultKeyingGroupEnumSenumSSI�x%PSPickableSboolSSI�x*PS
TransformableSboolSSI�x(PSCullingModeSenumSSI5y-PSShowTrajectoriesSboolSSIey"PSliwSBoolSSAUI�yCPSLimbLength 1SNumberSSAUD�?DDY@�yShadingCY�yCullingS
CullingOffւ-ModelL�r�9SLeftForeArmModelSLimbNodeazVersionI���Properties70�zHPSPreRotationSVector3DSVectorSD0�]��D�Q�e�:�Dy�=���?	{+PSRotationActiveSboolSSI?{(PSInheritTypeSenumSSI�{GPS
ScalingMaxSVector3DSVectorSDDD�{8PSDefaultAttributeIndexSintSIntegerSI7|OPSLcl TranslationSLcl TranslationSSA+D��g9@D0=D�<�|IPSLcl RotationSLcl RotationSSA+D��硼D����D�s���|GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?6}EPSVisibility InheritanceSVisibility InheritanceSSIp},PS	MultiTakeSintSIntegerSI�}-PSManipulationModeSenumSSI~UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDK~/PSSetPreferedAngleSActionSSI�~-PSPivotsVisibilitySenumSSI�~5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIQ2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI\�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI&�3PSDefaultKeyingGroupEnumSenumSSIY�%PSPickableSboolSSI��*PS
TransformableSboolSSIǁ(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI2�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYɂCullingS
CullingOffI�*ModelL�w�9SLeftHandModelSLimbNode+�VersionI��Properties70}�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDN�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD���8@DD���IPSLcl RotationSLcl RotationSSA+D ܥl�D ܥ��D )�<V�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI<�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIć2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSID�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIψ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@X�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSỈ%PSPickableSboolSSI�*PS
TransformableSboolSSI:�(PSCullingModeSenumSSIu�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY<�CullingS
CullingOff�0ModelL�|�9SLeftHandPinky1ModelSLimbNode��VersionI�ғProperties70�HPSPreRotationSVector3DSVectorSD�^�P�οDQ�'d�$@DU�Z~Q��L�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI׌GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIy�NPSLcl TranslationSLcl TranslationSSAD �C@D�S
�D@�	�ЍIPSLcl RotationSLcl RotationSSA+D��F�<D ܥ�<D���%�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?x�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIP�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIȏ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIS�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIԐ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIZ�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@'�5PSDefaultKeyingGroupSintSIntegerSIh�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIӒ*PS
TransformableSboolSSI	�(PSCullingModeSenumSSID�-PSShowTrajectoriesSboolSSIt�"PSliwSBoolSSAUIœCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�0ModelL聬9SLeftHandPinky2ModelSLimbNodes�VersionI���Properties70�HPSPreRotationSVector3DSVectorSD�޶UQ㋿D,��)'��?DhO����?�+PSRotationActiveSboolSSIQ�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIH�NPSLcl TranslationSLcl TranslationSSAD���@D�Ji�D��¿��IPSLcl RotationSLcl RotationSSA+D����D ܥ=D���<��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?G�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD\�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIژ5PSRotationLimitsVisibilitySboolSSI"�:PSLocalTranslationRefVisibilitySboolSSIb�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI)�9PSHierarchicalCenterVisibilitySboolSSIm�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI7�3PSDefaultKeyingGroupEnumSenumSSIj�%PSPickableSboolSSI��*PS
TransformableSboolSSI؛(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIC�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYڜCullingS
CullingOff`�0ModelL���9SLeftHandPinky3ModelSLimbNodeB�VersionI��Properties70��+PSRotationActiveSboolSSIʝ(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDe�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD@�s@D���D�D@���>�IPSLcl RotationSLcl RotationSSA+D e|�<D�D���m�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI5�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDՠ/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIS�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIۡ2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI[�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI,�8PSReferentialSizeSdoubleSNumberSD(@o�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSIQ�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI
�CPSLimbLength 1SNumberSSAUD�?DDY@0�ShadingCYS�CullingS
CullingOff.�/ModelL���9SLeftHandRing1ModelSLimbNode��VersionI��Properties70)�HPSPreRotationSVector3DSVectorSD�E��=ģ�DM�˘^�@D��a>4c�b�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD3�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��@D�P�׿D EB��IPSLcl RotationSLcl RotationSSA+D� �<D ܥ̼D�#ڼ;�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSIȨ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIf�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIީ-PSPivotsVisibilitySenumSSI!�5PSRotationLimitsVisibilitySboolSSIi�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI)�1PSScalingRefVisibilitySboolSSIp�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@=�5PSDefaultKeyingGroupSintSIntegerSI~�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSIZ�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIۭCPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY!�CullingS
CullingOff��/ModelL��9SLeftHandRing2ModelSLimbNode��VersionI���Properties70��HPSPreRotationSVector3DSVectorSD0[�	�ԿD�DWP*@DA�?�{�0�+PSRotationActiveSboolSSIf�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI]�NPSLcl TranslationSLcl TranslationSSAD A@D`Va�D�;�̿��IPSLcl RotationSLcl RotationSSA+D e|�<D ܥ�<D`�x�<	�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?\�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIѱ-PSManipulationModeSenumSSI4�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDq�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI7�:PSLocalTranslationRefVisibilitySboolSSIw�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI>�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIȴ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIL�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI(�-PSShowTrajectoriesSboolSSIX�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@̶ShadingCY�CullingS
CullingOfft�/ModelL��9SLeftHandRing3ModelSLimbNodeV�VersionI�.�Properties70��+PSRotationActiveSboolSSI޷(PSInheritTypeSenumSSI3�GPS
ScalingMaxSVector3DSVectorSDDDy�8PSDefaultAttributeIndexSintSIntegerSIոNPSLcl TranslationSLcl TranslationSSAD��@DЎ@>D@Ϋ��,�IPSLcl RotationSLcl RotationSSA+D ܥ�<D����D�����GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?ԹEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSII�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI$�-PSPivotsVisibilitySenumSSIg�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI0�3PSRotationAxisVisibilitySboolSSIo�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI@�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIĽ3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI/�*PS
TransformableSboolSSIe�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIо"PSliwSBoolSSAUI!�CPSLimbLength 1SNumberSSAUD�?DDY@D�ShadingCYg�CullingS
CullingOffD�1ModelL�
�:SLeftHandMiddle1ModelSLimbNodeпVersionI���Properties70?�HPSPreRotationSVector3DSVectorSDR��Q7؀�D�5�k��D���--�x�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDI�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�h@D`5!ȿD�9�?��IPSLcl RotationSLcl RotationSSA+D`~ۚ�D����D�n�<Q�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI|�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI7�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI?�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@S�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI5�(PSCullingModeSenumSSIp�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY7�CullingS
CullingOff�1ModelL��:SLeftHandMiddle2ModelSLimbNode��VersionI���Properties70�HPSPreRotationSVector3DSVectorSD��`�տD`���@D8�#W'9�H�+PSRotationActiveSboolSSI~�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIu�NPSLcl TranslationSLcl TranslationSSAD Q�@D�,s??D�ǥ���IPSLcl RotationSLcl RotationSSA+D e|��D ܥ�<D��Q��!�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?t�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIL�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIO�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIV�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@#�5PSDefaultKeyingGroupSintSIntegerSId�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI@�-PSShowTrajectoriesSboolSSIp�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��1ModelL��:SLeftHandMiddle3ModelSLimbNodep�VersionI�H�Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIM�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD �+@D��v��D��5�>F�IPSLcl RotationSLcl RotationSSA+D� �<D ܥ�<D@������GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI(�,PS	MultiTakeSintSIntegerSIc�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI>�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI	�2PSRotationRefVisibilitySboolSSIJ�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIZ�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSII�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI;�CPSLimbLength 1SNumberSSAUD�?DDY@^�ShadingCY��CullingS
CullingOff]�0ModelL�:SLeftHandIndex1ModelSLimbNode��VersionI��Properties70X�HPSPreRotationSVector3DSVectorSD4�t�c�D���PNk"�Dʴ	A����+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDb�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��@D���D�B
@�IPSLcl RotationSLcl RotationSSA+D�K��D�D��ּj�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI2�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI
�-PSPivotsVisibilitySenumSSIP�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIX�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI)�8PSReferentialSizeSdoubleSNumberSD(@l�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIN�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI
�CPSLimbLength 1SNumberSSAUD�?DDY@-�ShadingCYP�CullingS
CullingOff,�0ModelL�:SLeftHandIndex2ModelSLimbNode��VersionI���Properties70'�HPSPreRotationSVector3DSVectorSD�&^�hQ�?D�������D�+�}�\�`�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD1�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�{�@D@�ft?D�Z�?��IPSLcl RotationSLcl RotationSSA+D ���D ܥ�<D���9�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSId�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIg�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI'�1PSScalingRefVisibilitySboolSSIn�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@;�5PSDefaultKeyingGroupSintSIntegerSI|�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIX�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��0ModelL$�:SLeftHandIndex3ModelSLimbNode��VersionI�_�Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSId�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD��_@D���D�?�վ]�IPSLcl RotationSLcl RotationSSA+D e|żD ܥ�<D@6��<��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI?�,PS	MultiTakeSintSIntegerSIz�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIU�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI �2PSRotationRefVisibilitySboolSSIa�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI+�6PSGeometricCenterVisibilitySboolSSIq�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI(�%PSPickableSboolSSI`�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIR�CPSLimbLength 1SNumberSSAUD�?DDY@u�ShadingCY��CullingS
CullingOfft�0ModelL)�:SLeftHandThumb1ModelSLimbNode�VersionI�.�Properties70o�HPSPreRotationSVector3DSVectorSDD��t[��?D2��*���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI3�GPS
ScalingMaxSVector3DSVectorSDDDy�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD���?D���D��l@,�IPSLcl RotationSLcl RotationSSA+D�e
z<D ܥ��D���ἁ�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSII�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI$�-PSPivotsVisibilitySenumSSIg�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI0�3PSRotationAxisVisibilitySboolSSIo�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI@�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI/�*PS
TransformableSboolSSIe�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI!�CPSLimbLength 1SNumberSSAUD�?DDY@D�ShadingCYg�CullingS
CullingOff�0ModelL .�:SLeftHandThumb2ModelSLimbNode��VersionI��Properties70!�+PSRotationActiveSboolSSIW�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIN�NPSLcl TranslationSLcl TranslationSSAD`�2�?D`���D`
�@��IPSLcl RotationSLcl RotationSSA+DD�DTn����GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?M�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI%UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDb/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI(:PSLocalTranslationRefVisibilitySboolSSIh2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI/9PSHierarchicalCenterVisibilitySboolSSIs6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI=3PSDefaultKeyingGroupEnumSenumSSIp%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSII"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�
0ModelL(3�:SLeftHandThumb3ModelSLimbNodeHVersionI�v
Properties70�HPSPreRotationSVector3DSVectorSD��cܥ�>DD�+PSRotationActiveSboolSSI&(PSInheritTypeSenumSSI{GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSINPSLcl TranslationSLcl TranslationSSAD@5^@D �r�D@��@tIPSLcl RotationSLcl RotationSSA+D��L�>DTn�DTn���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?EPSVisibility InheritanceSVisibility InheritanceSSIV,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD1	/PSSetPreferedAngleSActionSSIl	-PSPivotsVisibilitySenumSSI�	5PSRotationLimitsVisibilitySboolSSI�	:PSLocalTranslationRefVisibilitySboolSSI7
2PSRotationRefVisibilitySboolSSIx
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI�
9PSHierarchicalCenterVisibilitySboolSSIB6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSI?%PSPickableSboolSSIw*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI
"PSliwSBoolSSAUIi
CPSLimbLength 1SNumberSSAUD�?DDY@�
ShadingCY�
CullingS
CullingOff1,ModelL08�:SRightUpLegModelSLimbNodeVersionI��Properties70e+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD68PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@.�D �C�D�IPSLcl RotationSLcl RotationSSA+DDD>GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI-PSManipulationModeSenumSSIiUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI$5PSRotationLimitsVisibilitySboolSSIl:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI,1PSScalingRefVisibilitySboolSSIs9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@@5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI"(PSCullingModeSenumSSI]-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY$CullingS
CullingOff�*ModelL8=�:SRightLegModelSLimbNode�VersionI�^Properties70�+PSRotationActiveSboolSSI(PSInheritTypeSenumSSIcGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSINPSLcl TranslationSLcl TranslationSSAD`�p�D@�tD�D@�e��\IPSLcl RotationSLcl RotationSSA+DDD�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?EPSVisibility InheritanceSVisibility InheritanceSSI>,PS	MultiTakeSintSIntegerSIy-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD/PSSetPreferedAngleSActionSSIT-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI2PSRotationRefVisibilitySboolSSI`3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI*6PSGeometricCenterVisibilitySboolSSIp8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI'%PSPickableSboolSSI_*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUIQCPSLimbLength 1SNumberSSAUD�?DDY@tShadingCY�CullingS
CullingOff'+ModelL@B�:SRightFootModelSLimbNode�VersionI��&Properties70L+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD 8PSDefaultAttributeIndexSintSIntegerSIy NPSLcl TranslationSLcl TranslationSSAD`V}�D@e(E�D |�� IPSLcl RotationSLcl RotationSSA+DDD%!GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?x!EPSVisibility InheritanceSVisibility InheritanceSSI�!,PS	MultiTakeSintSIntegerSI�!-PSManipulationModeSenumSSIP"UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�"/PSSetPreferedAngleSActionSSI�"-PSPivotsVisibilitySenumSSI#5PSRotationLimitsVisibilitySboolSSIS#:PSLocalTranslationRefVisibilitySboolSSI�#2PSRotationRefVisibilitySboolSSI�#3PSRotationAxisVisibilitySboolSSI$1PSScalingRefVisibilitySboolSSIZ$9PSHierarchicalCenterVisibilitySboolSSI�$6PSGeometricCenterVisibilitySboolSSI�$8PSReferentialSizeSdoubleSNumberSD(@'%5PSDefaultKeyingGroupSintSIntegerSIh%3PSDefaultKeyingGroupEnumSenumSSI�%%PSPickableSboolSSI�%*PS
TransformableSboolSSI	&(PSCullingModeSenumSSID&-PSShowTrajectoriesSboolSSIt&"PSliwSBoolSSAUI�&CPSLimbLength 1SNumberSSAUD�?DDY@�&ShadingCY'CullingS
CullingOff�.+ModelL 9<SRightToesModelSLimbNoden'VersionI��.Properties70�'+PSRotationActiveSboolSSI�'(PSInheritTypeSenumSSIK(GPS
ScalingMaxSVector3DSVectorSDDD�(8PSDefaultAttributeIndexSintSIntegerSI�(NPSLcl TranslationSLcl TranslationSSAD�Y��D�TD�D`�-@@)EPSVisibility InheritanceSVisibility InheritanceSSIz),PS	MultiTakeSintSIntegerSI�)-PSManipulationModeSenumSSI*UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDU*/PSSetPreferedAngleSActionSSI�*-PSPivotsVisibilitySenumSSI�*5PSRotationLimitsVisibilitySboolSSI+:PSLocalTranslationRefVisibilitySboolSSI[+2PSRotationRefVisibilitySboolSSI�+3PSRotationAxisVisibilitySboolSSI�+1PSScalingRefVisibilitySboolSSI",9PSHierarchicalCenterVisibilitySboolSSIf,6PSGeometricCenterVisibilitySboolSSI�,8PSReferentialSizeSdoubleSNumberSD(@�,5PSDefaultKeyingGroupSintSIntegerSI0-3PSDefaultKeyingGroupEnumSenumSSIc-%PSPickableSboolSSI�-*PS
TransformableSboolSSI�-(PSCullingModeSenumSSI.-PSShowTrajectoriesSboolSSI<."PSliwSBoolSSAUI�.CPSLimbLength 1SNumberSSAUD�?DDY@�.ShadingCY�.CullingS
CullingOffT7+ModelL(9<SLeftUpLegModelSLimbNode6/VersionI�7Properties70�/+PSRotationActiveSboolSSI�/(PSInheritTypeSenumSSI0GPS
ScalingMaxSVector3DSVectorSDDDY08PSDefaultAttributeIndexSintSIntegerSI�0NPSLcl TranslationSLcl TranslationSSAD`.@D��C�D1IPSLcl RotationSLcl RotationSSA+DDDa1GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�1EPSVisibility InheritanceSVisibility InheritanceSSI�1,PS	MultiTakeSintSIntegerSI)2-PSManipulationModeSenumSSI�2UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�2/PSSetPreferedAngleSActionSSI3-PSPivotsVisibilitySenumSSIG35PSRotationLimitsVisibilitySboolSSI�3:PSLocalTranslationRefVisibilitySboolSSI�32PSRotationRefVisibilitySboolSSI43PSRotationAxisVisibilitySboolSSIO41PSScalingRefVisibilitySboolSSI�49PSHierarchicalCenterVisibilitySboolSSI�46PSGeometricCenterVisibilitySboolSSI 58PSReferentialSizeSdoubleSNumberSD(@c55PSDefaultKeyingGroupSintSIntegerSI�53PSDefaultKeyingGroupEnumSenumSSI�5%PSPickableSboolSSI6*PS
TransformableSboolSSIE6(PSCullingModeSenumSSI�6-PSShowTrajectoriesSboolSSI�6"PSliwSBoolSSAUI7CPSLimbLength 1SNumberSSAUD�?DDY@$7ShadingCYG7CullingS
CullingOff�?)ModelL0
9<SLeftLegModelSLimbNode�7VersionI��?Properties70�7+PSRotationActiveSboolSSI08(PSInheritTypeSenumSSI�8GPS
ScalingMaxSVector3DSVectorSDDD�88PSDefaultAttributeIndexSintSIntegerSI'9NPSLcl TranslationSLcl TranslationSSAD�p@D �tD�D@�e��~9IPSLcl RotationSLcl RotationSSA+DDD�9GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?&:EPSVisibility InheritanceSVisibility InheritanceSSI`:,PS	MultiTakeSintSIntegerSI�:-PSManipulationModeSenumSSI�:UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD;;/PSSetPreferedAngleSActionSSIv;-PSPivotsVisibilitySenumSSI�;5PSRotationLimitsVisibilitySboolSSI<:PSLocalTranslationRefVisibilitySboolSSIA<2PSRotationRefVisibilitySboolSSI�<3PSRotationAxisVisibilitySboolSSI�<1PSScalingRefVisibilitySboolSSI=9PSHierarchicalCenterVisibilitySboolSSIL=6PSGeometricCenterVisibilitySboolSSI�=8PSReferentialSizeSdoubleSNumberSD(@�=5PSDefaultKeyingGroupSintSIntegerSI>3PSDefaultKeyingGroupEnumSenumSSII>%PSPickableSboolSSI�>*PS
TransformableSboolSSI�>(PSCullingModeSenumSSI�>-PSShowTrajectoriesSboolSSI"?"PSliwSBoolSSAUIs?CPSLimbLength 1SNumberSSAUD�?DDY@�?ShadingCY�?CullingS
CullingOff9H*ModelL89<SLeftFootModelSLimbNode@VersionI��GProperties70m@+PSRotationActiveSboolSSI�@(PSInheritTypeSenumSSI�@GPS
ScalingMaxSVector3DSVectorSDDD>A8PSDefaultAttributeIndexSintSIntegerSI�ANPSLcl TranslationSLcl TranslationSSAD`V}�?D@e(E�D |��AIPSLcl RotationSLcl RotationSSA+DDDFBGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�BEPSVisibility InheritanceSVisibility InheritanceSSI�B,PS	MultiTakeSintSIntegerSIC-PSManipulationModeSenumSSIqCUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�C/PSSetPreferedAngleSActionSSI�C-PSPivotsVisibilitySenumSSI,D5PSRotationLimitsVisibilitySboolSSItD:PSLocalTranslationRefVisibilitySboolSSI�D2PSRotationRefVisibilitySboolSSI�D3PSRotationAxisVisibilitySboolSSI4E1PSScalingRefVisibilitySboolSSI{E9PSHierarchicalCenterVisibilitySboolSSI�E6PSGeometricCenterVisibilitySboolSSIF8PSReferentialSizeSdoubleSNumberSD(@HF5PSDefaultKeyingGroupSintSIntegerSI�F3PSDefaultKeyingGroupEnumSenumSSI�F%PSPickableSboolSSI�F*PS
TransformableSboolSSI*G(PSCullingModeSenumSSIeG-PSShowTrajectoriesSboolSSI�G"PSliwSBoolSSAUI�GCPSLimbLength 1SNumberSSAUD�?DDY@	HShadingCY,HCullingS
CullingOffP*ModelL@9<SLeftToesModelSLimbNode�HVersionI��OProperties70�H+PSRotationActiveSboolSSII(PSInheritTypeSenumSSIkIGPS
ScalingMaxSVector3DSVectorSDDD�I8PSDefaultAttributeIndexSintSIntegerSI
JNPSLcl TranslationSLcl TranslationSSAD�Y��?D�TD�D��-@`JEPSVisibility InheritanceSVisibility InheritanceSSI�J,PS	MultiTakeSintSIntegerSI�J-PSManipulationModeSenumSSI8KUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDuK/PSSetPreferedAngleSActionSSI�K-PSPivotsVisibilitySenumSSI�K5PSRotationLimitsVisibilitySboolSSI;L:PSLocalTranslationRefVisibilitySboolSSI{L2PSRotationRefVisibilitySboolSSI�L3PSRotationAxisVisibilitySboolSSI�L1PSScalingRefVisibilitySboolSSIBM9PSHierarchicalCenterVisibilitySboolSSI�M6PSGeometricCenterVisibilitySboolSSI�M8PSReferentialSizeSdoubleSNumberSD(@N5PSDefaultKeyingGroupSintSIntegerSIPN3PSDefaultKeyingGroupEnumSenumSSI�N%PSPickableSboolSSI�N*PS
TransformableSboolSSI�N(PSCullingModeSenumSSI,O-PSShowTrajectoriesSboolSSI\O"PSliwSBoolSSAUI�OCPSLimbLength 1SNumberSSAUD�?DDY@�OShadingCY�OCullingS
CullingOff�P&AnimationStackLЉZ:STake 001AnimStackS�PProperties70�P/PS	LocalStopSKTimeSTimeSLp6��5�P3PS
ReferenceStopSKTimeSTimeSLp6��5mR/AnimationStackL�Z:SRun_FastStop_IdleAnimStackS`RProperties70�Q0PS
LocalStartSKTimeSTimeSLм.��Q/PS	LocalStopSKTimeSTimeSL���9R4PSReferenceStartSKTimeSTimeSLм.�SR3PS
ReferenceStopSKTimeSTimeSL���9U4AnimationLayerLX��9S!Take 001:BaseAnimationAnimLayerSUProperties70$SAPSColorSColorRGBSColorSD�������?DD�������?gS5PSBlendModeBypassS	ULongLongSSL�S,PS	MultiTakeSintSIntegerSI�S+PSmLayerIDSintSIntegerSIT)PSMutedForSoloSboolSSIIT*PS
MutedByParentSboolSSI�T+PSLockedByParentSboolSSI�T5PSParentCollapseVisibilitySboolSSI�T"PSEmptySboolSSI�W1AnimationLayerL��9STake 001:AnimLayer1AnimLayerS�WProperties70�UAPSColorSColorRGBSColorSD�������?DD�������?V5PSBlendModeBypassS	ULongLongSSL@V,PS	MultiTakeSintSIntegerSIyV+PSmLayerIDSintSIntegerSI�V)PSMutedForSoloSboolSSI�V*PS
MutedByParentSboolSSI!W+PSLockedByParentSboolSSIdW5PSParentCollapseVisibilitySboolSSI�W"PSEmptySboolSSIVZ:AnimationLayerL�	�9S'Run_FastStop_Idle:AnimLayer1AnimLayerSIZProperties70kXAPSColorSColorRGBSColorSD�������?DD�������?�X5PSBlendModeBypassS	ULongLongSSL�X,PS	MultiTakeSintSIntegerSI!Y+PSmLayerIDSintSIntegerSIXY)PSMutedForSoloSboolSSI�Y*PS
MutedByParentSboolSSI�Y+PSLockedByParentSboolSSIZ5PSParentCollapseVisibilitySboolSSI<Z"PSEmptySboolSSI]=AnimationLayerL�,�9S*Run_FastStop_Idle:BaseAnimationAnimLayerS�\Properties70[APSColorSColorRGBSColorSD�������?DD�������?Y[5PSBlendModeBypassS	ULongLongSSL�[,PS	MultiTakeSintSIntegerSI�[+PSmLayerIDSintSIntegerSI\)PSMutedForSoloSboolSSI;\*PS
MutedByParentSboolSSIt\+PSLockedByParentSboolSSI�\5PSParentCollapseVisibilitySboolSSI�\"PSEmptySboolSSI@^#AnimationCurveNodeL�L�:STAnimCurveNodeS3^Properties70�]PSdSCompoundSS�]'PSd|XSNumberSSAD�]'PSd|YSNumberSSAD HX@&^'PSd|ZSNumberSSAD_#AnimationCurveNodeL�&�:SRAnimCurveNodeSr_Properties70�^PSdSCompoundSS�^'PSd|XSNumberSSAD0_'PSd|YSNumberSSAD�e_'PSd|ZSNumberSSAD�`#AnimationCurveNodeL�'�:SSAnimCurveNodeS�`Properties70`PSdSCompoundSS:`'PSd|XSNumberSSAD�?o`'PSd|YSNumberSSAD�?�`'PSd|ZSNumberSSAD�?�a#AnimationCurveNodeL�х:SRAnimCurveNodeS�aProperties70DaPSdSCompoundSSya'PSd|XSNumberSSAD�a'PSd|YSNumberSSAD��a'PSd|ZSNumberSSAD<c#AnimationCurveNodeL@��:SSAnimCurveNodeS/cProperties70�bPSdSCompoundSS�b'PSd|XSNumberSSAD�?�b'PSd|YSNumberSSAD�?"c'PSd|ZSNumberSSAD�?{d#AnimationCurveNodeL��:SRAnimCurveNodeSndProperties70�cPSdSCompoundSS�c'PSd|XSNumberSSAD,d'PSd|YSNumberSSAD�ad'PSd|ZSNumberSSAD�e#AnimationCurveNodeLp5�:SSAnimCurveNodeS�eProperties70ePSdSCompoundSS6e'PSd|XSNumberSSAD�?ke'PSd|YSNumberSSAD�?�e'PSd|ZSNumberSSAD�?�f#AnimationCurveNodeLh�:SRAnimCurveNodeS�fProperties70@fPSdSCompoundSSuf'PSd|XSNumberSSAD�f'PSd|YSNumberSSAD��f'PSd|ZSNumberSSAD8h#AnimationCurveNodeL8��:SSAnimCurveNodeS+hProperties70gPSdSCompoundSS�g'PSd|XSNumberSSAD�?�g'PSd|YSNumberSSAD�?h'PSd|ZSNumberSSAD�?wi#AnimationCurveNodeLx{�:SRAnimCurveNodeSjiProperties70�hPSdSCompoundSS�h'PSd|XSNumberSSAD(i'PSd|YSNumberSSAD ܥ�]i'PSd|ZSNumberSSAD e|�<�j#AnimationCurveNodeL�څ:SSAnimCurveNodeS�jProperties70�iPSdSCompoundSS2j'PSd|XSNumberSSAD�?gj'PSd|YSNumberSSAD�?�j'PSd|ZSNumberSSAD�?�k#AnimationCurveNodeL�B�:SRAnimCurveNodeS�kProperties70<kPSdSCompoundSSqk'PSd|XSNumberSSAD@��k'PSd|YSNumberSSAD��k'PSd|ZSNumberSSAD 	��<4m#AnimationCurveNodeL���:SSAnimCurveNodeS'mProperties70{lPSdSCompoundSS�l'PSd|XSNumberSSAD�?�l'PSd|YSNumberSSAD�?m'PSd|ZSNumberSSAD�?sn#AnimationCurveNodeL�9�:SRAnimCurveNodeSfnProperties70�mPSdSCompoundSS�m'PSd|XSNumberSSAD e|��$n'PSd|YSNumberSSAD ܥܼYn'PSd|ZSNumberSSAD 2���o#AnimationCurveNodeL8C�:SSAnimCurveNodeS�oProperties70�nPSdSCompoundSS.o'PSd|XSNumberSSAD�?co'PSd|YSNumberSSAD�?�o'PSd|ZSNumberSSAD�?�p#AnimationCurveNodeL�J�:SRAnimCurveNodeS�pProperties708pPSdSCompoundSSmp'PSd|XSNumberSSAD� �<�p'PSd|YSNumberSSAD ܥ���p'PSd|ZSNumberSSAD�
��<0r#AnimationCurveNodeLPO�:SSAnimCurveNodeS#rProperties70wqPSdSCompoundSS�q'PSd|XSNumberSSAD�?�q'PSd|YSNumberSSAD�?r'PSd|ZSNumberSSAD�?os#AnimationCurveNodeLȔ�:SRAnimCurveNodeSbsProperties70�rPSdSCompoundSS�r'PSd|XSNumberSSAD�K�� s'PSd|YSNumberSSAD ܥ�<Us'PSd|ZSNumberSSAD����<�t#AnimationCurveNodeL`'�:SSAnimCurveNodeS�tProperties70�sPSdSCompoundSS*t'PSd|XSNumberSSAD�?_t'PSd|YSNumberSSAD�?�t'PSd|ZSNumberSSAD�?�u#AnimationCurveNodeL�.�:SRAnimCurveNodeS�uProperties704uPSdSCompoundSSiu'PSd|XSNumberSSAD�D3�<�u'PSd|YSNumberSSAD��	=�u'PSd|ZSNumberSSAD��
ռ,w#AnimationCurveNodeL��:SSAnimCurveNodeSwProperties70svPSdSCompoundSS�v'PSd|XSNumberSSAD�?�v'PSd|YSNumberSSAD�?w'PSd|ZSNumberSSAD�?kx#AnimationCurveNodeL�=�:SRAnimCurveNodeS^xProperties70�wPSdSCompoundSS�w'PSd|XSNumberSSADx'PSd|YSNumberSSAD ܥ�<Qx'PSd|ZSNumberSSAD ܥ\��y#AnimationCurveNodeL���:SSAnimCurveNodeS�yProperties70�xPSdSCompoundSS&y'PSd|XSNumberSSAD�?[y'PSd|YSNumberSSAD�?�y'PSd|ZSNumberSSAD�?�z#AnimationCurveNodeL [�:SRAnimCurveNodeS�zProperties700zPSdSCompoundSSez'PSd|XSNumberSSAD e|u<�z'PSd|YSNumberSSAD����<�z'PSd|ZSNumberSSAD��o��(|#AnimationCurveNodeL��:SSAnimCurveNodeS|Properties70o{PSdSCompoundSS�{'PSd|XSNumberSSAD�?�{'PSd|YSNumberSSAD�?|'PSd|ZSNumberSSAD�?g}#AnimationCurveNodeLp��:SRAnimCurveNodeSZ}Properties70�|PSdSCompoundSS�|'PSd|XSNumberSSAD�a�}'PSd|YSNumberSSAD e|�<M}'PSd|ZSNumberSSAD�ja�<�~#AnimationCurveNodeLX��:SSAnimCurveNodeS�~Properties70�}PSdSCompoundSS"~'PSd|XSNumberSSAD�?W~'PSd|YSNumberSSAD�?�~'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL@��:SRAnimCurveNodeS�Properties70,PSdSCompoundSSa'PSd|XSNumberSSAD ܥ���'PSd|YSNumberSSAD ܥܼ�'PSd|ZSNumberSSAD�9p��$�#AnimationCurveNodeLж�:SSAnimCurveNodeS�Properties70k�PSdSCompoundSS��'PSd|XSNumberSSAD�?Հ'PSd|YSNumberSSAD�?
�'PSd|ZSNumberSSAD�?c�#AnimationCurveNodeLxN�:SRAnimCurveNodeSV�Properties70��PSdSCompoundSS߁'PSd|XSNumberSSAD@�Q�<�'PSd|YSNumberSSAD ܥܼI�'PSd|ZSNumberSSAD���<��#AnimationCurveNodeL���:SSAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?S�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL ��:SRAnimCurveNodeSԄProperties70(�PSdSCompoundSS]�'PSd|XSNumberSSAD`~�ʼ��'PSd|YSNumberSSAD���=DŽ'PSd|ZSNumberSSAD@� �#AnimationCurveNodeL��:SSAnimCurveNodeS�Properties70g�PSdSCompoundSS��'PSd|XSNumberSSAD�?х'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?_�#AnimationCurveNodeL��:SRAnimCurveNodeSR�Properties70��PSdSCompoundSSۆ'PSd|XSNumberSSAD ܥ���'PSd|YSNumberSSAD ܥ�<E�'PSd|ZSNumberSSAD��h����#AnimationCurveNodeL�5�:SSAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?O�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?݉#AnimationCurveNodeL"�:SRAnimCurveNodeSЉProperties70$�PSdSCompoundSSY�'PSd|XSNumberSSAD`~۪���'PSd|YSNumberSSAD e|�É'PSd|ZSNumberSSAD`��ݼ�#AnimationCurveNodeL��:SSAnimCurveNodeS�Properties70c�PSdSCompoundSS��'PSd|XSNumberSSAD�?͊'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?[�#AnimationCurveNodeL�G�:SRAnimCurveNodeSN�Properties70��PSdSCompoundSS׋'PSd|XSNumberSSAD`���<�'PSd|YSNumberSSAD��	�A�'PSd|ZSNumberSSAD���<��#AnimationCurveNodeL8��:SSAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?K�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?َ#AnimationCurveNodeL(,�:SRAnimCurveNodeS̎Properties70 �PSdSCompoundSSU�'PSd|XSNumberSSAD e|ռ��'PSd|YSNumberSSAD ܥ����'PSd|ZSNumberSSAD`����#AnimationCurveNodeLȦ�:SSAnimCurveNodeS�Properties70_�PSdSCompoundSS��'PSd|XSNumberSSAD�?ɏ'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?W�#AnimationCurveNodeLP�:SRAnimCurveNodeSJ�Properties70��PSdSCompoundSSӐ'PSd|XSNumberSSAD@�B���'PSd|YSNumberSSAD ܥ��=�'PSd|ZSNumberSSAD�>����#AnimationCurveNodeLh
�:SSAnimCurveNodeS��Properties70ݑPSdSCompoundSS�'PSd|XSNumberSSAD�?G�'PSd|YSNumberSSAD�?|�'PSd|ZSNumberSSAD�?Փ#AnimationCurveNodeL�d�:SRAnimCurveNodeSȓProperties70�PSdSCompoundSSQ�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD ���9�#AnimationCurveNodeLp��:SSAnimCurveNodeS�Properties70[�PSdSCompoundSS��'PSd|XSNumberSSAD�?Ŕ'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?S�#AnimationCurveNodeL �:SRAnimCurveNodeSF�Properties70��PSdSCompoundSSϕ'PSd|XSNumberSSAD e|���'PSd|YSNumberSSAD@��R89�'PSd|ZSNumberSSAD ���9��#AnimationCurveNodeLpb�:SSAnimCurveNodeS��Properties70ٖPSdSCompoundSS�'PSd|XSNumberSSAD�?C�'PSd|YSNumberSSAD�?x�'PSd|ZSNumberSSAD�?ј#AnimationCurveNodeLp��:SRAnimCurveNodeSĘProperties70�PSdSCompoundSSM�'PSd|XSNumberSSAD e|异�'PSd|YSNumberSSAD���񼷘'PSd|ZSNumberSSAD`�s=�#AnimationCurveNodeLl�:SSAnimCurveNodeS�Properties70W�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?O�#AnimationCurveNodeLpt�:STAnimCurveNodeSB�Properties70��PSdSCompoundSS˚'PSd|XSNumberSSAD��$@�'PSd|YSNumberSSAD0=5�'PSd|ZSNumberSSAD�<��#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties70՛PSdSCompoundSS
�'PSd|XSNumberSSAD���ռ?�'PSd|YSNumberSSAD ܥ�<t�'PSd|ZSNumberSSAD`*4!�͝#AnimationCurveNodeL�߅:SSAnimCurveNodeS��Properties70�PSdSCompoundSSI�'PSd|XSNumberSSAD�?~�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL@�:STAnimCurveNodeS��Properties70S�PSdSCompoundSS��'PSd|XSNumberSSAD��g9@��'PSd|YSNumberSSAD0=�'PSd|ZSNumberSSAD�<K�#AnimationCurveNodeLh��:SRAnimCurveNodeS>�Properties70��PSdSCompoundSSǟ'PSd|XSNumberSSAD��硼��'PSd|YSNumberSSAD����1�'PSd|ZSNumberSSAD�s����#AnimationCurveNodeLK�:SSAnimCurveNodeS}�Properties70ѠPSdSCompoundSS�'PSd|XSNumberSSAD�?;�'PSd|YSNumberSSAD�?p�'PSd|ZSNumberSSAD�?ɢ#AnimationCurveNodeL@��:SRAnimCurveNodeS��Properties70�PSdSCompoundSSE�'PSd|XSNumberSSAD ܥl�z�'PSd|YSNumberSSAD ܥ����'PSd|ZSNumberSSAD )�<�#AnimationCurveNodeLf�:SSAnimCurveNodeS��Properties70O�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?G�#AnimationCurveNodeL���:SRAnimCurveNodeS:�Properties70��PSdSCompoundSSä'PSd|XSNumberSSAD��F�<��'PSd|YSNumberSSAD ܥ�<-�'PSd|ZSNumberSSAD�����#AnimationCurveNodeLX�:SSAnimCurveNodeSy�Properties70ͥPSdSCompoundSS�'PSd|XSNumberSSAD�?7�'PSd|YSNumberSSAD�?l�'PSd|ZSNumberSSAD�?ŧ#AnimationCurveNodeLH$�:SRAnimCurveNodeS��Properties70�PSdSCompoundSSA�'PSd|XSNumberSSAD����v�'PSd|YSNumberSSAD ܥ=��'PSd|ZSNumberSSAD���<�#AnimationCurveNodeLF�:SSAnimCurveNodeS��Properties70K�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?C�#AnimationCurveNodeL��:SRAnimCurveNodeS6�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD e|�<��'PSd|YSNumberSSAD�)�'PSd|ZSNumberSSAD�����#AnimationCurveNodeLHZ�:SSAnimCurveNodeSu�Properties70ɪPSdSCompoundSS��'PSd|XSNumberSSAD�?3�'PSd|YSNumberSSAD�?h�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�օ:SRAnimCurveNodeS��Properties70�PSdSCompoundSS=�'PSd|XSNumberSSAD� �<r�'PSd|YSNumberSSAD ܥ̼��'PSd|ZSNumberSSAD�#ڼ�#AnimationCurveNodeL8g�:SSAnimCurveNodeS�Properties70G�PSdSCompoundSS|�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�??�#AnimationCurveNodeLP��:SRAnimCurveNodeS2�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD e|�<�'PSd|YSNumberSSAD ܥ�<%�'PSd|ZSNumberSSAD`�x�<~�#AnimationCurveNodeL-�:SSAnimCurveNodeSq�Properties70ůPSdSCompoundSS��'PSd|XSNumberSSAD�?/�'PSd|YSNumberSSAD�?d�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�j�:SRAnimCurveNodeS��Properties70�PSdSCompoundSS9�'PSd|XSNumberSSAD ܥ�<n�'PSd|YSNumberSSAD���񼣱'PSd|ZSNumberSSAD�����#AnimationCurveNodeL���:SSAnimCurveNodeS�Properties70C�PSdSCompoundSSx�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?;�#AnimationCurveNodeL�1�:SRAnimCurveNodeS.�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD`~ۚ��'PSd|YSNumberSSAD����!�'PSd|ZSNumberSSAD�n�<z�#AnimationCurveNodeL)�:SSAnimCurveNodeSm�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?+�'PSd|YSNumberSSAD�?`�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLP|�:SRAnimCurveNodeS��Properties70�PSdSCompoundSS5�'PSd|XSNumberSSAD e|��j�'PSd|YSNumberSSAD ܥ�<��'PSd|ZSNumberSSAD��Q����#AnimationCurveNodeLP��:SSAnimCurveNodeS�Properties70?�PSdSCompoundSSt�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?޷'PSd|ZSNumberSSAD�?7�#AnimationCurveNodeLx<�:SRAnimCurveNodeS*�Properties70~�PSdSCompoundSS��'PSd|XSNumberSSAD� �<�'PSd|YSNumberSSAD ܥ�<�'PSd|ZSNumberSSAD@����v�#AnimationCurveNodeL���:SSAnimCurveNodeSi�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?'�'PSd|YSNumberSSAD�?\�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties70��PSdSCompoundSS1�'PSd|XSNumberSSAD�K��f�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD��ּ��#AnimationCurveNodeLH~�:SSAnimCurveNodeS�Properties70;�PSdSCompoundSSp�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?ڼ'PSd|ZSNumberSSAD�?3�#AnimationCurveNodeL9�:SRAnimCurveNodeS&�Properties70z�PSdSCompoundSS��'PSd|XSNumberSSAD ����'PSd|YSNumberSSAD ܥ�<�'PSd|ZSNumberSSAD���r�#AnimationCurveNodeL �:SSAnimCurveNodeSe�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?#�'PSd|YSNumberSSAD�?X�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�k�:SRAnimCurveNodeS��Properties70��PSdSCompoundSS-�'PSd|XSNumberSSAD e|żb�'PSd|YSNumberSSAD ܥ�<��'PSd|ZSNumberSSAD@6��<��#AnimationCurveNodeL���:SSAnimCurveNodeS��Properties707�PSdSCompoundSSl�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?/�#AnimationCurveNodeL�݅:SRAnimCurveNodeS"�Properties70v�PSdSCompoundSS��'PSd|XSNumberSSAD�e
z<��'PSd|YSNumberSSAD ܥ���'PSd|ZSNumberSSAD����n�#AnimationCurveNodeL҅:SSAnimCurveNodeSa�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?T�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL���:SRAnimCurveNodeS��Properties70��PSdSCompoundSS)�'PSd|XSNumberSSAD^�'PSd|YSNumberSSAD���'PSd|ZSNumberSSADTn����#AnimationCurveNodeL8�:SSAnimCurveNodeS��Properties703�PSdSCompoundSSh�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?+�#AnimationCurveNodeL���:SRAnimCurveNodeS�Properties70r�PSdSCompoundSS��'PSd|XSNumberSSAD��L�>��'PSd|YSNumberSSADTn��'PSd|ZSNumberSSADTn��j�#AnimationCurveNodeL���:SSAnimCurveNodeS]�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?P�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLxÅ:SRAnimCurveNodeS��Properties70��PSdSCompoundSS%�'PSd|XSNumberSSADZ�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD��#AnimationCurveNodeL@��:SSAnimCurveNodeS��Properties70/�PSdSCompoundSSd�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?'�#AnimationCurveNodeL�҅:SRAnimCurveNodeS�Properties70n�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�
�'PSd|ZSNumberSSADf�#AnimationCurveNodeLx�:SSAnimCurveNodeSY�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?L�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL(�:SRAnimCurveNodeS��Properties70��PSdSCompoundSS!�'PSd|XSNumberSSADV�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD��#AnimationCurveNodeL���:SSAnimCurveNodeS��Properties70+�PSdSCompoundSS`�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?#�#AnimationCurveNodeL�i�:SRAnimCurveNodeS�Properties70j�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�	�'PSd|ZSNumberSSADb�#AnimationCurveNodeL?�:SSAnimCurveNodeSU�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?H�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�:SRAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSADR�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD��#AnimationCurveNodeL�m�:SSAnimCurveNodeS��Properties70'�PSdSCompoundSS\�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL��:SRAnimCurveNodeS�Properties70f�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD^�#AnimationCurveNodeL`�:SSAnimCurveNodeSQ�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?D�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL*i;STAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD t@N�'PSd|YSNumberSSAD�F�s@��'PSd|ZSNumberSSAD���O���#AnimationCurveNodeL�(i;SRAnimCurveNodeS��Properties70#�PSdSCompoundSSX�'PSd|XSNumberSSAD��W@��'PSd|YSNumberSSAD�=TU���'PSd|ZSNumberSSAD@�Q��#AnimationCurveNodeLxi;SSAnimCurveNodeS�Properties70b�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?Z�#AnimationCurveNodeL<i;SRAnimCurveNodeSM�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�R@�'PSd|YSNumberSSAD �?@�'PSd|ZSNumberSSAD�
����#AnimationCurveNodeLX1i;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?J�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL��h;SRAnimCurveNodeS��Properties70�PSdSCompoundSST�'PSd|XSNumberSSAD������'PSd|YSNumberSSAD@*|�?��'PSd|ZSNumberSSAD@��ؿ�#AnimationCurveNodeL0�h;SSAnimCurveNodeS
�Properties70^�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?V�#AnimationCurveNodeL�i;SRAnimCurveNodeSI�Properties70��PSdSCompoundSS��'PSd|XSNumberSSADN)��'PSd|YSNumberSSAD�A��<�'PSd|ZSNumberSSAD��3���#AnimationCurveNodeLx�i;SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?F�'PSd|YSNumberSSAD�?{�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL��h;SRAnimCurveNodeS��Properties70�PSdSCompoundSSP�'PSd|XSNumberSSAD`Ǯ���'PSd|YSNumberSSAD`|�!@��'PSd|ZSNumberSSAD����#AnimationCurveNodeL�h;SSAnimCurveNodeS�Properties70Z�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?R�#AnimationCurveNodeLȮi;SRAnimCurveNodeSE�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD 02*@�'PSd|YSNumberSSAD�ݡ�?8�'PSd|ZSNumberSSAD��ZQ@��#AnimationCurveNodeL:i;SSAnimCurveNodeS��Properties70��PSdSCompoundSS
�'PSd|XSNumberSSAD�?B�'PSd|YSNumberSSAD�?w�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�7i;SRAnimCurveNodeS��Properties70�PSdSCompoundSSL�'PSd|XSNumberSSAD@�k@��'PSd|YSNumberSSAD��N@��'PSd|ZSNumberSSAD�@��?�#AnimationCurveNodeL��h;SSAnimCurveNodeS�Properties70V�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?N�#AnimationCurveNodeL8�i;SRAnimCurveNodeSA�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD���տ��'PSd|YSNumberSSAD �"
�4�'PSd|ZSNumberSSAD��/���#AnimationCurveNodeLH}i;SSAnimCurveNodeS��Properties70��PSdSCompoundSS	�'PSd|XSNumberSSAD�?>�'PSd|YSNumberSSAD�?s�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL`�i;SRAnimCurveNodeS��Properties70�PSdSCompoundSSH�'PSd|XSNumberSSAD�
�}�'PSd|YSNumberSSAD@`m/@��'PSd|ZSNumberSSAD`k@@�#AnimationCurveNodeL��h;SSAnimCurveNodeS��Properties70R�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?J�#AnimationCurveNodeL�ri;SRAnimCurveNodeS=�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�c����'PSd|YSNumberSSAD-@0�'PSd|ZSNumberSSAD �A@��#AnimationCurveNodeL��i;SSAnimCurveNodeS|�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?:�'PSd|YSNumberSSAD�?o�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL��h;SRAnimCurveNodeS��Properties70�PSdSCompoundSSD�'PSd|XSNumberSSAD�Zn
�y�'PSd|YSNumberSSAD @��?��'PSd|ZSNumberSSAD^�1@�#AnimationCurveNodeL�i;SSAnimCurveNodeS��Properties70N�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?F�#AnimationCurveNodeLhci;SRAnimCurveNodeS9�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD@����'PSd|YSNumberSSAD�d@,�'PSd|ZSNumberSSAD ��@@��#AnimationCurveNodeL@�h;SSAnimCurveNodeSx�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?6�'PSd|YSNumberSSAD�?k�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL��h;SRAnimCurveNodeS��Properties70�PSdSCompoundSS@�'PSd|XSNumberSSAD���	�u�'PSd|YSNumberSSAD��R�?��'PSd|ZSNumberSSAD��A@�#AnimationCurveNodeL�ji;SSAnimCurveNodeS��Properties70J�PSdSCompoundSS�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?B�#AnimationCurveNodeL0qi;SRAnimCurveNodeS5�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD,�����'PSd|YSNumberSSAD��W�?(�'PSd|ZSNumberSSAD��1@��#AnimationCurveNodeLP<i;SSAnimCurveNodeSt�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?2�'PSd|YSNumberSSAD�?g�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLri;SRAnimCurveNodeS��Properties70�PSdSCompoundSS<�'PSd|XSNumberSSAD@|�@q�'PSd|YSNumberSSAD��G����'PSd|ZSNumberSSAD@��A@��#AnimationCurveNodeL�3i;SSAnimCurveNodeS��Properties70F�PSdSCompoundSS{�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?>#AnimationCurveNodeL -i;SRAnimCurveNodeS1Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD C��?��'PSd|YSNumberSSADEԿ$'PSd|ZSNumberSSAD�?�D@}#AnimationCurveNodeL@mi;SSAnimCurveNodeSpProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?.'PSd|YSNumberSSAD�?c'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL�-i;SRAnimCurveNodeS�Properties70PSdSCompoundSS8'PSd|XSNumberSSAD@�(�?m'PSd|YSNumberSSAD�p���'PSd|ZSNumberSSAD��6@�#AnimationCurveNodeL�#i;SSAnimCurveNodeS�Properties70BPSdSCompoundSSw'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?:#AnimationCurveNodeLH>i;SRAnimCurveNodeS-Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�����'PSd|YSNumberSSAD���� 'PSd|ZSNumberSSAD�%;@y#AnimationCurveNodeL $i;SSAnimCurveNodeSlProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?*'PSd|YSNumberSSAD�?_'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL��h;SRAnimCurveNodeS�Properties70�PSdSCompoundSS4'PSd|XSNumberSSAD@M�@i'PSd|YSNumberSSAD�����'PSd|ZSNumberSSAD`o�C@�#AnimationCurveNodeL�i;SSAnimCurveNodeS�Properties70>PSdSCompoundSSs'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?6
#AnimationCurveNodeLH#i;SRAnimCurveNodeS)
Properties70}	PSdSCompoundSS�	'PSd|XSNumberSSAD��p�?�	'PSd|YSNumberSSAD���
'PSd|ZSNumberSSAD@�@$@u#AnimationCurveNodeLHYi;SSAnimCurveNodeShProperties70�
PSdSCompoundSS�
'PSd|XSNumberSSAD�?&'PSd|YSNumberSSAD�?['PSd|ZSNumberSSAD�?�#AnimationCurveNodeL@i;SRAnimCurveNodeS�Properties70�PSdSCompoundSS0'PSd|XSNumberSSAD���+@e'PSd|YSNumberSSAD�
��'PSd|ZSNumberSSAD}f@�
#AnimationCurveNodeL8�h;SSAnimCurveNodeS�
Properties70:
PSdSCompoundSSo
'PSd|XSNumberSSAD�?�
'PSd|YSNumberSSAD�?�
'PSd|ZSNumberSSAD�?2#AnimationCurveNodeL�ii;SRAnimCurveNodeS%Properties70yPSdSCompoundSS�'PSd|XSNumberSSAD�Y��?�'PSd|YSNumberSSAD�J� �'PSd|ZSNumberSSAD �Ͽq#AnimationCurveNodeL�i;SSAnimCurveNodeSdProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?"'PSd|YSNumberSSAD�?W'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL�i;SRAnimCurveNodeS�Properties70�PSdSCompoundSS,'PSd|XSNumberSSADC@a'PSd|YSNumberSSAD�99��'PSd|ZSNumberSSAD��s��#AnimationCurveNodeLP�i;SSAnimCurveNodeS�Properties706PSdSCompoundSSk'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?.#AnimationCurveNodeL�i;SRAnimCurveNodeS!Properties70uPSdSCompoundSS�'PSd|XSNumberSSAD@��ݿ�'PSd|YSNumberSSAD��x�?'PSd|ZSNumberSSAD��I�?m#AnimationCurveNodeL�h;SSAnimCurveNodeS`Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?'PSd|YSNumberSSAD�?S'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL��h;STAnimCurveNodeS�Properties70�PSdSCompoundSS('PSd|XSNumberSSAD��$@]'PSd|YSNumberSSAD0=�'PSd|ZSNumberSSAD���#AnimationCurveNodeL(�i;SRAnimCurveNodeS�Properties702PSdSCompoundSSg'PSd|XSNumberSSAD@�H6@�'PSd|YSNumberSSAD!�@�'PSd|ZSNumberSSAD��&Q�*#AnimationCurveNodeLЬi;SSAnimCurveNodeSProperties70qPSdSCompoundSS�'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?'PSd|ZSNumberSSAD�?i#AnimationCurveNodeL��i;STAnimCurveNodeS\Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD��g9@'PSd|YSNumberSSAD0=O'PSd|ZSNumberSSAD�<�#AnimationCurveNodeL0�h;SRAnimCurveNodeS�Properties70�PSdSCompoundSS$'PSd|XSNumberSSAD@(�&�Y'PSd|YSNumberSSAD� ��'PSd|ZSNumberSSAD��C@�#AnimationCurveNodeL�zi;SSAnimCurveNodeS�Properties70.PSdSCompoundSSc'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?&#AnimationCurveNodeL�Yi;SRAnimCurveNodeSProperties70mPSdSCompoundSS�'PSd|XSNumberSSADjC��'PSd|YSNumberSSAD`�@'PSd|ZSNumberSSAD��d�?e#AnimationCurveNodeL(�h;SSAnimCurveNodeSXProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?'PSd|YSNumberSSAD�?K'PSd|ZSNumberSSAD�?� #AnimationCurveNodeL@�i;SRAnimCurveNodeS� Properties70�PSdSCompoundSS  'PSd|XSNumberSSAD`Q��U 'PSd|YSNumberSSADN�0�� 'PSd|ZSNumberSSAD�lj6��!#AnimationCurveNodeL0i;SSAnimCurveNodeS�!Properties70*!PSdSCompoundSS_!'PSd|XSNumberSSAD�?�!'PSd|YSNumberSSAD�?�!'PSd|ZSNumberSSAD�?"##AnimationCurveNodeL��h;SRAnimCurveNodeS#Properties70i"PSdSCompoundSS�"'PSd|XSNumberSSAD`�I@�"'PSd|YSNumberSSAD����?#'PSd|ZSNumberSSAD���5�a$#AnimationCurveNodeL�i;SSAnimCurveNodeST$Properties70�#PSdSCompoundSS�#'PSd|XSNumberSSAD�?$'PSd|YSNumberSSAD�?G$'PSd|ZSNumberSSAD�?�%#AnimationCurveNodeLH�h;SRAnimCurveNodeS�%Properties70�$PSdSCompoundSS%'PSd|XSNumberSSAD��@Q%'PSd|YSNumberSSAD����?�%'PSd|ZSNumberSSAD��;��&#AnimationCurveNodeL�i;SSAnimCurveNodeS�&Properties70&&PSdSCompoundSS[&'PSd|XSNumberSSAD�?�&'PSd|YSNumberSSAD�?�&'PSd|ZSNumberSSAD�?(#AnimationCurveNodeLx�h;SRAnimCurveNodeS(Properties70e'PSdSCompoundSS�''PSd|XSNumberSSAD �}�?�''PSd|YSNumberSSAD��a�('PSd|ZSNumberSSAD ��3�])#AnimationCurveNodeLx�i;SSAnimCurveNodeSP)Properties70�(PSdSCompoundSS�('PSd|XSNumberSSAD�?)'PSd|YSNumberSSAD�?C)'PSd|ZSNumberSSAD�?�*#AnimationCurveNodeL�li;SRAnimCurveNodeS�*Properties70�)PSdSCompoundSS*'PSd|XSNumberSSAD�@��?M*'PSd|YSNumberSSAD�X��?�*'PSd|ZSNumberSSAD�+�5��+#AnimationCurveNodeL�si;SSAnimCurveNodeS�+Properties70"+PSdSCompoundSSW+'PSd|XSNumberSSAD�?�+'PSd|YSNumberSSAD�?�+'PSd|ZSNumberSSAD�?-#AnimationCurveNodeLp�h;SRAnimCurveNodeS
-Properties70a,PSdSCompoundSS�,'PSd|XSNumberSSAD����?�,'PSd|YSNumberSSAD��
�?-'PSd|ZSNumberSSAD ck<�Y.#AnimationCurveNodeL�7i;SSAnimCurveNodeSL.Properties70�-PSdSCompoundSS�-'PSd|XSNumberSSAD�?
.'PSd|YSNumberSSAD�??.'PSd|ZSNumberSSAD�?�/#AnimationCurveNodeLp�h;SRAnimCurveNodeS�/Properties70�.PSdSCompoundSS/'PSd|XSNumberSSAD�q��I/'PSd|YSNumberSSAD���@~/'PSd|ZSNumberSSAD`��3��0#AnimationCurveNodeL��h;SSAnimCurveNodeS�0Properties700PSdSCompoundSSS0'PSd|XSNumberSSAD�?�0'PSd|YSNumberSSAD�?�0'PSd|ZSNumberSSAD�?2#AnimationCurveNodeL�i;SRAnimCurveNodeS	2Properties70]1PSdSCompoundSS�1'PSd|XSNumberSSAD {���1'PSd|YSNumberSSAD`o�ӿ�1'PSd|ZSNumberSSAD@��8�U3#AnimationCurveNodeL�i;SSAnimCurveNodeSH3Properties70�2PSdSCompoundSS�2'PSd|XSNumberSSAD�?3'PSd|YSNumberSSAD�?;3'PSd|ZSNumberSSAD�?�4#AnimationCurveNodeLp�i;SRAnimCurveNodeS�4Properties70�3PSdSCompoundSS4'PSd|XSNumberSSAD��E4'PSd|YSNumberSSAD@Tտz4'PSd|ZSNumberSSAD`��@��5#AnimationCurveNodeL��h;SSAnimCurveNodeS�5Properties705PSdSCompoundSSO5'PSd|XSNumberSSAD�?�5'PSd|YSNumberSSAD�?�5'PSd|ZSNumberSSAD�?7#AnimationCurveNodeL&i;SRAnimCurveNodeS7Properties70Y6PSdSCompoundSS�6'PSd|XSNumberSSAD�/���6'PSd|YSNumberSSAD��n+@�6'PSd|ZSNumberSSAD��w'�Q8#AnimationCurveNodeL�Zi;SSAnimCurveNodeSD8Properties70�7PSdSCompoundSS�7'PSd|XSNumberSSAD�?8'PSd|YSNumberSSAD�?78'PSd|ZSNumberSSAD�?�9#AnimationCurveNodeL��h;SRAnimCurveNodeS�9Properties70�8PSdSCompoundSS9'PSd|XSNumberSSAD��l�A9'PSd|YSNumberSSAD%��v9'PSd|ZSNumberSSAD��8��:#AnimationCurveNodeL0�i;SSAnimCurveNodeS�:Properties70:PSdSCompoundSSK:'PSd|XSNumberSSAD�?�:'PSd|YSNumberSSAD�?�:'PSd|ZSNumberSSAD�?<#AnimationCurveNodeLp�h;SRAnimCurveNodeS<Properties70U;PSdSCompoundSS�;'PSd|XSNumberSSAD�Nj��;'PSd|YSNumberSSAD``�ܿ�;'PSd|ZSNumberSSADֺ3�M=#AnimationCurveNodeL�i;SSAnimCurveNodeS@=Properties70�<PSdSCompoundSS�<'PSd|XSNumberSSAD�?�<'PSd|YSNumberSSAD�?3='PSd|ZSNumberSSAD�?�>#AnimationCurveNodeL(��<SRAnimCurveNodeS>Properties70�=PSdSCompoundSS>'PSd|XSNumberSSAD@�B)@=>'PSd|YSNumberSSAD � @r>'PSd|ZSNumberSSAD ���?#AnimationCurveNodeL���<SSAnimCurveNodeS�?Properties70?PSdSCompoundSSG?'PSd|XSNumberSSAD�?|?'PSd|YSNumberSSAD�?�?'PSd|ZSNumberSSAD�?
A#AnimationCurveNodeL���<SRAnimCurveNodeS�@Properties70Q@PSdSCompoundSS�@'PSd|XSNumberSSAD���?�@'PSd|YSNumberSSAD >� @�@'PSd|ZSNumberSSAD�y��?IB#AnimationCurveNodeLp~�<SSAnimCurveNodeS<BProperties70�APSdSCompoundSS�A'PSd|XSNumberSSAD�?�A'PSd|YSNumberSSAD�?/B'PSd|ZSNumberSSAD�?�C#AnimationCurveNodeLX{�<SRAnimCurveNodeS{CProperties70�BPSdSCompoundSSC'PSd|XSNumberSSAD@D@9C'PSd|YSNumberSSAD`99@nC'PSd|ZSNumberSSAD�w@�D#AnimationCurveNodeL@x�<SSAnimCurveNodeS�DProperties70DPSdSCompoundSSCD'PSd|XSNumberSSAD�?xD'PSd|YSNumberSSAD�?�D'PSd|ZSNumberSSAD�?F#AnimationCurveNodeL(u�<SRAnimCurveNodeS�EProperties70MEPSdSCompoundSS�E'PSd|XSNumberSSAD@:K@��E'PSd|YSNumberSSAD����?�E'PSd|ZSNumberSSAD��@EG#AnimationCurveNodeLr�<SSAnimCurveNodeS8GProperties70�FPSdSCompoundSS�F'PSd|XSNumberSSAD�?�F'PSd|YSNumberSSAD�?+G'PSd|ZSNumberSSAD�?�H#AnimationCurveNodeL�n�<SRAnimCurveNodeSwHProperties70�GPSdSCompoundSSH'PSd|XSNumberSSAD�@E@5H'PSd|YSNumberSSAD����jH'PSd|ZSNumberSSAD 	%��I#AnimationCurveNodeL�k�<SSAnimCurveNodeS�IProperties70
IPSdSCompoundSS?I'PSd|XSNumberSSAD�?tI'PSd|YSNumberSSAD�?�I'PSd|ZSNumberSSAD�?K#AnimationCurveNodeL�h�<SRAnimCurveNodeS�JProperties70IJPSdSCompoundSS~J'PSd|XSNumberSSAD��-0��J'PSd|YSNumberSSAD`R6��J'PSd|ZSNumberSSAD@�t�AL#AnimationCurveNodeL�e�<SSAnimCurveNodeS4LProperties70�KPSdSCompoundSS�K'PSd|XSNumberSSAD�?�K'PSd|YSNumberSSAD�?'L'PSd|ZSNumberSSAD�?�M#AnimationCurveNodeL薕<SRAnimCurveNodeSsMProperties70�LPSdSCompoundSS�L'PSd|XSNumberSSAD���?�1M'PSd|YSNumberSSAD��{@fM'PSd|ZSNumberSSAD@v����N#AnimationCurveNodeLГ�<SSAnimCurveNodeS�NProperties70NPSdSCompoundSS;N'PSd|XSNumberSSAD�?pN'PSd|YSNumberSSAD�?�N'PSd|ZSNumberSSAD�?�O#AnimationCurveNodeL���<SRAnimCurveNodeS�OProperties70EOPSdSCompoundSSzO'PSd|XSNumberSSAD���C@�O'PSd|YSNumberSSAD`�"��O'PSd|ZSNumberSSAD`:N��=Q#AnimationCurveNodeL���<SSAnimCurveNodeS0QProperties70�PPSdSCompoundSS�P'PSd|XSNumberSSAD�?�P'PSd|YSNumberSSAD�?#Q'PSd|ZSNumberSSAD�?|R#AnimationCurveNodeL���<SRAnimCurveNodeSoRProperties70�QPSdSCompoundSS�Q'PSd|XSNumberSSAD��s1�-R'PSd|YSNumberSSAD@��пbR'PSd|ZSNumberSSAD�����S#AnimationCurveNodeLp��<SSAnimCurveNodeS�SProperties70SPSdSCompoundSS7S'PSd|XSNumberSSAD�?lS'PSd|YSNumberSSAD�?�S'PSd|ZSNumberSSAD�?OZAnimationCurveL(^�-SAnimCurveST	DefaultD t@)TKeyVerI��W�KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9�Y�
KeyValueFloatfp����C�&�C�Q�C�?�Ct��C
!�C5��C�:�CW��C���C�j�C7�C��C|��C/R�C{кCN��C���C�ϬC�+�C1�CQ=�C���Cr��CȉC�5�C�7}CD�pC
�cC��UC4�GC :C�,C�C	�CPvC�g�B�=�BS�B�t�BkKNB|IB���A�3A�꿻�u��U����)��&b�fJ��n��V5���������6����7����,��>&�+�,èp3�d�9��l?�-DÑ�G��K���N�?(R���T��gW�S�Yä�[�L^î�`þ�b���dê�f�%]h��i�I9kÑ�l��m�4o��Zp��q��rëtä=uæ>v��w��wÓ�xã?yÙ�y�_z���zö.{��}{�i�{�]|�:@|��t|ß�|��|Î�|�\�|���|�C�|���|Ë�|�#�|��YKeyAttrFlagsi!ZKeyAttrDataFloatf

BZKeyAttrRefCountip�`AnimationCurveL��-SAnimCurveS�Z	DefaultD�F�s@�ZKeyVerI�^^�KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9E`�
KeyValueFloatfp���B��B⵱Bj��BMm�Ba?�B#��B�ɥBu�B炤B��B��BD�BP��B+�BvO�B~�B���B���B�_�BD3�B{��B�۱B+DZB۰B1��B��B��B�,�B���B���B���BEg�B5��B�h�B�1�B��B��B�=�B{�B+S�B�0�B,\�B�g�B�*�B% �B���B�F�B���B0�B�ȣBSG�BW��B—�B<��B`I�BۙB��B�-�BS:�B�P�B�.�B7��BŔ�B��B>�B���B'�B�
�B��B���B�B
��B&�B�^�B,�Bs��Bd
�Bx��B-}�Bb6�B��BV��B�r�BD�B�B��B*8�B�h�BG��B���B���B'��B���B���BA��BO��B���B���B���BV��B��Bʎ�B���B��B
��B�}�B=x�Bzt�B�o�B�l�B�k�Bo`KeyAttrFlagsi!�`KeyAttrDataFloatf

�`KeyAttrRefCountipwgAnimationCurveL���-SAnimCurveS9a	DefaultD���O�QaKeyVerI��d�KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9�f�
KeyValueFloatfp�zdÄJd��Xdè]d��vd���dó�d��Je�ɜe�w�e�Xf�lf��$f�]bf��f���f�I�fÇ�f�z6f�!�e��be�&e��e�e�d�=zd��cÙXcûib�~"a��_��(^�`�\�k\Ê�[�[���Y���XÍ	X�tW�C�V�fhV��U��T���S���R�t�Q�lAQ�&QÍQ���P�)�Pý�P�oP�ۣP�N�P�zxP���O���O�BO�ګNÙ�M�QWMñ
M��"M�fJMêBM��0M��&M�FM�S�L�Må�L���L���L�]�L��M��0M�GM�T>M÷(M�qM�'	M�;�L��L�Z}Lò>L���K��K�R�K�)aKÂ4K�2K�,�J�f�J�0�J��kJ�MJ�2J�KJáJí�I�:�Iþ�I�@�I��I��I�x�I��I�*�I���I��I�3�I�gKeyAttrFlagsi!=gKeyAttrDataFloatf

jgKeyAttrRefCountipbzAnimationCurveL���-SAnimCurveS�g	DefaultD��W@�gKeyVerI��o�KeyTimel~�x�y8�	��h즕#S��1�09SD���::�Z�H�ĸZ^�[�Q�$j]C�:�h�(�R*�B��œ[�����y�OO���:��c�Q��k�72k� 7��3�a�9�V~
��p�dH3%��6��n۬5
�%��澼"��&�Uu�lV�)(W����V"���,R
xC���m���{�
�ʆg�GP��2�S�	,�-r�nԬ�Ẫ.�*��t-,�K	?�`�AZ����%Zz��)t:<Z�I�j�G[�ܚ>���K��0�W��y�z`�"��Y�{��.�6����؆�yV`��KE�87�x7դ��ˡ�S*��E���'�	ka·!t�܅;���A6OU
��;ᔺ�(K�|�{��hh� �7�=5�'al/�o�����Q7���*�=G���5�y(�%1S �����}	��	����H�O��_�;�͍����C_ᄪHo#aF^\������'��t��6�#G'|�#��|>�$Zw4�4W��s��Uu�	��5��W3�!e�Y���]	�17��`�6Xo`��<�`L�rdr�bXz��8�U���d��[de�ig�C�~�+�40.��#���;���<�:#�/�e�(p���t�ix�i�F�����N���t-�y��|�_le���`�J�+������0d��oЈ������ŭr���p����P���$�w��,̚� �������b��G�W:�s�ӂ�8�`K2+�˳�i��X����(��`[��^Ȧ.�C���`���A(��h����pM��.Xw�u���^�&�(�?z��V���`N�%K}ֆW4_�CΠ���=��Y��߫{�T)�
9wֿH�����`@�]
�^F:V�v�7)Mv᪷ћak��fRrl���gOH�����@fei!��|�',�&�]�_14	������N09v���g��^���ye�	�{�42��#�d)'v�O��]���a�X.42�R��:�B���|���R	Yl��$�@�B�:(^a�1Gv#L�ul��=�bS)�|q���߭�Zؽ��{k�)ޛ'���]Ϡ�X�Xu��M��N��̈́s}��A�����W�p8>����S5��m���pbΠf��[��n�Jڄ�e��‚��*v��8#g���gj}���A ��jƁ	+�����x�4;��}�9����l�5i$J����}nB��oEд9�L*�
�Aߞ�����0i����V�T�V�}��x
-V+�C)��0dMֿ�Nz�g �n�]��):�I�V�и{+�r�Y���4<A:�?���e�`LP��.�� w�;�7����^%L@�ܜ�P���&�鎹���qux���S�#�a��g�pS{�|wb�
>�9	�:����˂#�3P��RM��A��9��Ō�(x��w�6/φ�i�7�n��"���p��C���—��2�6E�Íߟ��'�<��zsZU0}��^�t����w롏��&��9�O��u�U���0�4l9\$��PQ�d�MyN���A��P80�^���G���'���\o+���.Br�T���KI�w��U%�A�c2�>]��OG�<��	ݪC=`y(��9�@�S�yXp��u�Sw���^{���3��E0��<
'�Ӎ3�E@�v�^���lL��n��h�C�P;6Lj�@���7�`VZ
ws�a��e�"Կ�ā1�����C���Eس��v������9YB�d�v�w��JDY6䘦��x���պ0L	Op���B4dW��Mg�3B9�\���(�9�ל�n���`���
�Ԋ1x��.��RR�˂�!���ׂ��x��$S2�9u�
KeyValueFloatf~�x
�yXx��FiL�k)V��Dr���m����"�:R�X�����&,�D�&e�]Ҕ� �k:5M%RiE�v����>��ϣ$,ؽ��*����l�ʖ-�b~��Lt����a�Fr�a�s�V��+�ٶ�VQ#d{�cX�K�/�sA��A�&�Hd�Ωl���lVX;#c�Ǘ�]���w3[�������Q
��"Lȃe�>�TF�7E��ɘ20��V ��m�Ʊs�Y[[��.���� M`Xl�=�\���
#�>�	Ǩ_�d�
{v"��n$��E(�v�A��� =��PX�����,>��#r�y��W�H؆G�s�2Nȯ`�n4�?����X�߄ 3���a_&DhZ"�N&A%.)X�.�)�PrzY�qQ�!"�cچLgfÏ��\\� u{>Z�H!w+B������N��Ť�h��c�o0yZ�
9F�e��!��@)b���ȷ�v�8>���ǵ�l��;%$�*��|jEm�;�ֵceA'��F��O��і^v���=������ <z!���Cӹ��ȥ�+c袳Yeh���X�ҡi<�ŧ�X]�ԥ�+��c�X�C��c���6�֢�4��*M=��O
�/�P{�&�����Z��M�/��	�:p�G=�'S�䐫K	a�	b=�-�'�RrI4�-c��gL�KL�g'3��1��pcRѭ8C��e@���i��My�K�>>-6��P����p���ҧD�!uO0��~#�w�	�ۙ�����kJ��Mh��1���N[��O����j<9��Ҕ���~���8��(�B��t�K�6�[j�I����T��P���O�����Q���^���*������W�,��ү8'DP�r�1�A5�F{�f�,�����v��ۉ���w���bo�
�m�8�m�ЪZ�%+�r�D�u9��5�]�l��S��c��u��b��<x��" /�g<����pzΤ��4#
�E�8)��|2<��\+�!6Y�C�v�!�D��Ns����o�b��畈c�	p
��y�M,7�׈�0-��"�*�_���2�p/������P��3�z��O�q�e�m��fD#oa��ב,��&�x$&���Dtz'ap��}�����!q�}~�$nneda��T��B��<ؐ�;
a8�ă%H�x���2\�R�0*�v�38�(A��Rx����(�v�Jpx
<����{��9�!�M�yՌ��*�7+a�P"����б��6oq����kǤ�v�sy�����T�
?u3,��u�
���ㅨf�j�b��Ѻʼx<SbM3,��B��)Q*(�P-l��S
��������=��4�
�9U���r�ly	�P�?GKz1�6�m�g�cN���O`k��u�,�P&�f��a���wEKeyAttrFlagsi�8!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD�w@KeyAttrDataFloatf83xc`�V^V^(L��G�c4= B`4?��Dj``M��a4= B`���$�UzEKeyAttrRefCounti�8
ŒAnimationCurveL���-SAnimCurveS�z	DefaultD�=TU��zKeyVerI�w��KeyTimel}�x�y8�	��i���8Fr�$L�"�J�DZ��z=#m�L�VE��-�+�Zא��!4�B�"^�.�dX����_���t��Mm&�Ha{���/�\����|�	�膭��k�]��G�P��Ƥج0��4� ���6V>��'<�Vɀ����Ō=e*�C��&MB߇�Q�����<O�-��;���T<4��T	W�*�`�v�t���n.o���_�s�!\��Ik�������g(����J�G���R']H*R��]��]a���� t
	��,1����_���s�`�����Y�0Z2�!w߶\��F>,�J�>J4*����h�߄Rh�S���E��*�R)�v��Gp�E�c��*���z�68�j�	��m�`I�\/n�6�F`���$��!��c�a���V™{Ex蔇
�M7
�V$F�(<��ְ)���9>�]�S�G���[|���w'L;1�'��:�S���@��;P��BhJ��I�Z24��L����%�Q;2�����ޝk�M���0��h�g��C�)	%���45���9�a���%�Sps��i������`ѓ��P[n��Lؕ���K(��W#���܂���r�O{/<�a2�����Pkd�
|��{��>�P�,?
3^��a�Z��
�ó�M�������т/}�t��5�P�s�۹�~�Uz2^�~�+4�nʅr�xP����I�xhy�T=�7	��6�f�$T	�k6���
�-{��]�5 ��n��L��Œt�S�K��T@%�B؜���(�Pv��
L5q��	eb묠�|%nl9���;�B��K��k-Y��G�'?²�D*̬3��ɯ���[]�P3����}����G!E��/\>k^��y���/�:~/�>�G��')Iz;���)�oSəV���;$]u
��',#!��(N����ȶ@爷tu�%�g&�Vr��G���1�ԓ�ȣ�6�:�/q �>:��2#`��8X�N�	m׍eA�[y��C4J�σ��ke������D%t�;\
Ek,<}�Uc���P1�1L�,B���~q	m���~ͬ?�����/��}'|�x���x
sÏ����oF����g�\��#���t�E!΄�%���_�Te�V
BKN�a81��S�ϭBs�QM�E��lYc�
��a�5\�
Mg������?��d†1ka���Hx5���o@�@�M�<q6�ɂ��qρ�^��k�J>4n�.���r<hɳ���s�����F�И��}�r��2G��֗�l�b��A�d�Gh��nRi���9���E7�Ov�b�Y�is��6p��gI�`��'mP�������&|��
�'�`���Ax�m����\�j�?0���m��4Ψ»d]�8j�>v���-�N���_����g��2��t?nl�Jy�*:�O�vA�)%(����s��R��iI:4M����o�C����:<Te�t,�o,��e�ƃ۾�T
~����i�����
x{Ү
Z5<��^&��aW�T#<�m����.
�a�|ɝ��*�
 k��$�϶�e��<����-���^�������:�=��}JTMeè�<���&����b00&�Gh�վ�p�t`�k��KE����.��P�Rj�:v8�&��H���#n}�����T�b*��׀�Q��ij�a���Phڢ���7H[O���~(l͂qͼh�w��ϮA���q�'dZ1	u�*�a䁅;��J���P���^q�CVw���Շ ݌,mD����֚VT
-N�l�$�V9э	�ra#S.�*������	��A���r

O��,����X9�n�)!�t�;���w�A���UHb��6#(,������/]��
KeyValueFloatf}x
�{PUU���,ƈ���6��h�i���3L3�)|�V>�$`�F����{��{Ϲp������O��R���YdN3H���R����^{�5k���O�Eh�I���n
r�����c����^��_Q���rBC��gHG��R��9'�țR�xO>��z�9�C��|���,&�__�}���Wˈ�[F��r�z���,i���^Z/{�����X�e!"�a�M�;`q�6BifVs����2m����D?/8�P0d�`�VA�vA�N��ق���R��\yE0c�`T�`��6�/m��lF��9iU�8����	m�W"\�b�h���� ���t��=��Z#)h�bl��gp9��OI%�y
Ș���ln�+�;����A��\N��cJ���0����Ӆ_^ě{�p���ӧ���Hae�y�~/5�~�+?c�xV�gl�3���`��_ZZ��Z��`�4�7?��~�>Vn��h������>No��n?]�~N���=��� �^����0�M�?��q�"~l��WGHn��}�*V��z�"x���a&׆5?��	�$�I��B��6�J_�3a��L�kL�u�l��H��Țf�a�>���p��n��d��&鏚�d�~F���bز 7��m
��;��^��^�tS�>[*ٹ9ȸ� K��sw5�q6��6��&���;,]��7͡*���(ɑ�$:�{(�LS̙��[�q���3��bňJ�G��݊�u���(f}�h8�(�fh?�A��^����v(bސ,?����'�h���O�8&�:����a�4���Va���}�H�ͪ��W�z9�Mt��wx����4��I�_���䜤_�d�%��+�mi]���󭒚&I�!��%#$c�%v���
I�VɎՒ�	��X����;^�r��	WmzϱYp�bj����&wyM��k����A-��[d�y��x�`�C��w��q���-ޖ!��] (D�!M���ϾCR�{h�*&��2f�K�
��i.k�\6�k�u��qi��R�ť'��l��.���.K_��]Znq���b�:��c�I57��t���	���������c��	��a��H�W�!���?O���uVP���QA�A��}qZC?;|T)I׼g=�ؖ��ަx.K�%Eq�':��?+O�G�E�O�|��\�=��/)v�V0WqM[�k�/�U�Y�P���ER�b���+G�V��*��W,�+MſAŰE]�"���u:��ъI�H�m�����9����?u*����=KeyAttrFlagsi�0!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD\�@KeyAttrDataFloatf03xc`�V^V^(L��G�c4= B`4?��Dj``M��a4= B`��
����=KeyAttrRefCounti�0
��AnimationCurveL���-SAnimCurveS�	DefaultD@�Q�0�KeyVerI�۔�KeyTimel~�x�y8�	��h즕#S��1�09SD���::�Z�H�ĸZ^�[�Q�$j]C�:�h�(�R*�B��œ[�����y�OO���:��c�Q��k�72k� 7��3�a�9�V~
��p�dH3%��6��n۬5
�%��澼"��&�Uu�lV�)(W����V"���,R
xC���m���{�
�ʆg�GP��2�S�	,�-r�nԬ�Ẫ.�*��t-,�K	?�`�AZ����%Zz��)t:<Z�I�j�G[�ܚ>���K��0�W��y�z`�"��Y�{��.�6����؆�yV`��KE�87�x7դ��ˡ�S*��E���'�	ka·!t�܅;���A6OU
��;ᔺ�(K�|�{��hh� �7�=5�'al/�o�����Q7���*�=G���5�y(�%1S �����}	��	����H�O��_�;�͍����C_ᄪHo#aF^\������'��t��6�#G'|�#��|>�$Zw4�4W��s��Uu�	��5��W3�!e�Y���]	�17��`�6Xo`��<�`L�rdr�bXz��8�U���d��[de�ig�C�~�+�40.��#���;���<�:#�/�e�(p���t�ix�i�F�����N���t-�y��|�_le���`�J�+������0d��oЈ������ŭr���p����P���$�w��,̚� �������b��G�W:�s�ӂ�8�`K2+�˳�i��X����(��`[��^Ȧ.�C���`���A(��h����pM��.Xw�u���^�&�(�?z��V���`N�%K}ֆW4_�CΠ���=��Y��߫{�T)�
9wֿH�����`@�]
�^F:V�v�7)Mv᪷ћak��fRrl���gOH�����@fei!��|�',�&�]�_14	������N09v���g��^���ye�	�{�42��#�d)'v�O��]���a�X.42�R��:�B���|���R	Yl��$�@�B�:(^a�1Gv#L�ul��=�bS)�|q���߭�Zؽ��{k�)ޛ'���]Ϡ�X�Xu��M��N��̈́s}��A�����W�p8>����S5��m���pbΠf��[��n�Jڄ�e��‚��*v��8#g���gj}���A ��jƁ	+�����x�4;��}�9����l�5i$J����}nB��oEд9�L*�
�Aߞ�����0i����V�T�V�}��x
-V+�C)��0dMֿ�Nz�g �n�]��):�I�V�и{+�r�Y���4<A:�?���e�`LP��.�� w�;�7����^%L@�ܜ�P���&�鎹���qux���S�#�a��g�pS{�|wb�
>�9	�:����˂#�3P��RM��A��9��Ō�(x��w�6/φ�i�7�n��"���p��C���—��2�6E�Íߟ��'�<��zsZU0}��^�t����w롏��&��9�O��u�U���0�4l9\$��PQ�d�MyN���A��P80�^���G���'���\o+���.Br�T���KI�w��U%�A�c2�>]��OG�<��	ݪC=`y(��9�@�S�yXp��u�Sw���^{���3��E0��<
'�Ӎ3�E@�v�^���lL��n��h�C�P;6Lj�@���7�`VZ
ws�a��e�"Կ�ā1�����C���Eس��v������9YB�d�v�w��JDY6䘦��x���պ0L	Op���B4dW��Mg�3B9�\���(�9�ל�n���`���
�Ԋ1x��.��RR�˂�!���ׂ��x��$S2����
KeyValueFloatf~x
�i8xpW�3۶�	yC�&����hKz�-]�#���]E�ź*����%G��_2���c���"E�a�����ȷv(����e{rY@G���N�̼:�U�d�e"�#Nu�g֦nLI����ن���/�،+��`+�V3��l�f{�1x��9��[ف��̻0�m���y�1
�� [ U�*ղB��;"a�_z��f��ng�S3���,�*���l���`�2M��ց���H/X=ԝ2D��rT�4�h�9̟���k MX�ubk�<���˿��|c���؏�5.V=��:W�����x%닊~s�{A �\�ԣ`F����B���$5��"�'�/bp:)�›X�I'"GCQ�W�;xr��ihIG�8f�ٰ���{:�C�c��Cx�?���b����ڧ�˱a�6��ڄ�R��?�"q��T�Ω�'�
U�ϬF�g
6	���݀�ͯ!<҄t�n�-(�oC�[;t;ѓ���=0�Ej��m��S�C����3
K�W�y��s鿘�3��)֞�A��ݖ��A{e����:y:��@��h8X���)������eS9�U���Y4l$Kɪ2Twdw�R��ɐ�"Y��Ek�9d�!GNRy�!�H���Z�DɆsh�B�6�ͥ��UH�N��]ըk�:��k������y�M���)P���hRK����S�V5z�JkT�C�\�{�L�*]�J��+^�r:4�j\� �GQ�:$6�R�l�7�R���r�)�F�v9iRj�E֨���	
���Q�l/��U�\��J�d�Ia�Z_�DQ{餾� O��(?w�ޔ%5*:#E�	�����$%N�9p��l|*C�Πp��R�]����$–M`~�wD��(�+D��8|v&�1�3�����D�=�l�A�{ߗ�x���o��'���&4����a����Z��
�����{S&�H�7���%Y>F��#4���~��}���g��s:�Ґr1|�4Ls3�7�{��Ɂ�'f{20|+g��b��dp�'���6v)��]�z�c�
w�ĻK�p���z�aX��*��B�u�t������X���1������x�6R%��%����<R�f��mq�P�Ά��\����ӧ$d�KX���b4֔৤Rx�V���J,�˰�h;�.��Gs%�b�_�UAq��kkћ\�q�4x��ft��s����G���Z�m�\҆'6b�Ipůf1ݰZ�ߘ>�I��'��9��kT'��Ѧ
3�o��������ݵ-��"���;�׍LA2b:���cK1���[�5���
t�����'���c�5��.�3���9B�&�Ρ
��P�0�R�p.At�c|<S���B�.��lu�ߜEKeyAttrFlagsi�8!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD<�@KeyAttrDataFloatf83xc`�V^V^(L��G�c4= B`4?��Dj``M��a4= B`���$���EKeyAttrRefCounti�8

�AnimationCurveL���-SAnimCurveS�	DefaultD�?�KeyVerI�A�KeyTimelм.�l�
KeyValueFloatf�?��KeyAttrFlagsi!РKeyAttrDataFloatf

��KeyAttrRefCountij�AnimationCurveL���-SAnimCurveS`�	DefaultD�?x�KeyVerI���KeyTimelм.�̡
KeyValueFloatf�?��KeyAttrFlagsi!0�KeyAttrDataFloatf

]�KeyAttrRefCountiʣAnimationCurveL��-SAnimCurveS��	DefaultD�?آKeyVerI��KeyTimelм.�,�
KeyValueFloatf�?V�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiv�AnimationCurveL���-SAnimCurveS �	DefaultD�R@8�KeyVerI�٧�KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9���
KeyValueFloatfp���@
rAg�?Ac(fATz�A���AkL�A��A��A�A+�~AbpA�ɁA�d�A���A�|�A$ǀA}�]A��8A��)A`m&A�
(A��KAZ�wA;�rAr�TA&�:AD�A�;A��#Aʮ'A;mAܢA_��ArPnAF�SA��8A�1A�A���@���@��
A��A*Am(&A�j6A'�(AE�?A^�hA2C�A��A�A��AM?�A�޻AX��Aͻ�AR��A�B)�B�B��B�tB�VB�}BXB�W(B=�*B��'BG�%B��!BJwB_	B�
B��B$�A)D�A��A���A�)�A=�A���A��A��A��eAHIA݃.AB�A	A̭�@1Ƽ@B֤@}2�@~�v@�\C@�E@��?됛?�u?��P?�'?��>KU`>X=��۽��
�F������<��>`y^>�X�>��>�KeyAttrFlagsi!iaD8�-KeyAttrDataFloatf 



i�KeyAttrRefCountio"�AnimationCurveL(1�-SAnimCurveS̪	DefaultD Ý�?�KeyVerI����KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9l��
KeyValueFloatfp��>��o���ĿG�D��x�b��G���&��c@�Q�]�u	c��yR�VC2�o>������ؿ=�2@�@�@rq(A54An�0A��A�K�@JA�@�x�����
8A�ow��q��$Q�G
>�"k/�I�����ys��G�@�}A��@A0�yAP]�A!�tA�h"AU4�@������O&��Bx��=����/�sD�y���|g�?M��&���rr�����:�pw��}�������#���a��O��F ��E���Z�>G�?�v@huM@{�Z@7�@��?2��?c-�?M�?���?�<k?�}'?�?P??��?�dC?J	��5������ſ��U��b���n�a% ���-�b<��yJ��R�>�O���M�:�S�k�^�e���j��cp�&�q��m��=e�Bx\��P��6D��s;��J3���+�F�%�+�#���KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



�KeyAttrRefCountioηAnimationCurveL8��-SAnimCurveSx�	DefaultD�
�ῐ�KeyVerI�1��KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9��
KeyValueFloatfp�o��M���B�r�؈���״�1�>�~4@SS�@�Y
ASo0A�$gAD�A��A���A���A��A��A��KAn&�@O2�>�C�������������	C���0��c��n�̿�@HNAhPpA�cdA]�mAo?�A���AȆOAvO�@{@�����?Xk,@�o	@�������.�+���'�����L�\���$���9�d��@#I@�y�>����d�_�D��K��T���ɲ��\����)��Y%�}�\@��@mݨ@�P�@�
�@�:�@���@~u�@_^�@o��@mf@r8E@>%@n��?�=?�I?��+?�!?���>���>�D�>�>��=���=Xv�>A
,?�X�?!Ԭ?���?pe�?H@��+@��<@�K@5�X@��_@��d@��i@Ml@ �j@o�h@}bf@�o`@�LY@�.T@SlK@�hA@�69@��5@F�KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



��KeyAttrRefCountio.�AnimationCurveL�`�-SAnimCurveS$�	DefaultD�?<�KeyVerI�e�KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

!�KeyAttrRefCounti��AnimationCurveLXj�-SAnimCurveS��	DefaultD�?��KeyVerI�ŹKeyTimelм.��
KeyValueFloatf�?�KeyAttrFlagsi!T�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS�	DefaultD�?��KeyVerI�%�KeyTimelм.�P�
KeyValueFloatf�?z�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL(��-SAnimCurveSD�	DefaultD����\�KeyVerI����KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9���
KeyValueFloatfp�efG��o��zP���g���'��f���������b�I��.���%�{k'�i��6I��W�������Ŝ��{��qf�jW9�y=ܿ���f]��t�����5����J������j���q�����G�����2���zU��܍��j���Ul���u���*�� '���Q��5���� ��KF��E�H�!�Yw���l׿rs@i�z�|���������`�����#���%���,�����;�}�6?�@?�@*9�>�j�.!��"?G��?1��?e��>ҷ�􃻿�0)�_
���=��n��NM��'�A�>�#�C��8>�|�3�t�!���
��p��Z"��[ˀ�;�<�L��״������^�֮��vk
=[
�>K(?��?�w�>X�L>{箽�
־'�E�ӌ��B�����ӿ�����c��X�����������KeyAttrFlagsi!iaD\�-KeyAttrDataFloatf 



��KeyAttrRefCountioF�AnimationCurveLH��-SAnimCurveS��	DefaultD@*|�?�KeyVerI����KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9���
KeyValueFloatfp�R�{>r��?�@�ST@y�w@�t@+�X@#�J@)�e@7�@ۅ@\�g@��2@�x�?R�?8�{?i	1?�"���+�@����(���R���O��D�4���,,�����Z��\|�?M@�G*@�#�?
��¦>>�{?[��<�z.��j��/���I���,���K��M�ξ�ݨ? u@NS@�@�9�@6̥@�@��=��?}@@F@�ؠ?U��?�XR@mEa@��.@�G@#�?�d?L��-�B��Z���T��q�2����!N��8���n�v��RH�s���=ѿ�Y��K�|�	�}��N?)5�?9O�?tJ
@3�%@6�:@�H@[SV@i�a@,�d@��a@��Z@
�Q@e�H@��@@��7@�60@�(@A�@�P@RS�?R`�? ��?N�~?�\*?=m�>PE�����A�#nE���i�����u����KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



9�KeyAttrRefCountio��AnimationCurveL���-SAnimCurveS��	DefaultD@��ؿ��KeyVerI�U��KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9<��
KeyValueFloatfp�z�Ǿ"�H??�x?��>pY�=zU9?���>w�Y��cƿA�ٿA��Ud�#m��P~��`��t���˴n�t5��.�G?R)F@R�@���@�ɵ@l��@�@�~@�
�]�@��븿�aB���c��0�s������r���`�?ɸX@F��@�y�@w�@�O@���?��@�Z7@F�	@��3<Į1�����\���߿��?<p?���?x(�?��3?+����_��&�c��75��������߿�V��a��=\2���ɾJw�>�+�?H��?+��?�֧?~�d?i��>�����Yw�.K�d��>�T�>��)>n��>�?tr
?��?g=j?L�?-�?�?�x�?n��?1ތ?ߘ|?*�]?F�6?ٵ?fu�>�Y?���>e��>���>�B?�|?��:?Sm?�D�?�_�?�>�?�`�?A1�?���?���?:�?x��?j�KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



��KeyAttrRefCountioR�AnimationCurveL��-SAnimCurveSH�	DefaultD�?`�KeyVerI���KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

E�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimelм.��
KeyValueFloatf�?>�KeyAttrFlagsi!x�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�p�-SAnimCurveS�	DefaultD�? �KeyVerI�I�KeyTimelм.�t�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�i�-SAnimCurveSh�	DefaultDN)���KeyVerI�!��KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9��
KeyValueFloatfp�p�H��h�����"Lj�:��)����Й������۔�mY���`���
������e{�EOu�̹o���d�+�O�@_9���*���)�G.��)�CP�,�� �͹��������	��;����M�L��e��V	���I��i~ܿ�޼>�Z@�Cn@uJ�@��@h<A�z#A�'HA��`A�ZbA��QA�d1AD%Ao�A|�^ACclA�*IA�G-A�A��@�uA�7A^�@�Z�@��L@��?�|=>���91P�ͣ	�x'D�ILS�xoK��H:�s!#�u���a���>+���4=��q>�&v��Am�O���/q���������� ���������I���K� ���������������Q��Zӯ� �������������l�|X�
�B��)�=���L����ۿ������#Z��Lآ��&������6�KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



��KeyAttrRefCountioj�AnimationCurveL0�-SAnimCurveS�	DefaultD�A��,�KeyVerI����KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9���
KeyValueFloatfp�8���A��ͪ�>��? 	�?|,�?�ɏ?0~2?.��?]B�?���?e՗?;�>��*�:5���~�m�^�;]Ϳ�y<�Wɏ�yA������ڗ[��,W��p|�K��v��>�����'>Ƚ���ֿ�!��V꿬�3�𒈿�F����^���<��t+����E�<�¿�<d�?T2�?OJ
@��:@~�@/ٺ?��?��0?�e�?�S@�h�?~E?8��?$@TY�?���?�?����e��n
�tE�x^A�\�E��RP��N���N�,�T�B�K�� 4��� �l���J���¿R����k�t�Ǿ(S>��/?(��?��?�%�?�@��#@��2@�<@M@@C=@W�5@4�-@h�&@ @�(@N,@��@
��?�4�?��?4�g?��?��|>�⹽�L���C����t������90��:�����KeyAttrFlagsi!iaD,�-KeyAttrDataFloatf 



]�KeyAttrRefCountio�AnimationCurveLȨ�-SAnimCurveS��	DefaultD��3���KeyVerI�y��KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9`��
KeyValueFloatfp���q�>;��㣉���c���?*
v?r��?ƅ�?��?��>/T���d'���3�q%F�����lB����� 5��6���������y����Ջ�&�ȿ�
Q?�5�?(
@h�:@L�@@��]@��g@'@�?��D?і%=;>��}��j��[�&>�~Y?iX�?O�B@K�a@�)x@Ӆ@Fm�@	vg@�P@��"@�OR?���AC����o�Ž�t?�@H@zp@��z@�wF@�z@�h�?��N�E�T�Z�o��Z��Qh˿�Ű�������+������L>㶛?�@�	@O�@��@=,!@F�
@���?+b�?>�?�d8??����N9��Hv���-��j:ɿ~�޿��O�俈���|�t���;�hտ��˿��Ŀ�ӽ��#��0Y������ѓ�)㍿�V��0���|�Fz���w�#]w���KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



	�KeyAttrRefCountiov�AnimationCurveL�%�-SAnimCurveSl�	DefaultD�?��KeyVerI���KeyTimelм.���
KeyValueFloatf�?�KeyAttrFlagsi!<�KeyAttrDataFloatf

i�KeyAttrRefCounti��AnimationCurveL��-SAnimCurveS��	DefaultD�?��KeyVerI�
�KeyTimelм.�8�
KeyValueFloatf�?b�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti6�AnimationCurveL��-SAnimCurveS,�	DefaultD�?D�KeyVerI�m�KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

)�KeyAttrRefCounti��AnimationCurveLX��-SAnimCurveS��	DefaultD`Ǯ���KeyVerI�E��KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9,��
KeyValueFloatfp�;v���<��>�������)���x��;���B���˹��K�����
[�>(��+�����3���,� �9���'����y��Ǘ�U���
�1�������r��c��E@��Jz�pI�=���o��߸��^T��8���8��nD����K��jB�ieZ��U+�n�ſ$�ٿ~������ �+ֿ�؀�M��ZJ7?���>>��-mE����b�
?��S>D���~u,�[Kڿ��"��*�-��j�+�1��;^�ǯ��9���'^��nۢ�����}��K����I���������������~��y��̗��J��	���$��G������]���s���o�����BWx�R�f�
[�csT�u�T�TU�*oT��P�y-N��L��K��zK��}J�`�H���H�E�G��D�l�A�Y�@���=��o8�o^4��=3�Z�KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



��KeyAttrRefCountio��AnimationCurveL���-SAnimCurveS8�	DefaultD`|�!@P�KeyVerI����KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9���
KeyValueFloatfp��sA�9A�AV�A�A�9A�FA�?%At�HAxs�AZ&�Az��Aή�A�2�Af�xA�uA~H�A���A˃A_Ax�1A�~,AǙQA��OA��-A��"A6AkwA�4jA�e�AbO�Ax�RA�A��@���@A�KA�U�@���@�J�@�@�C@~�?��?�Z@��@�͞@��@�~�@̑�@E�?�?'?�w@�ߪ@�&�?�g��=���? �)@���@,_�@���@��@~��@�O	A� &A;A\�BA4�KA�PAaLA�GA|�>A�6A!�1Au�)A�� A~>AM�A��A��A�pAвA��AT}A�u
A�{A#w�@���@R��@�׵@知@��@깝@��@�ɜ@��@!"�@�O�@���@��@e��@���@��@&~�@8U�@	�@�_�@�p}@Cr@'Lj@�Qh@�KeyAttrFlagsi!iaDP�-KeyAttrDataFloatf 



��KeyAttrRefCountio:AnimationCurveLH��-SAnimCurveS��	DefaultD�����KeyVerI����KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9���
KeyValueFloatfp��>h��c�E�;���斿E����(?$
@�@ݙ�@bn�@�+�@�A@�c=
O��l��o�!�@~�@ɯA�mA�@�	 ?Zs4�k1D�k���-�贅@�AT^�@�h@����V��������
ԋ�߫k���=���>�q�-. ���*�0�D���>���R�D3@�n�@F2	A��4A��*A�+�@��@�xF@^ё?4�s?kt�?��1@d�q@YB�@`��@�T�@�?�@��@���@�A
�AЕA�q	A��A���@���@1��@[�@@��@ �@��@q�@@�|@�l@i]@E I@Xj-@>B@�u�?�0�?��O?��"?��?(�>��[>�~������t=:�,�PX!�Ό7��\���w�<ۏ��8���A���i���+��uٴ��հ��~���M��'���jſģҿ�׿ol׿��KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



-KeyAttrRefCountio�AnimationCurveL�H�-SAnimCurveS�	DefaultD�?�KeyVerI��KeyTimelм.��
KeyValueFloatf�?&KeyAttrFlagsi!`KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS�	DefaultD�?KeyVerI�1KeyTimelм.�\
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiZAnimationCurveL���-SAnimCurveSP	DefaultD�?hKeyVerI��KeyTimelм.��
KeyValueFloatf�?�KeyAttrFlagsi! KeyAttrDataFloatf

MKeyAttrRefCountiCAnimationCurveL{�-SAnimCurveS�	DefaultD 02*@�KeyVerI�`�KeyTimel�wx�}P����q�7y����l��Bܘ��8^��M����q7���Q�1;9��Vر�f�'��ަf��p�r 7_��.΁����>�DO�2S���L����^a�5� ��I+.[z�ƎׂC��ʟ�X'i*Ǘ��.�=��ڊ�><$^�)�~��l7֜�Հ9��)\�X���_ٶ�XَWYpC~�f��=XUz%*�6z2�7~�szK��LI�$��~<:s.p6�Y܏�-?�3�.b���o�i�v�Vv+��|%���b?�{:�K��pަ�ۅ8yʤ�Ʈc_bw���E�����2�(M�Lg@
n1��p�pq5n�v�w��ŧ�K�1�pt$-�oî0U.�?~��{���笧o{�؀s[x�D�*ڎb��w�p�����0�Ə���d���ΠG�X�j��y���
t�Hn!v|%���
��8��1�ɦ`�!��n�iL]����y�}W�?��
���7��Lk�;���If>�.Ū��S���u�S;�FӾ��Z�i;ڇM�BV��z���ֵ��>6wYWaO��
�I��;�z�`y塝|z�+���
�K,��o�g�
��Q�7/&�G?�Dɱ��)Ǎ���a��kø���/��<Q�f
��ݒ�Ь��$vΪ=X 2SH�f�{���ձ�n�d?��^�C��m�5{c��r��Ʉ���^|���!6�>�����M�ľ�%l�͉�3F���H��#�Z,�uߎntG�����j,�ο�g�?m���ZZ�8U?�]v�BBק<?��m�x"�nO]cK�l��V�iu�^���
f�R�!	�ź�w17�[��й�6�m|�9g��2�?��#V�z�����D���į28T�
KeyValueFloatf����QA��lA��`AfCA��uA
�A{R�A�
�A*߽Ax�A&/�A]z�A>b�A�myA0<A:��@Nm~@��@_V�@�A��FAr[A,CvAiz�A���A�^�A�eA=�9A��@]�H@Ϲ	�//���-W��%�����Ao��dD�؆��!��o��_�)@B9�@}1A
�A<k�ALȮA�]�A�\�A	b�A��Ak��A�'�A��B"��A1��A���A��FA��A3-�@j�	A�VA�*A-?A�NAl^Am�rAo�A�XAx-A-�@�>u@$�c@���@ۻA��RA��A�ܘA_�A���A��ADX�AU�[Au~,A�NAd�wA���A���A�ѝA�>�A�bAZ?AL+A���@��@�:�@<�a@�1@<"@\L@0�@�-A��AAB	
A�_�>����*���@��#s�+��1k��f:��<��������~��D�Ą�n	�Ba��5��Q���� ��S'��u���PFt��9�5�G�����0�p�Q���>[�?5f?菑>좑>�l+?l{�?�W!@�'�@&�@�r�@i,�@��
ATVA~�&A��4A��BA�MA�~VAw�\A,�\A�D[A,�YAg�UA��KA�QHA%�IAf�GAt�HA�*NAc�NAbMAyUKeyAttrFlagsiRH!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD�/KeyAttrDataFloatfH"xc`�V^V^(L��G�c4= B`4?���w�6UKeyAttrRefCountiRH3,AnimationCurveL��-SAnimCurveS�	DefaultD�ݡ�?�KeyVerI�I�KeyTimel�wx�}P����q�7y����l��Bܘ��8^��M����q7���Q�1;9��Vر�f�'��ަf��p�r 7_��.΁����>�DO�2S���L����^a�5� ��I+.[z�ƎׂC��ʟ�X'i*Ǘ��.�=��ڊ�><$^�)�~��l7֜�Հ9��)\�X���_ٶ�XَWYpC~�f��=XUz%*�6z2�7~�szK��LI�$��~<:s.p6�Y܏�-?�3�.b���o�i�v�Vv+��|%���b?�{:�K��pަ�ۅ8yʤ�Ʈc_bw���E�����2�(M�Lg@
n1��p�pq5n�v�w��ŧ�K�1�pt$-�oî0U.�?~��{���笧o{�؀s[x�D�*ڎb��w�p�����0�Ə���d���ΠG�X�j��y���
t�Hn!v|%���
��8��1�ɦ`�!��n�iL]����y�}W�?��
���7��Lk�;���If>�.Ū��S���u�S;�FӾ��Z�i;ڇM�BV��z���ֵ��>6wYWaO��
�I��;�z�`y塝|z�+���
�K,��o�g�
��Q�7/&�G?�Dɱ��)Ǎ���a��kø���/��<Q�f
��ݒ�Ь��$vΪ=X 2SH�f�{���ձ�n�d?��^�C��m�5{c��r��Ʉ���^|���!6�>�����M�ľ�%l�͉�3F���H��#�Z,�uߎntG�����j,�ο�g�?m���ZZ�8U?�]v�BBק<?��m�x"�nO]cK�l��V�iu�^���
f�R�!	�ź�w17�[��й�6�m|�9g��2�?��#V�z�����D���į28T��
KeyValueFloatf���e?kj@�ѳ@�|�@��<@��(���8�:�2���������Y���%!��%2��:�Y�A�e�8�c�(���
�������,ܫ���t���(�����@kgDA�I�Aj�A�L�ĀBOmB�$Br?�A�:�A�v�A��A��A�"OAS�A%�@;@;b��s�C���	E�1��g���U��k��Vt�z{5�5N��c�3�x�#t�¾C��R��}es�Y§~>�(�,¼�¹������C��-�8�^����.@��@
O0A��;AT��@<^�?�s�,#����,��؊�%���c���
�w��� ��J����/�K@�ږ% �7�>�I»:d�?6`�K�K��d7�o�'~�����?I��Ƀ����W��]+�ε[����r���1^������ƽ�����A����“��5�hB��”�‰�������q��f��aD��!�j�B�a�D^���h�����+ˎ�j���S���&��bX��`��H�n�� [���G�e�7�˷)�|J��	��1��*���Y������]�{�v�j�Lge��b[�_'M��C���:��/�y.$�"�!��2*��4���:��mE���Y�%j�,	v��x��"��첇�bUKeyAttrFlagsiRH!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD�/KeyAttrDataFloatfH"xc`�V^V^(L��G�c4= B`4?���w�UKeyAttrRefCountiRH3"AnimationCurveL8?�-SAnimCurveS�	DefaultD��ZQ@�KeyVerI�2�KeyTimel�wx�}P����q�7y����l��Bܘ��8^��M����q7���Q�1;9��Vر�f�'��ަf��p�r 7_��.΁����>�DO�2S���L����^a�5� ��I+.[z�ƎׂC��ʟ�X'i*Ǘ��.�=��ڊ�><$^�)�~��l7֜�Հ9��)\�X���_ٶ�XَWYpC~�f��=XUz%*�6z2�7~�szK��LI�$��~<:s.p6�Y܏�-?�3�.b���o�i�v�Vv+��|%���b?�{:�K��pަ�ۅ8yʤ�Ʈc_bw���E�����2�(M�Lg@
n1��p�pq5n�v�w��ŧ�K�1�pt$-�oî0U.�?~��{���笧o{�؀s[x�D�*ڎb��w�p�����0�Ə���d���ΠG�X�j��y���
t�Hn!v|%���
��8��1�ɦ`�!��n�iL]����y�}W�?��
���7��Lk�;���If>�.Ū��S���u�S;�FӾ��Z�i;ڇM�BV��z���ֵ��>6wYWaO��
�I��;�z�`y塝|z�+���
�K,��o�g�
��Q�7/&�G?�Dɱ��)Ǎ���a��kø���/��<Q�f
��ݒ�Ь��$vΪ=X 2SH�f�{���ձ�n�d?��^�C��m�5{c��r��Ʉ���^|���!6�>�����M�ľ�%l�͉�3F���H��#�Z,�uߎntG�����j,�ο�g�?m���ZZ�8U?�]v�BBק<?��m�x"�nO]cK�l��V�iu�^���
f�R�!	�ź�w17�[��й�6�m|�9g��2�?��#V�z�����D���į28T��
KeyValueFloatf���֊BΫ�B�l�B��B��B࿌Bʷ�B��BM;�B�ʼnBh�BwU�B�@�B��B�q�Br�B�,�B��Bs�B��B�ɅB�͂B�}B��vB.�nB��fB�[\Bx�PB"FB��8Bp.B�=!Bl�BmB#B��"B�i.B�6B�[AB��JBF�SB��`B�'lB��}B�/�B%��B�j�B�O�B� �B~(�B�^�BFl�B�TxB�wB�MzB1�BR��B���B���BW=�B�:�Bdm}B�;wB�/rB{bnB�iB�aeBF�fB��fB4�pB��yB^6�Bg~B�^B�WB/�Bh�B]i�B�L�B�t�B���BC�B���B��yB��kB�?[B�?HB�=>B�4B�.B/1B��9B�@By�FB�NB	�UB�tdB�QrBԦ�B��B�S�B��BDf�Bw}�BލBX�B_P�B��wBr)kB5�_B\YTBk<B�f$B�Bc>B'GB��!B)%0B=F@B�WPB��^B�HlBp�wBx=~B�B�B��BU1�B��Bħ�B�T�B&8�B[k�B��B��B��BM��B,��BGٓB�ДB�D�B���B�\�B��B�Y�B�ҕBd�B}�B�s�B$�B���B
��B�K�B�	�B�ђBqؒB��B7ʒB\��B�ВBwܒBK UKeyAttrFlagsiRH!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD� /KeyAttrDataFloatfH"xc`�V^V^(L��G�c4= B`4?���w�"UKeyAttrRefCountiRH3u#AnimationCurveL��-SAnimCurveSk"	DefaultD�?�"KeyVerI��"KeyTimelм.��"
KeyValueFloatf�?#KeyAttrFlagsi!;#KeyAttrDataFloatf

h#KeyAttrRefCounti�$AnimationCurveL�Q�-SAnimCurveS�#	DefaultD�?�#KeyVerI�$KeyTimelм.�7$
KeyValueFloatf�?a$KeyAttrFlagsi!�$KeyAttrDataFloatf

�$KeyAttrRefCounti5&AnimationCurveL���-SAnimCurveS+%	DefaultD�?C%KeyVerI�l%KeyTimelм.��%
KeyValueFloatf�?�%KeyAttrFlagsi!�%KeyAttrDataFloatf

(&KeyAttrRefCounti�6AnimationCurveLXm�-SAnimCurveS�&	DefaultD@�k@�&KeyVerI�.,wKeyTimeljx�y4x�)��;�k
�$�e*M�FO����4Ժs�Wt�#��P���5�J#rlM6"b:�)�J
E��~���߷S�P(��S[TɌ��",b�}Ǻ2�5j�0��^,��O�t[�����;U���Qל1���i��[p���J
��͎$L����e>��d�պ9�r�O��&EZ�o�N�cϒ@>.dwc���":�cH��������1۰�O.��W^��I&�R���Y|e�|�6��o�%�Ԑ�.�ڤ�?6�hx��BuVZ���W���P��exvD[^���M�+��s��YX���L�F��9./K�ģ||�@&�stª���R_�+�<�~3�چ;�=���o��τ�lэ`��`EbW�i^����ƛ��\8U�'gm�a�v�;���
;�����Wj׉]�s�pN��s��ҥ/*��~��~�y�ץ��Ƨ��{qR��
n+��aA����
�oK�ppy�;<A}�׻��q�@8��Id8���w��k��e�����^��;gg�ý�ݱ=�g�$��bޥ�`����xƐ�Ĉ0K��-N���C�ϓ_�S�y��o�5��tɉ�Z��D�U�ܞY��������Ӎ��a��On�d��'va���1��Ol��\��y��p���8,���
�/�cV�<z�s��Zc�3�#������!��}c�G&��I��uo���%|�ي�d8��7��f��b�á9�ƛ�Dž�8��K{rޯ�'�g�����nS�iJx��&w�J��<�0]!l-~���
�8�pqc*�,�R�cՑws8�΋� {���´�W<[�Ɓ̞��l��N�&0����g{����^̓W܏��~��]�rq�d8_�=�%I���,� �+ƙ��Gq�1Z��
�jL�p�o���)r=�����1���oV3\��DZ5��$��*J�מвq����ܱ��`{�z,�Պm�e�����,^ʱVYNN����T�ŻqE���PҕV��~sĔ;���z��?����i
{&t3ɲټ\�'�l�ƈ,��d���Q�ud�1ydʢ�§�IJ�|%�%����7/������8e�Iu�u��3�<J	���qbP��	�d�=	�*��ء�)����Ƣ�>R�������W��ɭ&s{`�>�Z\�r\Ӝ쿧2S�Qm�b7�l
����3���0���N�� {z��a�S�i\�s��Z2��W��ۼ����-v����4�X�ync0�q'����š��,
[��
cqӕIN\��26������wِck\*1�~��Od�@��a��BL����%72�0�Vw�Y]dڑ�o�e`�壘Z.qc�+V�b��G�1�t��=�_2U��t^Cxr0*
KeyValueFloatfx�4�w����q�<�Ȣ3�q���_�u�bC%���S�FT�t��3�*�_��eWj���_�Y��2-Js�G/L��>��������@�G-w�Ǔi�-l���p�8P�cԆg�����_���9x�"�[Q�Bfu4;�|��m�e�
��U�3����jG���;�~��;v��|H+�
')�$Dh�MJ����D��	�"���n7\����[�c�dv��ݘzqF������\��O��T�:�#��8Y��u�=�0��T�
���a���9�}��A"��\L�̩��-�㨔J���,ɑjz��{l�\�5m[���'_�Y�ĭʧ��!�^�ê������Vd�^��"
�ոƥ3[�v����eY�3��V��P5�����7O슻I6����Jb�_I�kI�ܕx�݂�G+ G�	"��T�?Hd`�m>qئ@2�,��"㺝���s"Bb����	��j���K��
C��܋���cE��VU凤zTE6�j�C�k�c��o~�sB�-�6�gcP��S�OI-�7�p���C�po�$����{����K%��{��D7\t��^�Q�C7��Ƽw�6� :�4���ӎSa4������S��`�~@���4��w�p*i[Fg�\�'�N��Q�0-��rk�wRL�bf��w��z1���t�h��,��� ��ԅ8u-�̤�&3�G�ᕃ���y;�g�.	F"=�Jl.�&���#v��5ٞ�2�,�8����Tx>gj��79��ൖ9�R��a,`b\o��VWjŽJ����0o�n�,(
��Ϣ���,p�a���1�/h�L�[ٽ�ւ�Aٙ.�U!B��D�t�3��ʶo��L�e��!sa㵿w��[$���]�&����1�rƔ1l�O�;&洉�7FX6�D�wNɉ��DQ Z^
��`�/��c*�s+vi�74�Q�``�D٭ ���h�wH[u��~H+�Hҁ.�n��Px��9�}��5i;ƀOy
e}b�{JH�	S"ZbJ�t��1KeyAttrFlagsi>�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD�5�KeyAttrDataFloatf��



























































































































�6KeyAttrRefCounti>�		4GAnimationCurveL��-SAnimCurveS7	DefaultD��N@67KeyVerI��<wKeyTimeljx�y4x�)��;�k
�$�e*M�FO����4Ժs�Wt�#��P���5�J#rlM6"b:�)�J
E��~���߷S�P(��S[TɌ��",b�}Ǻ2�5j�0��^,��O�t[�����;U���Qל1���i��[p���J
��͎$L����e>��d�պ9�r�O��&EZ�o�N�cϒ@>.dwc���":�cH��������1۰�O.��W^��I&�R���Y|e�|�6��o�%�Ԑ�.�ڤ�?6�hx��BuVZ���W���P��exvD[^���M�+��s��YX���L�F��9./K�ģ||�@&�stª���R_�+�<�~3�چ;�=���o��τ�lэ`��`EbW�i^����ƛ��\8U�'gm�a�v�;���
;�����Wj׉]�s�pN��s��ҥ/*��~��~�y�ץ��Ƨ��{qR��
n+��aA����
�oK�ppy�;<A}�׻��q�@8��Id8���w��k��e�����^��;gg�ý�ݱ=�g�$��bޥ�`����xƐ�Ĉ0K��-N���C�ϓ_�S�y��o�5��tɉ�Z��D�U�ܞY��������Ӎ��a��On�d��'va���1��Ol��\��y��p���8,���
�/�cV�<z�s��Zc�3�#������!��}c�G&��I��uo���%|�ي�d8��7��f��b�á9�ƛ�Dž�8��K{rޯ�'�g�����nS�iJx��&w�J��<�0]!l-~���
�8�pqc*�,�R�cՑws8�΋� {���´�W<[�Ɓ̞��l��N�&0����g{����^̓W܏��~��]�rq�d8_�=�%I���,� �+ƙ��Gq�1Z��
�jL�p�o���)r=�����1���oV3\��DZ5��$��*J�מвq����ܱ��`{�z,�Պm�e�����,^ʱVYNN����T�ŻqE���PҕV��~sĔ;���z��?����i
{&t3ɲټ\�'�l�ƈ,��d���Q�ud�1ydʢ�§�IJ�|%�%����7/������8e�Iu�u��3�<J	���qbP��	�d�=	�*��ء�)����Ƣ�>R�������W��ɭ&s{`�>�Z\�r\Ӝ쿧2S�Qm�b7�l
����3���0���N�� {z��a�S�i\�s��Z2��W��ۼ����-v����4�X�ync0�q'����š��,
[��
cqӕIN\��26������wِck\*1�~��Od�@��a��BL����%72�0�Vw�Y]dڑ�o�e`�壘Z.qc�+V�b��G�1�t��=�_2U��t^Cx�@�
KeyValueFloatf�x
�}L�u��&�a�I3S��v)04,?/ �d���ĸ5Q�!j��葧<s��~ߟ�3	)χ�a*"�t�<u����b�u���>�?�����`�0�L��s��C*�<��YѤ�<���^��xEވU��l��,q| �����(��/�&Ksp��?<[.�ٽy�h-�)<�&}.G�Ӓ$�z2x�w=9߲cB)��E�������#M=K;��.l1�5��t�V�L�u�n��S��hJR�f(�Wܪ(,U��)���k��������o�N���k�,�]4�8��'�O�˜,�qqn�Ɲ�4n�ꄹtl��O+n�VԝU��@1��A������(��QL=����N[�86FQݩ��3�Uc�I�a����9���g^-�|�9qeE+l,{����l��kٳ!�G		��7���W�C���l���$7>J�W�I�}��ҽڿ_,S����"��{܏S%!ĭ��wzO����r�y����.�����j|긺���N���b]�ƅY:Y/)����QYc�
���7�3�`����I�_1�Dg�+:�O\��8���`�����U<>bgt�N2}�����m��9�?T��@+O#�|��}�h0j��߁y���#\|����FF�N��զ���r1x0Πl��ꇊs���#n�D�u2k�Y�ѹܻ�T'��:�u-��h�n��w;Ɉ�Ƴ�7�Or6��in����w�
x
�~�YwT,�.��eM(oEL`J�L���p1�LD~Ê�y������~�h/,bME1YO���%	�2����M�m��gaI�9�j1c�XE����7o�����-��i��^���}�Td0r�F*R�i�kf��E��p閰�����C�@؍HN{$%7=b�� 
)-�	:*�'��=�QLCJC��M8 �e��&)�:*���%��X�Igq��k��V�q��I���x�I~H|���퐆]U⟽[NU�ħ�TL����������AKeyAttrFlagsi>�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD�E�KeyAttrDataFloatf��



























































































































GKeyAttrRefCounti>�		4�WAnimationCurveLX:�-SAnimCurveSuG	DefaultD�@��?�GKeyVerI�MwKeyTimeljx�y4x�)��;�k
�$�e*M�FO����4Ժs�Wt�#��P���5�J#rlM6"b:�)�J
E��~���߷S�P(��S[TɌ��",b�}Ǻ2�5j�0��^,��O�t[�����;U���Qל1���i��[p���J
��͎$L����e>��d�պ9�r�O��&EZ�o�N�cϒ@>.dwc���":�cH��������1۰�O.��W^��I&�R���Y|e�|�6��o�%�Ԑ�.�ڤ�?6�hx��BuVZ���W���P��exvD[^���M�+��s��YX���L�F��9./K�ģ||�@&�stª���R_�+�<�~3�چ;�=���o��τ�lэ`��`EbW�i^����ƛ��\8U�'gm�a�v�;���
;�����Wj׉]�s�pN��s��ҥ/*��~��~�y�ץ��Ƨ��{qR��
n+��aA����
�oK�ppy�;<A}�׻��q�@8��Id8���w��k��e�����^��;gg�ý�ݱ=�g�$��bޥ�`����xƐ�Ĉ0K��-N���C�ϓ_�S�y��o�5��tɉ�Z��D�U�ܞY��������Ӎ��a��On�d��'va���1��Ol��\��y��p���8,���
�/�cV�<z�s��Zc�3�#������!��}c�G&��I��uo���%|�ي�d8��7��f��b�á9�ƛ�Dž�8��K{rޯ�'�g�����nS�iJx��&w�J��<�0]!l-~���
�8�pqc*�,�R�cՑws8�΋� {���´�W<[�Ɓ̞��l��N�&0����g{����^̓W܏��~��]�rq�d8_�=�%I���,� �+ƙ��Gq�1Z��
�jL�p�o���)r=�����1���oV3\��DZ5��$��*J�מвq����ܱ��`{�z,�Պm�e�����,^ʱVYNN����T�ŻqE���PҕV��~sĔ;���z��?����i
{&t3ɲټ\�'�l�ƈ,��d���Q�ud�1ydʢ�§�IJ�|%�%����7/������8e�Iu�u��3�<J	���qbP��	�d�=	�*��ء�)����Ƣ�>R�������W��ɭ&s{`�>�Z\�r\Ӝ쿧2S�Qm�b7�l
����3���0���N�� {z��a�S�i\�s��Z2��W��ۼ����-v����4�X�ync0�q'����š��,
[��
cqӕIN\��26������wِck\*1�~��Od�@��a��BL����%72�0�Vw�Y]dڑ�o�e`�壘Z.qc�+V�b��G�1�t��=�_2U��t^Cx_Q-
KeyValueFloatf x
�}4�g�+��#�[����1��iq���}Z�,�c�*�h��uk���Vj�K�;+���8*[�Z/��	�]�H�ʽ�矏q�� ��D���� ���$\2�&D�����&D7��_}�C$�D���.)�&AV`{~�M�A��$�`�J�fE$L,o1x����E�ohF����C3Ao�5�\��D�O��G�ݴ�~�VFX`@�3ΞY�Z��[0b�nL.LE�߲Ѹ�}�d������Ĥ�j��ԢAD#j�n������
<����D��ܳN���xŕc��,��)s�X���Y�؆�%�b���3�ڈ5��X�������x
���Ù�߅V��G�*���y�|/�?�O���B���F�����04m�F�5�펙�vx���]G��~}�,�&���>p%5��@���`��W~x'�Ө��e���"/��X�jF��5i��<�q���A�
���m �]��#�`)�x�Boت=@�[
j����x8�oˡ��/�\s����(
�-���PiVլ�O�Qm�Ο�z_�Y�G#��eW>6ĕcF���؁a�obH� �Li�a�+��;��%3s���e�
��c	�W,cW��خ��&/&T{�?W���>�u�73K�d��=X��+s?�������8��+mYV�5۝g���L��N�z�����P�Rau�u�k׎֞u�Ϊ��)E�s�!|b�N�_"�h��G��K0t�+ΏS�
�h{X52�Qq�>�e�/��������wHܠ갎�%*�T� ��*�y�|�ٿ�&t�Ɖ&�>t��ϵt�=[lJ��
�v@��K�=�
�E)��$ߝ/"���Dy�.�rǚ@�����rD�D��C��&ȼ��X��&o/��l�%���N��}m"�>Y�yxA�e]ð���Dߪ �E��Kɉ�'�	���p�2•'�&�pv[	wӟp��%��8�~�"�7�n��e�s~�n�>�Bi�R���Qr��x�6�������ܓ����i�R�E¹9p�V�(�p��K��o&�R�ն}RKeyAttrFlagsi>�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD�V�KeyAttrDataFloatf��



























































































































�WKeyAttrRefCounti>�		4YAnimationCurveL���-SAnimCurveSX	DefaultD�?#XKeyVerI�LXKeyTimelм.�wX
KeyValueFloatf�?�XKeyAttrFlagsi!�XKeyAttrDataFloatf

YKeyAttrRefCountiuZAnimationCurveLx��-SAnimCurveSkY	DefaultD�?�YKeyVerI��YKeyTimelм.��Y
KeyValueFloatf�?ZKeyAttrFlagsi!;ZKeyAttrDataFloatf

hZKeyAttrRefCounti�[AnimationCurveL��-SAnimCurveS�Z	DefaultD�?�ZKeyVerI�[KeyTimelм.�7[
KeyValueFloatf�?a[KeyAttrFlagsi!�[KeyAttrDataFloatf

�[KeyAttrRefCounti�bAnimationCurveL��-SAnimCurveS+\	DefaultD���տC\KeyVerI��_�KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9�a�
KeyValueFloatfp�����	/l�+d9�׹�=o�"�E_�������ן����䦿�ᢿ'Ȑ�#�l�t�
��.>%_[?��?��@6�@Ay@j@#@�?�?\��͒��y.��o?�g�?���?.��?�t?cDh?W�'?��7?긯?�r�?��?�+�? ��?�?vF?�y��	p���XԿ=�^��)�>[��?��@�@�	@��?gC�?���?�	@J�@��?4�P?e|F>���>��B?��i?Q?�T??
�E?3�c?���?��?�?��?�U�?
�?���?���?�Q?F�?g5�>��w>A��<��\��꾑�&�m.6�ѱ0�W�)���$����v	�5������鰾����¨���'���`�Z����\����q���W�$�d{^�@�����s¾P�оT��{f�9�
����*:���
���aKeyAttrFlagsi!iaDCb-KeyAttrDataFloatf 



tbKeyAttrRefCountio-iAnimationCurveLH��-SAnimCurveS�b	DefaultD �"
��bKeyVerI��f�KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9wh�
KeyValueFloatfp�1i��<p���?�{v�����W�^����p��y��][��Ǖ���������Ɍ����0%h?a�5@��@��@^P�@���@�X�@@��@� M@�o¾�=��-8�!�?�
K@lR�@:/o@YQ^@<�@�N�@
:C@mˈ@wp�@p�@P��@+�@�eH@���>[还5��b���<�g���>y7@�ǃ@
�@1"�@�]�@�F@�#q@��@<��@#�@��?�[��
J��09�?D~%@�=@МV@��[@��]@LK~@�Y�@
	�@�@r@��Y@��7@�^@���?s��?<�?��<-1�\̖�>࿣��j+D�x�H�1�<��3�hN.��;%�	�
�ߕ޿�3��$h���h��/T��!�@`��~��=�>��?�@�>u>�O>��=
��`��
8n�գ�����'I	�=��L/�h6�l�5��hKeyAttrFlagsi!iaD�h-KeyAttrDataFloatf 



 iKeyAttrRefCountio�oAnimationCurveL���-SAnimCurveS�i	DefaultD��/��iKeyVerI�<m�KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9#o�
KeyValueFloatfp��]~�����x��j��A?w�Z�;��޵��!;�O�뿢	�>�?�崿p��_l�WZ�������
���v3���v���
�����ϑ���~��G
����j��>E@L�@Y�@h4�@��D@o����m�����vO��;g���W��M�vIB�	�0�8�%���b �5{��������V,�
g�Q�����ݿ����?����i
����C�������z�lC�u�n�	�i�кT��=N���H�΄E�",D�v8���-�Rf ����l��т�=Q�΋�������	����P�Q��-�������$V��y���ۃ��z\��N�l.S�v-I���3�i�#��!��-�o�B�M�T�7�^��f��f���c�~f��s��.~���|��Kw��0r��n�?�i�H+f��@a��W���H���?�bbD�
YG�QoKeyAttrFlagsi!iaD�o-KeyAttrDataFloatf 



�oKeyAttrRefCountio9qAnimationCurveL���-SAnimCurveS/p	DefaultD�?GpKeyVerI�ppKeyTimelм.��p
KeyValueFloatf�?�pKeyAttrFlagsi!�pKeyAttrDataFloatf

,qKeyAttrRefCounti�rAnimationCurveL8��-SAnimCurveS�q	DefaultD�?�qKeyVerI��qKeyTimelм.��q
KeyValueFloatf�?%rKeyAttrFlagsi!_rKeyAttrDataFloatf

�rKeyAttrRefCounti�sAnimationCurveL���-SAnimCurveS�r	DefaultD�?sKeyVerI�0sKeyTimelм.�[s
KeyValueFloatf�?�sKeyAttrFlagsi!�sKeyAttrDataFloatf

�sKeyAttrRefCounti�yAnimationCurveL	�-SAnimCurveSOt	DefaultD�
�gtKeyVerI�Pw�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�xq
KeyValueFloatfYd�h��q���
����K���q����dm����p+�I��g3	�`���`��`����R�����B{�������h��U���8���B��\!������/�������g3	����3��z~�]��^�������}���h��Z����>�������>��Q�����4�(8�-����g3	���	��l��i���%��Q�|�������v�"h��c��Z��@���u��	�g3	�+	��	�n�����u�(����&p�Q�e���!�ܦ��(����8&�����$�Ƨ�?/�����Q��Q�	yKeyAttrFlagsi!iaDSy-KeyAttrDataFloatf 



�yKeyAttrRefCountiX)AnimationCurveL���-SAnimCurveS�y	DefaultD@`m/@�yKeyVerI��|�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1s~q
KeyValueFloatfYdk{A��}A�i�A2)�A��A�$�A+�A��A^��A���A���A	N�AT��Ao�A�u�A��AtÀA�<~A�'|Ak{A�|A��}AEC�A|�A�I�A���A�
�A-�A刌A���AA�A��A� �A'<�A}��A73AP�|Ak{A��{Ac|Aa�}Ar�AU�A��Af΄A&ՆAx�A�
�A���Aۧ�A���A�g�A.�Ax{�A�υAM�A>G�A�ΆA[}�A�I�Aa)�A��A��A���A�c�A�ӌA���Ax�A�،A*��Au�AG/�AEދA���AB!�Av��A�J�A�ىA:g�A��Ak��A��AY��A�9�A�ՆARw�A��A�υA�υA�~KeyAttrFlagsi!iaD�~-KeyAttrDataFloatf 



KeyAttrRefCountiX��AnimationCurveL���-SAnimCurveS	DefaultD`k@@�KeyVerI����KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�q
KeyValueFloatfYdXB~�A���AU��A)��AN	�AᜱAu
�A���A_�Ac��A.̘A�
�A���A���AT��Ah��A��A�ZBXBJ�B.d�A�;�A�`�ALG�A�]�A��A���A���Ac��A�/�A�ĦA�b�Ae��AT.�Aqh�AscBXB-�BW�B���A���A\��A�z�A�y�A8[�A	��A�
�Ac��Ai��A��AM�A|�Aq��AC'�A*(�Abg�A@�A�
�A�*�A7�As��AK�A���A3��A���Ac��A�3�A)וA�ݖA�>�A��A��A3�AƮ�A�\�A05�A�/�A�C�A|i�A���A�ȵA`�AT
�A�A*��A��AC'�AC'�A9�KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



��KeyAttrRefCountiX!�AnimationCurveL���-SAnimCurveS�	DefaultD�?/�KeyVerI�X�KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�<�-SAnimCurveSw�	DefaultD�?��KeyVerI���KeyTimelм.��
KeyValueFloatf�?
�KeyAttrFlagsi!G�KeyAttrDataFloatf

t�KeyAttrRefCounti�AnimationCurveL��-SAnimCurveSׇ	DefaultD�?�KeyVerI��KeyTimelм.�C�
KeyValueFloatf�?m�KeyAttrFlagsi!��KeyAttrDataFloatf

ԈKeyAttrRefCountiy�AnimationCurveL���-SAnimCurveS7�	DefaultD�c��O�KeyVerI�8��KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1Íq
KeyValueFloatfYd;���N��40��i������¨������5{���b��R���L��CW�$!s�����Ӥ�[��[��$�������;���V�����������P��ݻ��&ߙ�����1�i��S���L�'[�"}������;��
���T���H��;���\������������C��E����ܪ�⌘����Pk���L�p�C�
WX��}�%\���������p���ͥ��I���W���j��.���-{���p���b��$W���O���L��mM�M9O�"R���U���Z��N`���f��{m���t�{�|�#w��ԭ������J������ڗ�������գ��m�����������KeyAttrFlagsi!iaD;�-KeyAttrDataFloatf 



l�KeyAttrRefCountiX�AnimationCurveL(=�-SAnimCurveSώ	DefaultD-@�KeyVerI�Б�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1[�q
KeyValueFloatfYdh�(@@�@�@���?dq�?�v�?>�T?
�?)(�>
��>'�>y��>2�?}MV?uD�?>'�?e��?c�@��"@i�(@��#@�@�@SJ�?�ث?��??�:?��?���>'�>Y�>�##?̠t?۬?��?#�@�@h�(@�'@�� @�V@��@���?���?;�??~?X�=?\�?'�>��>�#�>#?��b?�_�?�C�?%Ǚ?��?�Έ?Q�x?t#]?��@?�D%?�?C&�>��>(޳>�L�>��>섲>�G�>[4�>n�>�q�>^�>��?�Z?6�?��+?�=9?�bG?M�U?��d?�rs?	�?�N�?	O�?[��?sǜ?sǜ?��KeyAttrFlagsi!iaDӓ-KeyAttrDataFloatf 



�KeyAttrRefCountiX��AnimationCurveLx>�-SAnimCurveSg�	DefaultD �A@�KeyVerI�h��KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�q
KeyValueFloatfYd�B?%B��B�a�A/��Av��A/\�A���A#s�A���A
�AՑ�A8�Aױ�A���A���A���AEB{�
B�B�<B�JB�{B}��A��A=�A[B�A�A�_�A
�A]ڷA�o�Aԇ�A���AA�A�6B�
B�B�]B{h
BoB�BJ��AP��A}�AER�A���A�C�A
�A$�A��A��A���A�P�A!�A�)�A��A+��AH��A�j�Af��AU��A"B�A�g�A-��A���A��AA�A
ܳA�ԴA&#�A���A���A�ĻA&�AC��AAR�AJ�A��A,��A`��AV��AC��A^��Aގ�A;�A��A��A��A!�KeyAttrFlagsi!iaDk�-KeyAttrDataFloatf 



��KeyAttrRefCountiX	�AnimationCurveLHY�-SAnimCurveS��	DefaultD�?�KeyVerI�@�KeyTimelм.�k�
KeyValueFloatf�?��KeyAttrFlagsi!ϚKeyAttrDataFloatf

��KeyAttrRefCountii�AnimationCurveL�a�-SAnimCurveS_�	DefaultD�?w�KeyVerI���KeyTimelм.�˛
KeyValueFloatf�?��KeyAttrFlagsi!/�KeyAttrDataFloatf

\�KeyAttrRefCountiɝAnimationCurveL��-SAnimCurveS��	DefaultD�?לKeyVerI��KeyTimelм.�+�
KeyValueFloatf�?U�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountia�AnimationCurveL�@�-SAnimCurveS�	DefaultD�Zn
�7�KeyVerI� ��KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1��q
KeyValueFloatfYd�rS�=1a�?�p�5J���O��3���ݖ������K���<��
I��Id��	B������hz��}�����s��Xc�
�W��rS��W�T�`��
o�;���
���ّ�����U������I��B��� b��@c���Ո���{�ch�Z�Y��rS�
BT�� Y��_a��Jl��-y�*������_��.`��ğ�I������AM��e�����x��d^��rS���U�+�\��g���s����ь�������������.��J3��
I���
��7U��1��Q��������{��;��&���������:/��N���E͆������D~��v�?o���g��~`���Y��rS��rS�٢KeyAttrFlagsi!iaD#�-KeyAttrDataFloatf 



T�KeyAttrRefCountiX��AnimationCurveLH��-SAnimCurveS��	DefaultD @��?ϣKeyVerI����KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1C�q
KeyValueFloatfYd��>e	?��?ԇ(?��@?V'[?�v?��?3E�?>~�?�#�?rb�?C!�?USu?x:R?��1?,�?P6?Oi�>
��>V%�>�?3?B�'?�C?UCb?$�?$"�?6��?�#�?��?}�?`-h?�nB?5"?��
?�,�>��>7T�>c��>�7?j�?�?YG2?R�I?�@d?�N�?m��?�#�?���?�{�?�'O?J?�K?���>�0�>���>�#	?&�?��*?8�A?W�Z?SSu?TG�?��??f�?�#�?A��?[��?��?s�?␎?�[�?���?�{?wn?��a?�T?%H?z�;?*C0?/U%? 7?�?,�	?pX??��>���>���>q�KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



�KeyAttrRefCountiX��AnimationCurveL���-SAnimCurveSO�	DefaultD^�1@g�KeyVerI�P��KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1ۭq
KeyValueFloatfYd��A/1�A�{�A�q�AT��A�^�AKT�A���A���A�(�A���A��A�0�Az�A�ڼA��A�áA���AI�A��A2w�A/�A�}�A�
�A5��A��AR|�A���A��A���A��A�i�ABL�A�O�AF�A(�A�U�A��A���A:ԏAP�AӢ�A�_�A��A[f�AB��A���A�o�A���A5��Az��A���A*%�A�S�A��AD��A0E�A/%�A�áAߋ�A�A2F�Az�A��A%��A-�A���A�`�A�M�Aޓ�A�A�Agd�AZ
�A<A�A��AL��A:��A�۽AQ��ADw�AY)�AvۨA���Adw�A�|�A3��A�<�A��A��A	�KeyAttrFlagsi!iaDS�-KeyAttrDataFloatf 



��KeyAttrRefCountiX�AnimationCurveL�0�-SAnimCurveS�	DefaultD�?��KeyVerI�(�KeyTimelм.�S�
KeyValueFloatf�?}�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiQ�AnimationCurveL��-SAnimCurveSG�	DefaultD�?_�KeyVerI���KeyTimelм.���
KeyValueFloatf�?ݰKeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveLxw�-SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimelм.��
KeyValueFloatf�?=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCountiI�AnimationCurveL8��-SAnimCurveS�	DefaultD@���KeyVerI���KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1��q
KeyValueFloatfYd�����4��C��2fо���k?"���;�%{Q�Qb��9m��q�!j��W��;������'栾02E�xڽ���2sϽU2�����!Fξ��;C)��HF��o]�yl��q���g��$P��.�]��t&���Uk�c������j�����v:6�bf���ô�DŽ���0+�k	E��\��q���w��l�]	U�-^:�<	$���[j�_I!���(�x�1���;���F��YQ�dP[�'d�y�j��yo��q���p��o�9�m��k���h��ee�{�a��_]���X��S�]�N��I��,D�m�>�%%9�j�3��;.���(�a�#��������KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



<�KeyAttrRefCountiX�AnimationCurveLh��-SAnimCurveS��	DefaultD�d@��KeyVerI����KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1+�q
KeyValueFloatfYdD �@dѾ@k!�@���@9��@���@���@�@C��@���@���@�5�@>�@[��@�O�@O��@��@_i�@HF�@D �@0�@㷾@C��@C��@�d�@�G�@��@
��@ȷ�@���@���@���@�X�@�B�@��@��@/ּ@D �@�V�@¡�@޾@���@��@Q��@x��@��@ޝ�@ud�@���@n`�@{Y�@�D�@��@��@��@s��@̜�@Q��@��@֮�@�h�@�*�@���@;_�@ɘ�@pj�@���@���@�s�@$�@#��@�5�@(��@���@p6�@n�@a��@��@���@���@~�@�=�@1b�@g��@Q��@���@(K�@��@��@Y�KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



ԽKeyAttrRefCountiXy�AnimationCurveLX��-SAnimCurveS7�	DefaultD ��@@O�KeyVerI�8��KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1��q
KeyValueFloatfYd��B@��AW�A���A^Y�A�3�A�)�A��A��A�9�A&�A��A��A��A���A��AX�A���A�
B��B	[BaB���A[v�A
�A��A��A��A���A&�AC�A���A޿�A�b�AX�A~��A B��BߓBquB���A��A���A���AV�A���A�^�A��A&�A:ԚAڡA��A���A��Aϒ�A���Aj��A���A��A�W�ASX�ARY�Aڰ�Aٴ�A+��A��A&�A�\�A���AD��A�R�A���A��A>�A݃�A��A�ݮA+��A���An·ARԺAX�Au��A���A���A��A�(�Aϒ�Aϒ�A��KeyAttrFlagsi!iaD;�-KeyAttrDataFloatf 



l�KeyAttrRefCountiX��AnimationCurveL_�-SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimelм.�;�
KeyValueFloatf�?e�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti9�AnimationCurveLE�-SAnimCurveS/�	DefaultD�?G�KeyVerI�p�KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

,�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimelм.���
KeyValueFloatf�?%�KeyAttrFlagsi!_�KeyAttrDataFloatf

��KeyAttrRefCounti1�AnimationCurveLx��-SAnimCurveS��	DefaultD���	��KeyVerI����KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1{�q
KeyValueFloatfYd֬N���@��S1�J~ ��4�����ݿ���S«�Ϗ���v�������Z����ݿ����~�a�-���>��aJ�͖N�aK��YA�^�2�0!�w�
�*���Ͽ�$������#���-󤿊=ÿS�쿝�db%�ܨ9��H��AN�7oM�9�H��x@�~|5�N(��G� 9	����\ѿ�(��ǎ������^���ſ1o�CX��b
�)+	�2������0��n��
4׿*�ǿ���
����7������F?���ǚ��D��렠��������Jѯ�	���ȼ���ÿV˿�ӿE�ڿ������Kf���޶���P�qF
�qF
���KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



$�KeyAttrRefCountiX��AnimationCurveL(v�-SAnimCurveS��	DefaultD��R�?��KeyVerI����KeyTimelX�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�m
KeyValueFloatfX`��"?��
?���>H�>�C�>��E>�x>��=��A=�q�<
��<�K=�
�=ۺ>��]>Lߢ>2��>�4?�?��"?T�?�?i�>Y�>�p�>�3>g�=�|o=�r�<��<l=���=$H%>`��>5��>0@�>��?	`#?��!?7w?lM?�V�>���>-X�>�Rv>�.>"m�=d�u=S��<F�<���<��=}d>X�F>�ge>�a>v	S>L�=>��#>�>��=B��=�k�=ˢ0=Q��<�z�<�s<�q�<��<k�<ޡ=�/=|M=��n=�V�=a�=��=�~�=+��=JP>.>+>�2+>�;>�NK>�Z>\�i>]�i>5�KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



��KeyAttrRefCountiWU�AnimationCurveL�f�-SAnimCurveS�	DefaultD��A@+�KeyVerI���KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1��q
KeyValueFloatfYd/UB>F	BZoBhL�Ah��A�%�A/��AWp�ACl�A���A1h�A�9�A�t�AD�Am��A<J�AE�BkQB5m
BRUBq�
B3o	B!B���A9$�A���A�_�A��A
�A�g�A"��Ae&�AW��A/��Aʃ�A�BˀBVB;�BB�B92	B2TB
�A��A�j�A���A��A�w�A�g�A|,�A߱�Ano�AY��A;p�A���A���AQ��A|��AA[�A�^�AO�A��Aɰ�A�i�A�3�A�i�A�g�Aԡ�A�J�ATY�A�ŲAu��A���A�Ar�A�1�Am�A�(�A�N�Aa��A���A��A�:�Ag`�ALl�A�V�A��A��A��A��KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



H�KeyAttrRefCountiX��AnimationCurveL�s�-SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimelм.��
KeyValueFloatf�?A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL(��-SAnimCurveS�	DefaultD�?#�KeyVerI�L�KeyTimelм.�w�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiu�AnimationCurveL8��-SAnimCurveSk�	DefaultD�?��KeyVerI���KeyTimelм.���
KeyValueFloatf�?�KeyAttrFlagsi!;�KeyAttrDataFloatf

h�KeyAttrRefCounti
�AnimationCurveL��-SAnimCurveS��	DefaultD,�����KeyVerI����KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1W�q
KeyValueFloatfYd`!���S����ÿ�(ѿ7�޿oT����k��Oj�R������7����p����+��ֿ-�ƿ�������b!��������Э¿دп��߿���M����H�������^��U5��!��c߿�TͿ7���^��_!���ɬ�����}y��{k���˿��ֿ��j��I��:����zT�������y�ʿn
��V!���'��̾��@)��%�ƿy|ҿx�޿'7�s���/\��P������ɣ�O���"�����%��������~��<��[�kA���ۿ�տ`>Ͽ��ȿ
�¿��������$@��U!��U!����KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



�KeyAttrRefCountiX��AnimationCurveL�[�-SAnimCurveSc�	DefaultD��W�?{�KeyVerI�L��KeyTimelV�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0��e
KeyValueFloatfVX�Z=rW|=)��=*�=i��=�E>!�6>Y�U>��o>��>u�>$�|>e^>e�5>c
>`L�=T�=Qz�=��c=`�Z=\+b=�C{=�=��=0��=Lz>jGE>�	h>-p�>1u�><x>r�S>�`&>�>�=���=��=�h=��Z=L�f=e�|=*2�=ݙ�=���=�>��!>�C>��f>'u�>��>��M>�	>�Ŭ=�Mt=H�Z=!�_=Gp=r��=}�=���=�8�=��>c�5>�T>�3o>���>u�>���>2c�>�{>�r>��f>ӮY>�K>��<>E�->E�>��>��>�*�=`��=þ�=+T�=���=��=�Hz=yOh=��KeyAttrFlagsi!iaDC�-KeyAttrDataFloatf 



t�KeyAttrRefCountiU�AnimationCurveL��-SAnimCurveS��	DefaultD��1@��KeyVerI����KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1c�q
KeyValueFloatfYd-x�A���A�-�A�N�A���A;��Al��A�m�A>O�A���A!m�AN��At��A�f�A���A��A�~�A�0�A�a�A-x�A��A�{�A�+�A��Ae��A�S�A���AnN�A��A!m�At�A���A���A�Z�A~�A���A1̒A-x�A�ApH�AڗA�I�A�(�A�	�Ar}�A�Ae�A+��A!m�A$�A
D�Au��AT�A�ՕA-x�A$�AÔAD��A�~�Am�A��Ax�A�f�A�&�A#"�A7��A!m�A��Ad��A�4�AP��A���A���A���A�v�A���A�A
�A�˻ABw�A��A��A�]�Ag%�Ao�A�A�A���A-x�A-x�A��KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



�KeyAttrRefCountiXy�AnimationCurveL��-SAnimCurveSo�	DefaultD�?��KeyVerI���KeyTimelм.���
KeyValueFloatf�?�KeyAttrFlagsi!?�KeyAttrDataFloatf

l�KeyAttrRefCounti��AnimationCurveL(��-SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimelм.�;�
KeyValueFloatf�?e�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti9�AnimationCurveL���-SAnimCurveS/�	DefaultD�?G�KeyVerI�p�KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

,�KeyAttrRefCountie�AnimationCurveL�[�-SAnimCurveS��	DefaultD@|�@��KeyVerI�H��KeyTimelP�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8)paL*�ߧ*\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/��d0��M
KeyValueFloatfP@�@y�@e5@�F@��@n@Z�@I�@�)�?˝�?�S�?���?��@�@+�	@��
@~�@yQ@�@�@�@�@�t@�b@��@2@
f@0��?K��?�S�?�{�?v�@Ĺ@��@�(@��@ӫ@�@�i@L�@��@��@ݬ@J�
@��
@�<@+�@���?�S�?9�?���?�_�?L��?�U@�@��@�_@z�@Dl@—�?87�?���?&{�?~^�?z��?Ē�?e��?�C�?y��?C��?�+�?N��?-��?d;�?U��?UE@4�@��@�@�@��KeyAttrFlagsi!iaD'�-KeyAttrDataFloatf 



X�KeyAttrRefCountiO��AnimationCurveL�[�-SAnimCurveS��	DefaultD��G����KeyVerI����KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1G�q
KeyValueFloatfYdu<�qj�����Q�J�Z-��L����#Z!��%��j&���#�P�������L�������2��t<��M�'0꿩��������rm�y���$��j&��#�x�������I	������v<⿂��	�忆��Ѱ������m�	�������z��j&�i�&����K��nh�Y��%忙���%�}
��6��N���?�B�������y;"��L%��j&�W*&��o%��D$���"��� ���Z��U�
m�l_�7����O�	�E~�pI�'��=��/p��!�����%�%�u�KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



��KeyAttrRefCountiX�AnimationCurveLx��-SAnimCurveSS�	DefaultD@��A@k�KeyVerI�T��KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�q
KeyValueFloatfYd�}
BʔB���A���AA*�A@��A)ռA֯AP��AU�A~��A�ޠA�t�A|>�A!+�A�'�A��A�}B0QB�}
B��B��B�AF��A���A��AY��AG��A�g�A~��A�p�AY��A�l�A�
�A���A��B�B
B�}
B=
B,�
B^}B��B)��A%��A4c�A���A�O�A\�A~��A
o�A9N�A��A$��A���AW
�A���A�-�A��Av�A�]�A�@�A�$�A�~�Af¦Afc�A�՝A~��A�֜Ag��AU�A�֠A'�Ay��A���A	�A�j�A�#�A��A��Aj*�AvQ�A�x�A���A!��A;��A@�A���AW
�AW
�A
KeyAttrFlagsi!iaDW-KeyAttrDataFloatf 



�KeyAttrRefCountiX�AnimationCurveLX�-SAnimCurveS�	DefaultD�?KeyVerI�,KeyTimelм.�W
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiUAnimationCurveL8-�-SAnimCurveSK	DefaultD�?cKeyVerI��KeyTimelм.��
KeyValueFloatf�?�KeyAttrFlagsi!KeyAttrDataFloatf

HKeyAttrRefCounti�AnimationCurveLH��-SAnimCurveS�	DefaultD�?�KeyVerI��KeyTimelм.�
KeyValueFloatf�?AKeyAttrFlagsi!{KeyAttrDataFloatf

�KeyAttrRefCountiMAnimationCurveL���-SAnimCurveS	DefaultD C��?#KeyVerI�	�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�
q
KeyValueFloatfYd��?Mr�?At?��]?��F?7�/??)?RO?H��>U�>c��>�r�>�`?޺?�#7?mT?T�o?B�?Q��?���?�1�?�„?3Cv?��^?�iD?��)?P?�t�>F�>P�>"`�>�{?%?E?�Yd?�I?pV�?�܍?M`�?r�?�d�?�z?�?h?�#T?[|>?H.(?�,?���>M��>r2�>���>�_?�'?yw<?�_E?b�C?��>?r�7?�w.?Z�#?��?#�
?e�?���>�>�>���>,��>��>|w�>���>���>�
�>?��>��>H�?Ϗ?N�
?�1?��?o?6"!?q�&?Kh,?[�1?� 7?;<?��A?��F?��F?�
KeyAttrFlagsi!iaD-KeyAttrDataFloatf 



@KeyAttrRefCountiX�AnimationCurveLhB�-SAnimCurveS�	DefaultDEԿ�KeyVerI�t�KeyTimelS�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8)h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Y
KeyValueFloatfSL( �Tψ��b�$4�����\Ľ쾄��"����E	�9܈�$=��	�������ܽ�"���X�Nn��$_�����N&��벊��	g�e�5�6���%����U�.rܼ��+�fCǻ�=��k�(�����?���5A�5>{�[)��L(�������t��ޯ���So��0I��!��6��(7���^\�'㼥#л�|M��]�:��Ϊ�������	����)��u�Ž�۠�6����D���
�����M&��~�90[��9��g7Ǽ��l��2��vO�Un�g{��GZ��eԩ�k����lͽ�޽s/�������KeyAttrFlagsi!iaD_-KeyAttrDataFloatf 



�KeyAttrRefCountiR5AnimationCurveLXI�-SAnimCurveS�	DefaultD�?�D@KeyVerI���KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1q
KeyValueFloatfYd�I%BE*B B��
BX�B+��A5P�A���A�A�A�S�A���A�S�A�W�AS��A3]�A1
B�WBu
B3#B�I%B�k#B�ZBy�B_�
B�BG��A���A�V�A���A���A���A���A�,�AVKB?
BgB~�!B�I%B��$B�Z"B	B�YB��Bf�	B��B�t�Aė�Af��A���A%��A�m�A���A_k�A��B��B�<B*UB�tB���A���A��An-�AT��A?��A��A79�A���A�'�A.�A��A�p�A4��A���A���A�J�A��A��A�2�A(��A���A�T�A���A�(�Av�A-PBNB�.B��B��B�KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



(KeyAttrRefCountiX�AnimationCurveL��-SAnimCurveS�	DefaultD�?�KeyVerI��KeyTimelм.��
KeyValueFloatf�?!KeyAttrFlagsi![KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLh��-SAnimCurveS�	DefaultD�?KeyVerI�,KeyTimelм.�W
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiUAnimationCurveL���-SAnimCurveSK	DefaultD�?cKeyVerI��KeyTimelм.��
KeyValueFloatf�?�KeyAttrFlagsi!KeyAttrDataFloatf

HKeyAttrRefCounti�AnimationCurveL(��-SAnimCurveS�	DefaultD@�(�?�KeyVerI���KeyTimelX�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1+m
KeyValueFloatfX`�G?d�?�� ?��)?_2?��:?�+B?��H?�M?��P?��Q?��O?�4J?b�A?��7?�9-?	�"?e�?^�?�G?�;?0�?�/ ?�^)?�)3?Ѹ<?�CE?�L?~P?��Q?,
O?�*H?Qd>?��2?�,'?��?��?�G?h�?TX?i�?H�?ҫ%?�U-?�R5?�I=?��D?��K?��Q?2Q?��F?�7?P}%?`0?�G?�?�T?��?�"?��*?n�2?�:?_�A?{\H?�bM?*�P?�R?E�P?ڭO?��M?��K?#]I?[�F?�{C?�@?�<?<�8?*�4?+�0?��,?Cm(?�D$?�* ?�+?S?��?�G?�G?YKeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



�KeyAttrRefCountiW%%AnimationCurveLXL�-SAnimCurveS7 	DefaultD�p��O KeyVerI�#�KeyTimelR�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_�t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0@Iۿ0o$U
KeyValueFloatfRH�K�z#e������왽#ȳ��Eн���N�����	����U���L�/�콡�ƽC����@��t�i�I	S�J�Q��dd�h)��R��zV��7�׽���$��{����������b޽�����6��ħt�b�V�?�K��vU�n�e�]�}�V���O���}��v ڽ����]"����1D�;	��Oý�ߎ�y}_��K��b\���q��@���R��V���Vн*������������ ���$
�W�]������6彋?׽iWɽ�������(��*���qҋ����}�r�ǘV��$KeyAttrFlagsi!iaD�$-KeyAttrDataFloatf 



%KeyAttrRefCountiQ�*AnimationCurveL(��-SAnimCurveS{%	DefaultD��6@�%KeyVerI�|(�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1*q
KeyValueFloatfYd��A�0�Ax��AIg�A��A�P�A��A�]B:�B�9B1BP�B��B p�Al��At �A�T�Aױ�A@��A��A�(�A��A��Al��A��A�'�A�AK�BjB1B�B�Bw�A���A��A�9�A$�A~��Aw7�A���AQ�A���A��A�E�A��A'��A���A�B1B��B@��A�X�AO��A�=�A~��A�`�A�"�A�R�A�T�Aۍ�Aob�A7�A p�A$9B�B�1BB��B�LB�eBK/B!�B��B}��A��A���A���A���AQ�A���A{I�Aq��A�A�Ab��A`��Ad��A��A��A~��A5*KeyAttrFlagsi!iaD*-KeyAttrDataFloatf 



�*KeyAttrRefCountiX,AnimationCurveLD�-SAnimCurveS+	DefaultD�?++KeyVerI�T+KeyTimelм.�+
KeyValueFloatf�?�+KeyAttrFlagsi!�+KeyAttrDataFloatf

,KeyAttrRefCounti}-AnimationCurveL���-SAnimCurveSs,	DefaultD�?�,KeyVerI��,KeyTimelм.��,
KeyValueFloatf�?	-KeyAttrFlagsi!C-KeyAttrDataFloatf

p-KeyAttrRefCounti�.AnimationCurveL��-SAnimCurveS�-	DefaultD�?�-KeyVerI�.KeyTimelм.�?.
KeyValueFloatf�?i.KeyAttrFlagsi!�.KeyAttrDataFloatf

�.KeyAttrRefCountiu4AnimationCurveLذ�-SAnimCurveS3/	DefaultD����K/KeyVerI�42�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�3q
KeyValueFloatfYdݟ��:ƾ8�E��D<�J`>��>��?�C?�Xd?�y?���?ւs?��N?s?�W�>0��=����D��ڐ�ݟ�E����Ⱦx�X����;žs>���>��.?c�Z?81x?���?~n?�QA?��?�En>�DA�t�������ݟ��
��v���ž�x|�bL��M>�=c��>Ѵ�>?3,?�\Y?���?���?�R?�y?u�>>�Ȗ�a�7�b ��c��F�Y;�y�=��>���>?��1?W>Q?�~j?}B{?���?d�?��{?}�u?�m?4�b?t?V?d_H?�"9?��(?e?�K?�I�>�F�>��>[^e>��>@��=$5<��o�O���a�7�a�7��3KeyAttrFlagsi!iaD74-KeyAttrDataFloatf 



h4KeyAttrRefCountiX
:AnimationCurveLH��-SAnimCurveS�4	DefaultD�����4KeyVerI��7�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1W9q
KeyValueFloatfYdD������Ѽ�5 ���,���9��F�}�P�.�Y�ve_��za���]�
�S���E���5��<%�HD�&
�F��D���g�G����ș�]'.�'=�
HK�W���^��za��]\�n?P���?�m�-�r�q�
�_�D�������2���������M��e%�?y1�J>���J�ЫV��za�F�c���Z�JMK���:�v�-��R(��c)��Y,�O�0�B�6�=��&D��FK�8R��'X��
]�NL`��za��6a�.q`��4_�k�]���[�/Y��qV�-�S�:^P�~
M�f�I�0F��{B�:�>��N;���7�V_4�$1���-��+��R(��R(��9KeyAttrFlagsi!iaD�9-KeyAttrDataFloatf 



:KeyAttrRefCountiX�?AnimationCurveL��-SAnimCurveSc:	DefaultD�%;@{:KeyVerI�d=�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�>q
KeyValueFloatfYd�-�AR��A��A�g�A:�AY��AxYqA�WAj[CA�=6A�1A9:A��PA�+rAh�A�h�A��Am�A���A�-�A�^�Aa�A�
�A��A4��Ay��A�dA�5IA	&7A�1A�=A�YA D�A<�A�U�A}�A�e�A�-�A�S�A�3�Ap��An��A�J�A�1�A�]�A4z�A0YfA�&JA�1Ax�+A�c?A=/bAƝ�A��A�D�A��A�>�A���A���A	�ADRsAB�bAySA��EA�4;A�4A�1A�!2A��3A}6AD:A@�>AY�CA�IAGPA WWA�^A��fA��nAZ5wA�Ae�AF�AOg�A�i�A�A�A*�A�D�A�D�A?KeyAttrFlagsi!iaDg?-KeyAttrDataFloatf 



�?KeyAttrRefCountiXAAnimationCurveL�	�-SAnimCurveS�?	DefaultD�?@KeyVerI�<@KeyTimelм.�g@
KeyValueFloatf�?�@KeyAttrFlagsi!�@KeyAttrDataFloatf

�@KeyAttrRefCountieBAnimationCurveL(p�-SAnimCurveS[A	DefaultD�?sAKeyVerI��AKeyTimelм.��A
KeyValueFloatf�?�AKeyAttrFlagsi!+BKeyAttrDataFloatf

XBKeyAttrRefCounti�CAnimationCurveL�-SAnimCurveS�B	DefaultD�?�BKeyVerI��BKeyTimelм.�'C
KeyValueFloatf�?QCKeyAttrFlagsi!�CKeyAttrDataFloatf

�CKeyAttrRefCounti]IAnimationCurveL�l�-SAnimCurveSD	DefaultD@M�@3DKeyVerI�G�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�Hq
KeyValueFloatfYdj��@�@�@lT�@�ر@_��@k��@1n@�zM@��3@�d"@=@�V'@\�D@�8o@DG�@@��@�N�@��@���@h��@���@Ы�@��@���@�̛@���@Fv^@�;@��#@=@�]+@ƄO@���@�S�@��@.��@4��@j��@��@wr�@��@IS�@U�@�r�@姖@�J�@*W`@�L<@=@j�@�'@^N@��x@E[�@�O�@Y��@PK�@ް�@霂@/u@DZc@�6R@��A@��2@J�&@�@=@��@��@��!@��%@H�*@>w0@�6@i>@��E@4�M@�MV@�^@��g@Щp@Z}y@z�@�S�@
i�@�K�@}�@�O�@�O�@�HKeyAttrFlagsi!iaDI-KeyAttrDataFloatf 



PIKeyAttrRefCountiX�NAnimationCurveL8]�-SAnimCurveS�I	DefaultD�����IKeyVerI��L�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1?Nq
KeyValueFloatfYdNE6���"���
����D�ʿ�񧿿����g��wE�%�0���)���6�̣[��o���겿'}�8	����3�/�JE6�g1�3#����4,�fCǿİ��O~��N�G2���)���;�3�i�i ��b9ȿ�u������,�NE6�5�N.�["�1U�
M�b�࿀���s��������P���)����c3��,c�����?���-��7����ñ�������7a���H��pj�PgT�
�B�[35�x�,���)�1q*�c,�΋/��3��R9��?��xG�zP���Y�9d�Кo���{�RL��S����鑿	���C���)��v���Ѵ��-���-��mNKeyAttrFlagsi!iaD�N-KeyAttrDataFloatf 



�NKeyAttrRefCountiX�TAnimationCurveLx��-SAnimCurveSKO	DefaultD`o�C@cOKeyVerI�LR�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�Sq
KeyValueFloatfYd{�B��B�B��	B�6B
m�A���Aݏ�A��A��A)��A��A�o�A���A^P�Ah�B��B
�BU�B|�B�LB��B�7Bu5
B�Bg��A���A ��A�Z�A)��A�*�A�N�A~��A/�B�"BRB�B{�B�B�[B^�B��B�s
B��B��A���A;x�AN�A)��A���A'u�A���A	6�A[�B�B lBp�BJV�A���Am��Al��A�.�A���A�u�A�T�A���A)��A���AB��A��AM��AD��A^q�A=D�A�_�A͸�A�E�A���A��Aú�A���AM��Av��A�_�A��A@�B%|B�B�BTKeyAttrFlagsi!iaDOT-KeyAttrDataFloatf 



�TKeyAttrRefCountiX�UAnimationCurveLH��-SAnimCurveS�T	DefaultD�?�TKeyVerI�$UKeyTimelм.�OU
KeyValueFloatf�?yUKeyAttrFlagsi!�UKeyAttrDataFloatf

�UKeyAttrRefCountiMWAnimationCurveL�}�-SAnimCurveSCV	DefaultD�?[VKeyVerI��VKeyTimelм.��V
KeyValueFloatf�?�VKeyAttrFlagsi!WKeyAttrDataFloatf

@WKeyAttrRefCounti�XAnimationCurveL���-SAnimCurveS�W	DefaultD�?�WKeyVerI��WKeyTimelм.�X
KeyValueFloatf�?9XKeyAttrFlagsi!sXKeyAttrDataFloatf

�XKeyAttrRefCountiE^AnimationCurveLX
�-SAnimCurveSY	DefaultD��p�?YKeyVerI�\�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�]q
KeyValueFloatfYd���>���>,��>�?��?3�?n+(?�	1?�7?	<?�=?��:?�I3?>�'?��?2.
?Y�>a.�>-:�>���>�>�A�>�{�>͔?N�??z ?�|,?9�5?M�;?�=?�9?X0?��"?t?Sd?;�>U{�>���>���>JL�>��>�+�>�i�>�V
?��?1H!?O�+?S�5?�=?��<?��.?�V?H��>�w�>���>9_�>$�>d�>t�>�I?�?Ko?7�'?c�0?ʗ7?V�;?�=?�/=?/+<?��:?�G8?`y5?/#2?�M.?�*?!K%?�4 ?��?�!?�C?�D	?�5?�U�>�l�>��>ۼ�>�@�>���>���>�]KeyAttrFlagsi!iaD^-KeyAttrDataFloatf 



8^KeyAttrRefCountiX�cAnimationCurveLx��-SAnimCurveS�^	DefaultD����^KeyVerI��a�KeyTimelX�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1cm
KeyValueFloatfX`ȿ�PĿ~���'��_���Z�¿ƿ�ʿ3ο��п]ҿпxX˿��ſ������x��n�ÿ��ƿȿd�ƿ�fĿ̲��',�������lÿA�ǿ��̿K�пZҿ%lϿ��ɿ"$Ŀ%���P]��5�¿�,ƿȿ�ǿ�cƿ$FĿ&¿0���V��l��̨ÿ��ǿ+�̿[ҿwѿlɿ��������ĿȿJQǿ�dſ@
ÿx��t�������¿��ſ{�ɿ@�Ϳ��п]ҿ��ѿHѿ��Ͽzeο��̿5�ʿJ�ȿ��ƿ4�Ŀ�Xÿ:¿u���X���=��y���.�����¿�zĿq7ƿȿȿIcKeyAttrFlagsi!iaD�c-KeyAttrDataFloatf 



�cKeyAttrRefCountiWiiAnimationCurveL��-SAnimCurveS'd	DefaultD@�@$@?dKeyVerI�(g�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�hq
KeyValueFloatfYdz"Aj5AK�JAX�aA��xA+‡AM5�A B�A�`�A�	�A���A���A$��A�A8�A*kAUaOA�8A�(A{"A�'AȒ4A�HA+�`A�{A��Al��A;N�AO��A���A���A\��Aq�A2kzA��ZA�&?At�*Az"A4##AJ�)AU5A$�DA�VA�PkA�r�Ae�AS
�A��A���AY��A��A�łA!uVA�-1Az"A�u%A��.A�X=AUaOA��cAN�yA(��A�A��A92�A���A���A
R�A�0�Au`�A��Ah�A�g�An�Aa�A�W�A`X�AU�A8vA�ttA-WiA�:^A=SA�zHAm>A�4A�*Az"Az"A�hKeyAttrFlagsi!iaD+i-KeyAttrDataFloatf 



\iKeyAttrRefCountiX�jAnimationCurveLH>�-SAnimCurveS�i	DefaultD�?�iKeyVerI�jKeyTimelм.�+j
KeyValueFloatf�?UjKeyAttrFlagsi!�jKeyAttrDataFloatf

�jKeyAttrRefCounti)lAnimationCurveLؼ�-SAnimCurveSk	DefaultD�?7kKeyVerI�`kKeyTimelм.��k
KeyValueFloatf�?�kKeyAttrFlagsi!�kKeyAttrDataFloatf

lKeyAttrRefCounti�mAnimationCurveL��-SAnimCurveSl	DefaultD�?�lKeyVerI��lKeyTimelм.��l
KeyValueFloatf�?mKeyAttrFlagsi!OmKeyAttrDataFloatf

|mKeyAttrRefCounti!sAnimationCurveL�m�-SAnimCurveS�m	DefaultD���+@�mKeyVerI��p�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1krq
KeyValueFloatfYde�]A�[A>cXA�UA@SAW�PA�dNA>�LAAKAeJArJA�JA`'LA�sNA�VQA��TA5�WAH�ZAN�\Ae�]Am�\A [A	�XAe�UAx�RA�OA��MA��KA tJArJA��JA�LA�xOA��RAoVA��YA�[\Ae�]A�^]A�~\Ai[A�YA��VA��TAdRA�OA�MA��KArJADJA
MA7�QA7�VA��[Ae�]AW]A��[A�ZA5�WA_cUAU�RAגPA�sNAb�LA�IKA�gJArJAw)JA�]JA�JAo&KAݶKA�bLA!(MA�NA��NA!PA�QAGRAtSA��TATVA�XWA��XA��YA#/[A�b\Ae�]Ae�]A�rKeyAttrFlagsi!iaD�r-KeyAttrDataFloatf 



sKeyAttrRefCountiX�xAnimationCurveLH��-SAnimCurveSws	DefaultD�
��sKeyVerI�xv�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1xq
KeyValueFloatfYd�0U�	�u�67��{Ԡ�1ʴ�1�����F�������k����g����������o�����K��A�z��g_��0U��]���t�aq��� ��c����������Y��0a���g����+���N����s&���o���^d��0U��W�y�b�Lv�� ��]����-������m�����r����g��'��.������KW���o��0U�
[��Ck�$��K��t͢�d��u������.��Q���;����g��12��.��n���T���T�������`L��K4�����ԫ��	n�����D}��_�������e��偂��t�kd��0U��0U�1xKeyAttrFlagsi!iaD{x-KeyAttrDataFloatf 



�xKeyAttrRefCountiXQ~AnimationCurveL��-SAnimCurveSy	DefaultD}f@'yKeyVerI�|�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�}q
KeyValueFloatfYd�3�@�`�@�D�@|h�@�T�@Ɣ�@д�@�C�@_і@u�@�.�@YX�@l͛@0�@ui�@%��@���@z��@�@�3�@���@���@FW�@2��@=8�@���@(�@���@F�@�.�@u~�@�ٞ@�4�@T��@���@�.�@՜�@�3�@���@�(�@u?�@PX�@��@�[�@^,�@�̮@ⲣ@�U�@�.�@@1�@���@�·@�%�@�c�@�3�@9n�@/��@�@���@
7�@���@ί�@0�@���@=�@h��@�.�@f��@�Ƒ@r��@�;�@b�@��@�7�@�ǥ@��@J�@�Q�@��@���@Ba�@� �@n��@,^�@M��@��@ٷ�@�3�@�3�@�}KeyAttrFlagsi!iaD~-KeyAttrDataFloatf 



D~KeyAttrRefCountiX�AnimationCurveL�'�-SAnimCurveS�~	DefaultD�?�~KeyVerI��~KeyTimelм.�
KeyValueFloatf�?=KeyAttrFlagsi!wKeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLx��-SAnimCurveS�	DefaultD�?�KeyVerI�H�KeyTimelм.�s�
KeyValueFloatf�?��KeyAttrFlagsi!׀KeyAttrDataFloatf

�KeyAttrRefCountiq�AnimationCurveL���-SAnimCurveSg�	DefaultD�?�KeyVerI���KeyTimelм.�Ӂ
KeyValueFloatf�?��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCountiуAnimationCurveL�R�-SAnimCurveSǂ	DefaultD�Y��?߂KeyVerI��KeyTimelм.�3�
KeyValueFloatf�J�?]�KeyAttrFlagsi!��KeyAttrDataFloatf

ăKeyAttrRefCounti1�AnimationCurveL���-SAnimCurveS'�	DefaultD�J� �?�KeyVerI�h�KeyTimelм.���
KeyValueFloatfW
���KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveLت�-SAnimCurveS��	DefaultD �Ͽ��KeyVerI�ȅKeyTimelм.��
KeyValueFloatf�`��KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL8�-SAnimCurveS�	DefaultD�?��KeyVerI�(�KeyTimelм.�S�
KeyValueFloatf�?}�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiQ�AnimationCurveL�1�-SAnimCurveSG�	DefaultD�?_�KeyVerI���KeyTimelм.���
KeyValueFloatf�?݈KeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveLX��-SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimelм.��
KeyValueFloatf�?=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�B�-SAnimCurveS�	DefaultDC@�KeyVerI�H�KeyTimelм.�s�
KeyValueFloatf��@��KeyAttrFlagsi!׋KeyAttrDataFloatf

�KeyAttrRefCountiq�AnimationCurveL�^�-SAnimCurveSg�	DefaultD�99��KeyVerI���KeyTimelм.�ӌ
KeyValueFloatf\�����KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCountiюAnimationCurveLX��-SAnimCurveSǍ	DefaultD��s�ߍKeyVerI��KeyTimelм.�3�
KeyValueFloatf
�s�]�KeyAttrFlagsi!��KeyAttrDataFloatf

ĎKeyAttrRefCounti1�AnimationCurveLX��-SAnimCurveS'�	DefaultD�??�KeyVerI�h�KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveL��-SAnimCurveS��	DefaultD�?��KeyVerI�ȐKeyTimelм.��
KeyValueFloatf�?�KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL8Z�-SAnimCurveS�	DefaultD�?��KeyVerI�(�KeyTimelм.�S�
KeyValueFloatf�?}�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLh?�-SAnimCurveSG�	DefaultD@��ݿ_�KeyVerI���KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9��
KeyValueFloatfp�z��
>�?k;@�n@6��@c�@b�@eT�@�<�@��%@A5�?�@'�E@�;w@r�~@B/9@�Q�?�?�ʁ>9k�?�Z@�'�@q�[@w�?�(?$.�?��G@%m�?k<"���U��Fe@b�J@���?)ka���Y2N�����m~?��`����h����dƙ�O�H���J�hԇ�O㫿$����
��G��"�d�X3��ψ�k<2��������:�Y�(���l�\�	�5�.�M������+��]R�m�_��Y��E��>=�2�E���<���!�&��X���ݿf1߿�S�rt�����	���z翚Mʿ�¼��N��	�������=�ο��‚������
�������iQ�-��!h��m� }��F����}��W$�<N6�jH���R��5[�(Ic��jf�	�f��&e��c��KeyAttrFlagsi!iaD_�-KeyAttrDataFloatf 



��KeyAttrRefCountioI�AnimationCurveL���-SAnimCurveS�	DefaultD��x�?�KeyVerI����KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9���
KeyValueFloatfp��ě?�?@�\����U��(����j���'�*?��()�g��������������������J�^�rϿ��L�����Q>���
����a�U��?��s=g�n��CY��8��I�?�8�>5��M�c��8����?D0F@Q��?�`O=�c�>Su8@˩�@AʃA� �@��E@Q��?/RT@�-�@�]�@��i@R$@��U@�m�@!j�@Vb�@���@K��@��@3v�?�v>��?Y�.@� u@���@�Q�@׋�@'��@���@E�@��@��@��@Ofp@�3f@�$M@�EP@P�s@N�~@
r�@���@,��@h��@��|@��y@�̀@W�@Uӄ@�B�@�W�@7�@X��@���@���@p�@�V�@�E�@E��@�"�@^��@Ų�@ݬ@y�@�r�@�@k�@|��@V�@p��@�.�@�q�@�q�@X��@��KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



<�KeyAttrRefCountio��AnimationCurveLx��-SAnimCurveS��	DefaultD��I�?��KeyVerI�X��KeyTimelp�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9?��
KeyValueFloatfp�mL?ӧ�??�>��b�Hՙ�;뙽��@~ĩ@���@��@��@�aS@�>4��EN�S���)	?�T@�K�@��@%YW@�������US��|	�W�4�}�l@���@";�@�'@)�E�`��n��<���g�9��?�lG@���@g�^@��9?��X��j���F���\��n���1տ
p���2���	��ѿ�	��CI�w�����Կ��O�Vp���:���'?p��?l��?�i.?2a�>�C�>)�?�1�?v��?�
@C&@G�,@��$@"3'@~ @6q�?)�?�ӛ?[z�?�xg>�H���lԿ�Iٿ����.�IJR��o��q~�%���ڒ���݄�ƻ���X���1���Fo�\4b�v�W��OS�Q�Q��cS���H�r?���D�	2Q�]�W���Z��6j�jw�:€�������������-������m�KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



�KeyAttrRefCountioU�AnimationCurveLh�-SAnimCurveSK�	DefaultD�?c�KeyVerI���KeyTimelм.���
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti��AnimationCurveLH}�-SAnimCurveS��	DefaultD�?èKeyVerI��KeyTimelм.��
KeyValueFloatf�?A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�{�-SAnimCurveS�	DefaultD�?#�KeyVerI�L�KeyTimelм.�w�
KeyValueFloatf�?��KeyAttrFlagsi!۪KeyAttrDataFloatf

�KeyAttrRefCounti*�AnimationCurveL���-SAnimCurveSk�	DefaultD@�H6@��KeyVerI��}KeyTimel�px�mLS�넭1��xVK�R���`$��1�H�
+����I�8j�2*�
FS5��2�҉��Me8`i��:��9��
���Ô�yvЬ��
�������Bo��@Z���KBk� ��Dž�O]��;��^����5�"��I�fي����k�'mp����t�I�}
?�
�"�
�=?��*�L�+�o��Fq[~�g�8�#ψ��R&�W$��i�������������}�/ꂂ�&�;�秂/�ğߌ��ηxv�U���w�������+[݋��3\�x?��n^���{�
p�`�����,k4,����aBڱJ�G>�v��]��:� �<P<�ŁOxk�������h,�i,��mQc}q�1�y/�R�A�7��7f�D�P�H������(�_��Z�<���%�h��6
�j䧱��j�,�YZ�8��f��-x�P�=�[���&���Ӽ���x���pW���$uNaS��m�~����2!��
�e�l�gN����e8�r����;�K��7�)^v+v���p�b���	щ���^��7x�#m��=�	l(���.��i�ݗ���������M���)Ž�����*��ϦV��N\�|��YuC=�?S���Ka��LOu`ہ���ƙ����$ױ����H:wo�a�s�FqW&'�L���3J�Sl��S)��Gь�c�qk�HF�2b0a�.%OF7
�q��'V<{�%$�6(�ܐ��N~!�BW�6�²$�vX���ty«X|���;��V�Ԓԍ�X_�m��߮�ژ�A,�����6y`��L>���s�i��u8W�~��a��:�a&<*+�2vx���5�Q{���
KeyValueFloatf���E�Aԯ�APX�A��A���A���A���A9��A�A�2�A��VA�V+A<E�@36�@��A:K
A�A�5A��aA��A<�Af��A��B�G!B��6BJKB��KB�	MB�'CB�Q:Bu�2B?,B�%B��B�B��B��BTB�BmeBmwB�TB|B��A`3�A�A��A�U�A �8Ak@z��Т	�e?�������N����?
��@OXSA���A�L�A���A��
B�'B�W@B�+BB��CB�LB�FVB�K\B�~cB��WB�#KB;�5B-�,B�'B�(B�()B�'Bb�&B�B9nB���AU�AQ�UA;��@���?M�:��4���U���j��y0�ӣ����ѿ
5�@�-"A��A�A��A�PA=[A⩘@塚�"N��U�	��$�s4C���h�}�d���#��/��ľl�i@�~z@C�@��?"璿�.6�Z�V�����
��v,�����S����q��~�/��̘���B���?�^]@n�@8�AK�IAW�Ax��A��A�G�A��A{�A���AP'�AG�A�B��B^�	B�B:B(BF�BKHB)B�TB�<B*BEOB1
B `B���A)��A�:�As��AA�mKeyAttrFlagsiX`!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD��6KeyAttrDataFloatf`)xc`�V^V^(L��G�c4= B`4?��Dj``�Vz�a�mKeyAttrRefCountiX`7?�AnimationCurveLX7�-SAnimCurveS��	DefaultD!�@��KeyVerI�)�}KeyTimel�px�mLS�넭1��xVK�R���`$��1�H�
+����I�8j�2*�
FS5��2�҉��Me8`i��:��9��
���Ô�yvЬ��
�������Bo��@Z���KBk� ��Dž�O]��;��^����5�"��I�fي����k�'mp����t�I�}
?�
�"�
�=?��*�L�+�o��Fq[~�g�8�#ψ��R&�W$��i�������������}�/ꂂ�&�;�秂/�ğߌ��ηxv�U���w�������+[݋��3\�x?��n^���{�
p�`�����,k4,����aBڱJ�G>�v��]��:� �<P<�ŁOxk�������h,�i,��mQc}q�1�y/�R�A�7��7f�D�P�H������(�_��Z�<���%�h��6
�j䧱��j�,�YZ�8��f��-x�P�=�[���&���Ӽ���x���pW���$uNaS��m�~����2!��
�e�l�gN����e8�r����;�K��7�)^v+v���p�b���	щ���^��7x�#m��=�	l(���.��i�ݗ���������M���)Ž�����*��ϦV��N\�|��YuC=�?S���Ka��LOu`ہ���ƙ����$ױ����H:wo�a�s�FqW&'�L���3J�Sl��S)��Gь�c�qk�HF�2b0a�.%OF7
�q��'V<{�%$�6(�ܐ��N~!�BW�6�²$�vX���ty«X|���;��V�Ԓԍ�X_�m��߮�ژ�A,�����6y`��L>���s�i��u8W�~��a��:�a&<*+�2vx���5�Q{л�
KeyValueFloatf���@�!@�S�lR��%7�A�������.�������¤� �J.žq;��uL•�Q��
LŒ�;�C�.�>U!�&
“���R����������l�t�	���h��a@U�A��vA��A?��A�SBiDB�TB��B�U�A+�A�B�A��Ati?}����#c�fj������|�¹R�dZ��v"€K%Œ��i�—u���������l���Z���%nn���X��7�T���������]�'��6O@֝A�xA���A�<�A!GB GBlq/B42HB6MBq�;B?))B,�B
��A���A��A�RAA�F�@e0@*A�>��\��	�2…��%�>䀔@�J�@�`AJ�&AZ�7A�&A3A��3A���A@�A��A�A��A���A���A}��Ay�XAV��@pr�@6�@�A��<A��lA-}A{A��{AY�A�1�A�8�A��A?��A`O�AGg�AE��A���A�[�A�<�Am&�A�-�A�9hA�FABL$AE�AG�@7s�@6�@c2[@��?@)h@���?��?#9#?��f>yQO�
�%��ʈ���ȿh���ѹ�d������Y$���ٿ]G�������'b�U�U�!6E��2D��pR�V�mKeyAttrFlagsiX`!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD��6KeyAttrDataFloatf`)xc`�V^V^(L��G�c4= B`4?��Dj``�Vz�a2�mKeyAttrRefCountiX`7T�AnimationCurveL���-SAnimCurveS��	DefaultD��&Q���KeyVerI�>�}KeyTimel�px�mLS�넭1��xVK�R���`$��1�H�
+����I�8j�2*�
FS5��2�҉��Me8`i��:��9��
���Ô�yvЬ��
�������Bo��@Z���KBk� ��Dž�O]��;��^����5�"��I�fي����k�'mp����t�I�}
?�
�"�
�=?��*�L�+�o��Fq[~�g�8�#ψ��R&�W$��i�������������}�/ꂂ�&�;�秂/�ğߌ��ηxv�U���w�������+[݋��3\�x?��n^���{�
p�`�����,k4,����aBڱJ�G>�v��]��:� �<P<�ŁOxk�������h,�i,��mQc}q�1�y/�R�A�7��7f�D�P�H������(�_��Z�<���%�h��6
�j䧱��j�,�YZ�8��f��-x�P�=�[���&���Ӽ���x���pW���$uNaS��m�~����2!��
�e�l�gN����e8�r����;�K��7�)^v+v���p�b���	щ���^��7x�#m��=�	l(���.��i�ݗ���������M���)Ž�����*��ϦV��N\�|��YuC=�?S���Ka��LOu`ہ���ƙ����$ױ����H:wo�a�s�FqW&'�L���3J�Sl��S)��Gь�c�qk�HF�2b0a�.%OF7
�q��'V<{�%$�6(�ܐ��N~!�BW�6�²$�vX���ty«X|���;��V�Ԓԍ�X_�m��߮�ژ�A,�����6y`��L>���s�i��u8W�~��a��:�a&<*+�2vx���5�Q{���
KeyValueFloatf���4��`T���у��c���Lz�s��k�C!c���Y�t�R��J�frF��$A��H@�s{J�uYš�iœ'q��w¶
}��=�����©
��6�����šO� ��²��±�lu��3g�“Y��LVŠsS�1B`�-!g��Fg��Yg�Nre�5jd�t�b�2�a™�i�6"p�6g��?w��^��½Иœ��”��А�Ef��B?��-���?���y�&4q��8ršwr�arž�p���t�`Vz�5�~‰���_߃�YI�–�Ž�y€Cr�m��Lj��g��l–Ku�g�v���w��y��G{��l���3�������€��9��´ԃœ��K��Ҁ�
�y�_Nw�n_t|���’݅��7��C|��?���-���m�­f��I}�+r��f��ZX�s�I��[Aˆ^O�]Uf��k|¯=������@�y��!r�_�k���d�N�_���Y��QV�[HW�ĭX��cY��\�K�c�<Rk�Jwq�J
x�%[��цl��L�™��—ӎ��<��]�����������	���Ԓ�ϧ���l��F
�€��¬;�»�­c��{{�������ʚ��kV�����(X����ٗš���� ��cW���J��]2��k�mKeyAttrFlagsiX`!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD��6KeyAttrDataFloatf`)xc`�V^V^(L��G�c4= B`4?��Dj``�Vz�aG�mKeyAttrRefCountiX`7��AnimationCurveL��-SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimelм.��
KeyValueFloatf�?@�KeyAttrFlagsi!z�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS
�	DefaultD�?"�KeyVerI�K�KeyTimelм.�v�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountit�AnimationCurveL���-SAnimCurveSj�	DefaultD�?��KeyVerI���KeyTimelм.���
KeyValueFloatf�?�KeyAttrFlagsi!:�KeyAttrDataFloatf

g�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD@(�&���KeyVerI����KeyTimel��x�X�w𛘫)W׏���ӕv��\�H]8��:4�����v�9����"�u�<�"�[B��U���EW{$�H�a����罿^���i��mO���V��9�z}	4
��CE��-L"�O����m�Dǔ�¡�wtl4ˋ �*�&����:��N��+����=5++�!�D�2�S���L+��?0��c=s]���B|��S�>=�J�dZha��f�/�o��%�h:�ⲀX@	���g��ᘻ�g!q�p�j�T�ptKr5��A��Õȯgy��B�U�x�T,��ܶ90�u�Z�*�g�-P�k����L��T�<7b�G�;T{{B��-o�o5p��<�=ȇK�?����B���0��%�Q=��pF�g-,��#���b(KUF�~�Xi��1p�)v��_~f�\���g_���^^�W�7�ꚮ
�o���?�&�ᚢ�5��UgO_������Y�[��Ю����
3�4J�m���B�ơv�S2}��m:aٟ�?`��q7�<�����al��>����),��@s��N�Qmr�:����R�ᅽ�Ѱ�3�����`Ȃv5p<Y
�I�p�i�]x.��
�r�nD��}P��胬�~���N@9}�	d����us�����S�n5g�"b�Ҩ��������]L�5��	�~OD�v(f;�]��3��a�����`>�EMA�������VK��C�~[�lxR2=�Ԥ·}����,�1&|����eΰ�;��T^aIx�+�q��;|�v�J2�PpjKG0�j�V�ﻒ�e�0����>~�!0�N&��R��]�,��ˆ���s���p���������,�iHk��"���Zaqz����~	;����D��
�E����)u4���h�e/`xʎul☙[5������_Jٕ^s�W:x�w�v���m�0s�Q6���T���0L{|[�M��O�A�#�	*�q��!�F���K���ò���O�w�%&���@�@J7��,���(�>i���P۫
�%D��r�zGߔ��75��y,ݟX���?2���3�D�(i\g����ϸ�Ĝ֊��_�x�1s��i�i�{V�"��V/�A*d��r���(�
����1���cf@y՝���/�Xw%!&r���K�"�r��<���xi�~�!m�Y�n��]��
KeyValueFloatf��BA4�%d����v=�3�@*ͩ@�™@��k@�?�gJ�I���D%���(�#S���Q���8w��cG���*��ҳ��q�m�5�ۿ)�,��9@���@8�1A�]VA�mA.A�d�@��(@k�K�'����6��Z����̌��s������z6��sd���|��2����������4��w������!i�j�!�5�.€|=��#N���`���t��b�¿Ő�LZ��@˧—Ȳ�s���~��I���dž��8������fc����×��\ný�����UR���Q���.�¤���5���Q������C�¥� ��{O��)��da���‘z�ql�P�T�bJC�F�5��!¹e¦:��_~���_���L���/��a�u�6Ee�5�=�z)�wi��@	��:�ğ?8�@�@6F��������_D��������l���(V��e�����������E����������z�������w��`�"�g/�7K<��OJ�	�X�Y�g���v»͂�z��µː��5�¡(��rI�³,���������)Y���h��	����Ś�g���>3�¬^��9�r��I[�[�H�ֺ9�V[#�(�¿���u��O��c��������F��Kt��[����$��������\W�k�������f���]h��H���W���"�������>��ev������sB��p�	›��K�¬�¢�¡��²�“�g)��89��������Vȱ�fے�?R���`�+���@�@MI@">�d.�&������`�������J�����P��#*�#�	�}_ҿh�����C=c������=�a>pl�>ף�?_G@@��@�&@[��KeyAttrFlagsi6�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD��mKeyAttrDataFloatf�`











































































































���KeyAttrRefCounti6�
;r�AnimationCurveL��-SAnimCurveSI�	DefaultD� �a�KeyVerI�-��KeyTimel��x�X�w𛘫)W׏���ӕv��\�H]8��:4�����v�9����"�u�<�"�[B��U���EW{$�H�a����罿^���i��mO���V��9�z}	4
��CE��-L"�O����m�Dǔ�¡�wtl4ˋ �*�&����:��N��+����=5++�!�D�2�S���L+��?0��c=s]���B|��S�>=�J�dZha��f�/�o��%�h:�ⲀX@	���g��ᘻ�g!q�p�j�T�ptKr5��A��Õȯgy��B�U�x�T,��ܶ90�u�Z�*�g�-P�k����L��T�<7b�G�;T{{B��-o�o5p��<�=ȇK�?����B���0��%�Q=��pF�g-,��#���b(KUF�~�Xi��1p�)v��_~f�\���g_���^^�W�7�ꚮ
�o���?�&�ᚢ�5��UgO_������Y�[��Ю����
3�4J�m���B�ơv�S2}��m:aٟ�?`��q7�<�����al��>����),��@s��N�Qmr�:����R�ᅽ�Ѱ�3�����`Ȃv5p<Y
�I�p�i�]x.��
�r�nD��}P��胬�~���N@9}�	d����us�����S�n5g�"b�Ҩ��������]L�5��	�~OD�v(f;�]��3��a�����`>�EMA�������VK��C�~[�lxR2=�Ԥ·}����,�1&|����eΰ�;��T^aIx�+�q��;|�v�J2�PpjKG0�j�V�ﻒ�e�0����>~�!0�N&��R��]�,��ˆ���s���p���������,�iHk��"���Zaqz����~	;����D��
�E����)u4���h�e/`xʎul☙[5������_Jٕ^s�W:x�w�v���m�0s�Q6���T���0L{|[�M��O�A�#�	*�q��!�F���K���ò���O�w�%&���@�@J7��,���(�>i���P۫
�%D��r�zGߔ��75��y,ݟX���?2���3�D�(i\g����ϸ�Ĝ֊��_�x�1s��i�i�{V�"��V/�A*d��r���(�
����1���cf@y՝���/�Xw%!&r���K�"�r��<���xi�~�!m�Y�n�����
KeyValueFloatf�����jl��������2p�e�1�>T��:��|����Y��y�����7��d,ž�D��uN�k7=‡�'��?�Bx��������Sx���K�O'��������������G���
�hZ,��I�t����J�����}�p�™L!�$�;�}�Hž�U�Yk�l�{�J����Ÿѝ�
���ӡ��n������{@��T��?6��s���{�Ž���:�–t�¬���N���uȮ��î�/���9���NT���֭�GS��0��®ȭ�q���6#���E���`���t��)���Z��’���+|�m��;Y�¯?��r!��Tح�9��”"��3���QQ���p��q��±��ƒ���פ�������:���`���݀��h�h[N�S�6�&%�B
�Pn����������7o���=���!��.���ʰ��-*£	�5�~���*����p��#­�?�]�P�x,j¢ց�*���"��¿�‡(��sz��^P��r�¤���†��ۮ�{!���Y��׆�’����Ư�g�¤�”��N$��)�Œ'�„!�����q����ί�����f��*��9��?]�ɭ��1�›���˪�{���L�����o�ž��ƒ8x¼bW€�=��$¸�'	+�f&B��
Q�VT���C�]06‚<E�@6]�ibe��^�E�L���1�`�¼?���e��hM��e�����rq	������ԟ�=���\�U��u����s�����2���Yp��Tr��`���=���j��jo��Cq���_�����y3��3������#��A���Q���:˵�CC��?��Zh{��U_�F�I�H~;�x�2�Dr.���,� +�R�)�P}+�N�-�E�-����KeyAttrFlagsi6�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDd�mKeyAttrDataFloatf�`











































































































e��KeyAttrRefCounti6�
;��AnimationCurveL���-SAnimCurveS��	DefaultD��C@��KeyVerI����KeyTimel��x�X�w𛘫)W׏���ӕv��\�H]8��:4�����v�9����"�u�<�"�[B��U���EW{$�H�a����罿^���i��mO���V��9�z}	4
��CE��-L"�O����m�Dǔ�¡�wtl4ˋ �*�&����:��N��+����=5++�!�D�2�S���L+��?0��c=s]���B|��S�>=�J�dZha��f�/�o��%�h:�ⲀX@	���g��ᘻ�g!q�p�j�T�ptKr5��A��Õȯgy��B�U�x�T,��ܶ90�u�Z�*�g�-P�k����L��T�<7b�G�;T{{B��-o�o5p��<�=ȇK�?����B���0��%�Q=��pF�g-,��#���b(KUF�~�Xi��1p�)v��_~f�\���g_���^^�W�7�ꚮ
�o���?�&�ᚢ�5��UgO_������Y�[��Ю����
3�4J�m���B�ơv�S2}��m:aٟ�?`��q7�<�����al��>����),��@s��N�Qmr�:����R�ᅽ�Ѱ�3�����`Ȃv5p<Y
�I�p�i�]x.��
�r�nD��}P��胬�~���N@9}�	d����us�����S�n5g�"b�Ҩ��������]L�5��	�~OD�v(f;�]��3��a�����`>�EMA�������VK��C�~[�lxR2=�Ԥ·}����,�1&|����eΰ�;��T^aIx�+�q��;|�v�J2�PpjKG0�j�V�ﻒ�e�0����>~�!0�N&��R��]�,��ˆ���s���p���������,�iHk��"���Zaqz����~	;����D��
�E����)u4���h�e/`xʎul☙[5������_Jٕ^s�W:x�w�v���m�0s�Q6���T���0L{|[�M��O�A�#�	*�q��!�F���K���ò���O�w�%&���@�@J7��,���(�>i���P۫
�%D��r�zGߔ��75��y,ݟX���?2���3�D�(i\g����ϸ�Ĝ֊��_�x�1s��i�i�{V�"��V/�A*d��r���(�
����1���cf@y՝���/�Xw%!&r���K�"�r��<���xi�~�!m�Y�n��[��
KeyValueFloatf��m�@���?��>������<��g@��@+�A� DAq�AT�A���A��A)��A\/�AGU�A"��A���A��AW�AYpvA�F>A�P�@Mo@��㿖h��xiĿ�	��U�.���A�U�81���`?gOR@�@��!A�FA/^mA�ÌA��Ak�A���A;��AJ�AHPB�tB�$B{�7BO7CB�PB��^BboB��B��BI�B-L�B^ܬB�I�B�C�Bp��BB��B?�Bb��BO��B&C+�C��C�C^QC��
Ce
CS�C5�C���By��BJ��B~��BѰ�Ba��B�d�BD*�B�E�BԽ�B��BL1�Br�BK,�B�Y�B�$�B�@oB�
bBشNB��7BD$BߐBB�F�A�S�A1R�A�J�AoW�AR�A��A��TA�)Al6�@Y�[@I+?���?��@�,@0�P@��o@���@P��@�A��@A=kA]ˋAZ��A���A���A���AK2�A��B��B�<7BxDB?�RBE>aBHupB~�BM��B�K�B��B�B�.�B�@�B���B%��B-��B���B:��Be��B���BVL�B�<�B:W�B�w�B���B ��B��B?z{Bp�hBUYBafBB�r2B{uB�Bǁ�A��A���A��AW��AB�A�maA/}JA؁4Az�bAaOmA�VlA���A
D�A��A���A���AA��A��A�YqA�FA�N0A��AY?A��2A�iMA(�bA�.jA�mAnnA�fA��_AV�YA�"OA.AA#�1A?A�cAd!A�AA+ A%7/AW�@AƣHA*JAl�MAn�PA�PAp�GA�9A��)AT�A�g�@L�@aE�@޺�@�܆@�b@�J@�i;@U50@�$@V�@X�@��@�@Y��KeyAttrFlagsi6�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD��mKeyAttrDataFloatf�`











































































































���KeyAttrRefCounti6�
;Q�AnimationCurveLo�-SAnimCurveSG�	DefaultD�?_�KeyVerI���KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti��AnimationCurveLX��-SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimelм.��
KeyValueFloatf�?=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLhT�-SAnimCurveS�	DefaultD�?�KeyVerI�H�KeyTimelм.�s�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLh�-SAnimCurveSg�	DefaultDjC��KeyVerI�(�KeyTimelq�м.�x;�G���u ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9�
KeyValueFloatfq�P���}ݿ�翢�� ��/�[����9��Rk��p�>��T?�ĕ?���?H�?{E?�h�>�dU=7����tk�{�����$��b࿲}ۿ.�������w�����>p�?�k�?[��?��?4K"?�����T?���;���Q�����,��o�˿�`忺��)�Φ޿>Q���E׽�?ij�?���?+�S?k�T?���>b�C!G��6Ծ��N���>��������>�9?�
Q?m�+?l8�>��̽�G��"V�O6���.���ѾGwX��LԼc�Y>7�>�+?��=?'GJ?�c ?���>̱>-=�>�S+?���?Y��?r԰?���?�}�?�?���?�|�?�Z�?���? v�?�]n?m�R?�mP?
5Q?E?�1?HT?��>�Q?>Y��=�/=A��=�L>�m$>��K>��u>z�z>�y�>4�>IKeyAttrFlagsi!iaDx��iaD�MKeyAttrDataFloatf@







�KeyAttrRefCountin�
AnimationCurveL(��-SAnimCurveSO	DefaultD`�@gKeyVerI��KeyTimelq�м.�x;�G���u ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9�	�
KeyValueFloatfq�+x�@ڔ�@��@�@��@���@��@&�1@��?��?%�ž_f�ĕ���?��mW�iI�>��	�:څ?��@��@bd�@��A|��@y��@���@Ċ�@�@��Z?#@��.���f���e_��A(��!�"�z
�9,@T^@���@R��@e��@_�A>�A}LA��
A�|A��@��]@��?	z����d���e�����*�?�^�@u��@%�@�{�@v+@���?
Ƒ?�9�����H�>��6?���?{4Y@�r@�
M@L�f@y@��L@}�@ѷ@P��?�q6?S��>/��>xa�>ڝ?�
@Pq@��@���?�(�����f���a�Y��F���Ԏ�ҭ���k���u��H���Ó������V���u���>��b���g���W��e���{�<�,T�ޥ����s!��֡��
��]�4k�˻��?�1
KeyAttrFlagsi!iaDx��iaD�
MKeyAttrDataFloatf@







�
KeyAttrRefCountin�AnimationCurveLH��-SAnimCurveS7	DefaultD��d�?OKeyVerI���KeyTimelq�м.�x;�G���u ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4 9
5ȷ�h5p6��5�O 6�3|6h���61�37��]�7`.!�7��F8�+��8X�k�8)/Z9���9��
KeyValueFloatfq�&�?�W?��v����js����EGP�]m&�EU��[�����B@��1����=S��>:��?�P����#��n|��{��=Ճ�Bق�J+��E��B����$@E��@Gg	AtKA�A%
A�?A���@Pra@E�7�|:��0�����������|�6O�
��x���W@���@��As�%A]+AA�3A�BA)A��n@Ncm?r�5�\B����`?��@�&�@Z�A�$A�k�@���?�㢽]-��ws+������=�"u�QN�ڙþ��W?��?rI�?o��?'�e?�-O?2,?������:�a���:��`���08��-��c
_�[�f�kj>�u[?N �?�V@��=@}��@	��@��@tj�@�L�@� �@�}u@�
Q@H$@���?���?��`?�4?B1s>�1>Հ>w1�>H��>=p?��?KeyAttrFlagsi!iaDx��iaD�MKeyAttrDataFloatf@







�KeyAttrRefCountin)AnimationCurveL���-SAnimCurveS	DefaultD�?7KeyVerI�`KeyTimelм.��
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti�AnimationCurveL�8�-SAnimCurveS	DefaultD�?�KeyVerI��KeyTimelм.��
KeyValueFloatf�?KeyAttrFlagsi!OKeyAttrDataFloatf

|KeyAttrRefCounti�AnimationCurveLz�-SAnimCurveS�	DefaultD�?�KeyVerI� KeyTimelм.�K
KeyValueFloatf�?uKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLJ�-SAnimCurveS?	DefaultD`Q��WKeyVerI�@�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�q
KeyValueFloatfYd����6F�>��?$?�?�@��;@>�`@���@o%�@�h�@m_�@H�@T��@��_@Q�.@K��?-�?��?��=����$2A=��>�Wy?=W�?��@'F@	rp@�x�@?֔@m_�@��@�@�GN@V�@���?��6?(>����a�v�y>k��>��]?���?��?5"@�H@m�n@��@m_�@5��@	i�@�@��]@�Y6@�k@:�	@��?�D�?��?߂?-�C?��??=�>z�>|��<jD~�ˈ��綣�#�B�R_�;��=	.$>���>��>?��"?�dG?��m?���?��?~]�?���?p
�?���?-�@>�
@�b@�k@�k@�KeyAttrFlagsi!iaDC-KeyAttrDataFloatf 



tKeyAttrRefCountiX!AnimationCurveL���-SAnimCurveS�	DefaultDN�0��KeyVerI���KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1c q
KeyValueFloatfYdp
���:����y�t�p�v�g���^�l�V�uO��I��NF�E�~YG��M���V�3�a��m�>�w����!׃�p
��3
���T��յz��q�_�f��t\��S�C�K���F�E�73H��O�/�Z�'�f�zjs�Aq~��A��p
��0ф�:x���-��A|���t�;�l��md�X�[���S�i�K�E���B�ʶF�űN��aX�5ua�H�g�=zk��uo��ps�fWw��{��~�����E���l���K��ل�p
����������b������N��$���~ԁ�����$
��y~�|���y���w��u��es��<q��o��m�fk��Gi�H�g�H�g�� KeyAttrFlagsi!iaD� -KeyAttrDataFloatf 



!KeyAttrRefCountiX�&AnimationCurveL�g�-SAnimCurveSo!	DefaultD�lj6��!KeyVerI�p$�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�%q
KeyValueFloatfYdfS���J��h����6������v����¬Gµ��E��
�����s�	‰j�p��2(������N.�����fS���v��N���΀������S3������&V�Ss�Xz�
�™%�^��F���\������������fS������@��Ds�����!����V��Q���m������=�
��gs¬����«���P���K���&�����p���3�����h����������ط��f��wܳ�fS�����p4��A�������h���r��D���"I�������������Y���F��3�����������.��^�����'����K���K��)&KeyAttrFlagsi!iaDs&-KeyAttrDataFloatf 



�&KeyAttrRefCountiX(AnimationCurveL�n�-SAnimCurveS'	DefaultD�?'KeyVerI�H'KeyTimelм.�s'
KeyValueFloatf�?�'KeyAttrFlagsi!�'KeyAttrDataFloatf

(KeyAttrRefCountiq)AnimationCurveL���-SAnimCurveSg(	DefaultD�?(KeyVerI��(KeyTimelм.��(
KeyValueFloatf�?�(KeyAttrFlagsi!7)KeyAttrDataFloatf

d)KeyAttrRefCounti�*AnimationCurveL�m�-SAnimCurveS�)	DefaultD�?�)KeyVerI�*KeyTimelм.�3*
KeyValueFloatf�?]*KeyAttrFlagsi!�*KeyAttrDataFloatf

�*KeyAttrRefCounti�,AnimationCurveL�,�-SAnimCurveS'+	DefaultD`�I@?+KeyVerI��+]KeyTimel
P�(�L@���xb�`�A� V!���"�y]�#H� 4$�v�$����$�+5
KeyValueFloatf
(> �@8�@��@f.�@ �@�С@ٽ�@��@�*�@�^�@),KeyAttrFlagsiiaDc,KeyAttrDataFloatf

�,KeyAttrRefCounti
�0AnimationCurveL�R�-SAnimCurveS�,	DefaultD����?-KeyVerI��.�KeyTimel9�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%X���-�/�
KeyValueFloatf9�Φ?�`�?&�?��?��?���?�p�?�?��?�Ĵ?��?���?`D�?�d�?_)�?g̬?H��?r��?�L�?Φ?�7�?LV�?}��?���?I�?�7�?�#�?U��?���?��?Ya�?Ͳ?N��?��?�{�?@5�?���?Φ?���?-t�?Mf�?稩?�(�?yҬ?2��?X�?��?Ƥ�?��?o�?~�?w�?���?kƩ?���?O�?W��?-0KeyAttrFlagsi!iaDw0-KeyAttrDataFloatf 



�0KeyAttrRefCounti8M6AnimationCurveLx��-SAnimCurveS1	DefaultD���5�#1KeyVerI�4�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�5q
KeyValueFloatfYd����-���lY������"�������<����H·8…F‹_
�nF���´I�������_������}j�������Ȳ��a������\��K���������D�	•…F�y��!o��z������j������C�������Q��w���*ݻ������(���������
�����Ž�	…F�y��F
�0���������4�������A��������
��H������{���d޶��ѳ�ˉ��t������9ԯ��u��,y��(ֲ�����g|��^���]'��?ʽ�ޕ�������������Ǹ����������{�������R���5J��4���4����5KeyAttrFlagsi!iaD6-KeyAttrDataFloatf 



@6KeyAttrRefCountiX�7AnimationCurveL�v�-SAnimCurveS�6	DefaultD�?�6KeyVerI��6KeyTimelм.�7
KeyValueFloatf�?97KeyAttrFlagsi!s7KeyAttrDataFloatf

�7KeyAttrRefCounti
9AnimationCurveL���-SAnimCurveS8	DefaultD�?8KeyVerI�D8KeyTimelм.�o8
KeyValueFloatf�?�8KeyAttrFlagsi!�8KeyAttrDataFloatf

9KeyAttrRefCountim:AnimationCurveL�3�-SAnimCurveSc9	DefaultD�?{9KeyVerI��9KeyTimelм.��9
KeyValueFloatf�?�9KeyAttrFlagsi!3:KeyAttrDataFloatf

`:KeyAttrRefCountiy>AnimationCurveL86�-SAnimCurveS�:	DefaultD��@�:KeyVerI��<�KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�=�
KeyValueFloatf8��G�@~�@���@���@�&�@�#@�%q@�e@݁[@�EU@^	S@CW@�a@�q@�	�@�ʋ@��@�ޜ@2D�@�G�@ߙ�@
�@�Z�@b=�@�n�@NR{@�Nk@�G^@4�U@\	S@͉X@a�e@�7x@p��@�0�@?��@�I�@�G�@��@�@�˝@,��@��@���@!w�@(Ez@�l@ֹ^@]	S@�RT@Jh@��@T��@�0�@�G�@�G�@�=KeyAttrFlagsi!iaD;>-KeyAttrDataFloatf 



l>KeyAttrRefCounti7�BAnimationCurveL�i�-SAnimCurveS�>	DefaultD����?�>KeyVerI��@�KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�A�
KeyValueFloatf8�5T�?/I�?$Ҕ?w��?�t?�Y?�A?-�,?�p?��?`�
?��?�q'?lsB?�ub?��?��?��?�ڨ?4T�?�n�?L��?��?�?Рq?(YS?M�7?:!?�l?`�
?Q?=..?��M?oSr?9b�?�s�?�*�?4T�?���?ȧ?�#�?E�?+��?h�?~�j?��Q?��8?��!?_�
?+?�2?we?M��?���?4T�?5T�?�AKeyAttrFlagsi!iaDGB-KeyAttrDataFloatf 



xBKeyAttrRefCounti7�FAnimationCurveL��-SAnimCurveS�B	DefaultD��;��BKeyVerI��D�KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�E�
KeyValueFloatf8�����	����K���U��@5��Yj���u���ט���������
��3������p�����Ѽ�����%���������:P��	����I��*���r/��ղ���M���	��E����
��C��w`��e}��y���������`q�������+��"���w��m$���g�����b��N���̝��Z���
���������E+��b����s����������	FKeyAttrFlagsi!iaDSF-KeyAttrDataFloatf 



�FKeyAttrRefCounti7�GAnimationCurveL(F�-SAnimCurveS�F	DefaultD�?�FKeyVerI�(GKeyTimelм.�SG
KeyValueFloatf�?}GKeyAttrFlagsi!�GKeyAttrDataFloatf

�GKeyAttrRefCountiQIAnimationCurveLؿ�-SAnimCurveSGH	DefaultD�?_HKeyVerI��HKeyTimelм.��H
KeyValueFloatf�?�HKeyAttrFlagsi!IKeyAttrDataFloatf

DIKeyAttrRefCounti�JAnimationCurveLx��-SAnimCurveS�I	DefaultD�?�IKeyVerI��IKeyTimelм.�J
KeyValueFloatf�?=JKeyAttrFlagsi!wJKeyAttrDataFloatf

�JKeyAttrRefCountiIPAnimationCurveL(
�-SAnimCurveSK	DefaultD �}�?KKeyVerI�N�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�Oq
KeyValueFloatfYd��?�P/?Q{`?���?j�?f��?���?y�?1��?�d@P]@��@~��?�C�?l�?Gq�?�hk?L-6?��?��?K?!).?��[?��?��?p=�?p�?���?3@P]@'�@���?c��?�1�?��?GLF?0?��?4w?��?�/?K�R?��|?Ǖ?ﭮ?��?M��?�'�?P]@�d
@��@���?�U�?u=�?tj�?y��?�T�?x��?�{l?
�T?�>?�K+??�?z�?��?\�?��?��?�?��?J�#?e.?�o9?"�E?�R? D`?�Pn?k�|?���?�܌?e�?��?[��?@��?��?tj�?tj�?�OKeyAttrFlagsi!iaDP-KeyAttrDataFloatf 



<PKeyAttrRefCountiX�UAnimationCurveL�J�-SAnimCurveS�P	DefaultD��a��PKeyVerI��S�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1+Uq
KeyValueFloatfYd��(#������������������ȳ�����
y���ѧ��ަ�\���$3��j��l��������O5���0�������8K���(����������7��pA��R�������ަ� 5��N��_ܶ�����������H����۵�����.���X��)��������3������j���٫��ަ�i���uU��R|�������6��T���ݡ��1������mf��_���;�����������x��ܮ��������"�������������U��Z���I���C��^t������<��2��Y��I|����������v����C��+���{
��T���T���YUKeyAttrFlagsi!iaD�U-KeyAttrDataFloatf 



�UKeyAttrRefCountiXy[AnimationCurveLX��-SAnimCurveS7V	DefaultD ��3�OVKeyVerI�8Y�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�Zq
KeyValueFloatfYdA���/w����;:��"�������s����1������o�sz�w��c!������J��A"�����BX��N��A�������:&��K������y���q���Z��>�x<�sz˜���~��YU��)���K��a������A����A��bv�������/��)����P��	���"l�����	�sz�x*�1��`������C���$���۩�����>������k���H����
���+����������:��A���ȟ�m���u��4ڢ�����3���B٨��X���	����k���������K��yz�����������������A��$���$����ZKeyAttrFlagsi!iaD;[-KeyAttrDataFloatf 



l[KeyAttrRefCountiX�\AnimationCurveL��-SAnimCurveS�[	DefaultD�?�[KeyVerI�\KeyTimelм.�;\
KeyValueFloatf�?e\KeyAttrFlagsi!�\KeyAttrDataFloatf

�\KeyAttrRefCounti9^AnimationCurveL��-SAnimCurveS/]	DefaultD�?G]KeyVerI�p]KeyTimelм.��]
KeyValueFloatf�?�]KeyAttrFlagsi!�]KeyAttrDataFloatf

,^KeyAttrRefCounti�_AnimationCurveL(|�-SAnimCurveS�^	DefaultD�?�^KeyVerI��^KeyTimelм.��^
KeyValueFloatf�?%_KeyAttrFlagsi!__KeyAttrDataFloatf

�_KeyAttrRefCounti�cAnimationCurveL�=�-SAnimCurveS�_	DefaultD�@��?`KeyVerI�b�KeyTimel;�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%�ny�&X���-T��-H͐�/c�
KeyValueFloatf;�:�?p��?@n�?���?@��?c9�?ވ�?��?���?��?���?r@�?;��?��?���?T
�?��?U��?���?��?ɳ�?[��?��?��?���?���?t��?2-�?�F�?���?�p�? �?e�?���?@�?�=�?��?%��?Q>�?�y�?x��?��?D`�?X��?���?�;�?o��?�{�?�
�?���?�o�?���?��?0p�?���?���?�?���?���?AcKeyAttrFlagsi!iaD�c-KeyAttrDataFloatf 



�cKeyAttrRefCounti:�hAnimationCurveL�j�-SAnimCurveSd	DefaultD�X��?7dKeyVerI��fMKeyTimelH@м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%(\*�+���,�V8*-X���-�҂=.PQF�.�N�P/H͐�/��d0�g-
KeyValueFloatfH Ɗ7?;?C�??FE?�0J?JO?�S?\jW?0�Y?=�[?z%\?�![?�fX?XxS?ӄM?�$G??�@?��;?�8?��7?N�8?��;?{p??��D? �J?�WP?#qU?��Y?�[?0\?�Z?.W?cVQ?Z�J?|�C?tQ=?m�9?��7?�8?fn9?�;?�>?	�B?8G?z�K?�P?IDU?
cY?��\?��]?vZ?J�T?bN?�H?�D?�B?�+A?�??��=?$r<?�;?��9?��8?��8?$I9?V�;?`_<?�>?��>?�@?׏A?�&C?
hKeyAttrFlagsi!iaDWh-KeyAttrDataFloatf 



�hKeyAttrRefCountiG-nAnimationCurveL8Q�-SAnimCurveS�h	DefaultD�+�5�iKeyVerI��k�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1wmq
KeyValueFloatfYd\������h�������8���'(���G�������	��
�b���»l��i���v�������C���W�������
�������������������P
�$l�	���
�ָ����������_�������~��U���}y���ϳ�#2��&������J�������v������]
���6]‰�
�s0�������x���,_���9���B��n����5���K��e��O��~��ѵ��+B��m�������흯�&���U��3���~�������Bx��3%��{����������#���L���u��^����������2t��#!��x���x����mKeyAttrFlagsi!iaD�m-KeyAttrDataFloatf 



 nKeyAttrRefCountiX�oAnimationCurveLX��-SAnimCurveS�n	DefaultD�?�nKeyVerI��nKeyTimelм.��n
KeyValueFloatf�?oKeyAttrFlagsi!SoKeyAttrDataFloatf

�oKeyAttrRefCounti�pAnimationCurveL�~�-SAnimCurveS�o	DefaultD�?�oKeyVerI�$pKeyTimelм.�Op
KeyValueFloatf�?ypKeyAttrFlagsi!�pKeyAttrDataFloatf

�pKeyAttrRefCountiMrAnimationCurveL8�-SAnimCurveSCq	DefaultD�?[qKeyVerI��qKeyTimelм.��q
KeyValueFloatf�?�qKeyAttrFlagsi!rKeyAttrDataFloatf

@rKeyAttrRefCountiYvAnimationCurveL8��-SAnimCurveS�r	DefaultD����?�rKeyVerI��t�KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�u�
KeyValueFloatf8���?�3�?(q�?���?<�?���?�J�?l#�?8�?x1�?�?��?���?۔�?���?�1�?�
�?.��?���?��?<8�?�t�?	{�?d[�?�'�?���?�?T�?a��?�?䫪?���?��?�u�?�F�?�+�?E�? ��?�'�?e��?��?l�?�D�?U�?�3�?�+�?h�?�\�?�?Dy�?
g�?���?'��?l&�?��?��?�uKeyAttrFlagsi!iaDv-KeyAttrDataFloatf 



LvKeyAttrRefCounti7ezAnimationCurveLxG�-SAnimCurveS�v	DefaultD��
�?�vKeyVerI��x�KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�y�
KeyValueFloatf8��oH?p�<?��/?ڀ!?�+?�<?b��>``�>���>iD�>�"�>���>/��>.k�>�	?�?��,?��:?�D?�oH?*aE?�=?��0?�"?��?^�?
��>���>��>�"�>�M�>b��>��>�8?�%??�6?�B?�oH?��G?��C?�<?�<3?�(?�?�<?��?�:�>,��>�"�>僻>!��>�`?Q(?�)??�oH?�oH?�yKeyAttrFlagsi!iaD'z-KeyAttrDataFloatf 



XzKeyAttrRefCounti7q~AnimationCurveL���-SAnimCurveS�z	DefaultD ck<��zKeyVerI��|�KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�}�
KeyValueFloatf8�[���������ȇ���<��?H��`-��Vn������m
��fp���Y���'��:t��yٱ�����V�������q��[������nX��O��������2��R����������9]��fp���h��=���kH���}������
6��|��[��D���0���!���W�������Ϳ�[���ê�@v��T���gp��G^������e������H���[��[���}KeyAttrFlagsi!iaD3~-KeyAttrDataFloatf 



d~KeyAttrRefCounti7�AnimationCurveL���-SAnimCurveS�~	DefaultD�?�~KeyVerI�KeyTimelм.�3
KeyValueFloatf�?]KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti1�AnimationCurveL���-SAnimCurveS'�	DefaultD�??�KeyVerI�h�KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveL�o�-SAnimCurveS��	DefaultD�?��KeyVerI�ȁKeyTimelм.��
KeyValueFloatf�?�KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti)�AnimationCurveLN�-SAnimCurveS�	DefaultD�q����KeyVerI���KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1s�q
KeyValueFloatfYd����Cq��=h���(ڿ�T��?�
��=�9�#��-�3�k$5��F1���&�l�����j�ٙ¿�Z���q�������%���ȟ������ٿ���1t����\*��2�k$5���/�|(#��p�aR����ѿ����2<���������@ۑ�NŠ�_����f̿���X�@w��/�m�)�k$5�`78���/�Y ���L���78�;�ؿ��̿>S��
���쑬�ل����������$+��u��R��������
��B���0���ʍ�������������<���䭢����񓭿3T��63��r!��Zſp�ʿ.�п<ֿ��ۿ���78�78忡�KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



�KeyAttrRefCountiX��AnimationCurveL���-SAnimCurveS�	DefaultD���@��KeyVerI�p��KeyTimelW�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1�i
KeyValueFloatfW\��@ݢ�?���?��?���?:�Z?Ҏ?��>��>У>�6�=��9>5�>
4 ?��o?e��?��?OX�?��@��@�V@�[�?���?�K�?+��?�4J?nx?��>i">�6�=�R>?|�>m�<?s��?c��?�D�?��?��@�@.��?�F�?el�?@M�?�(�?�@�?�E?�u?]��>�6�=��=�+�>'?�#�?͌�?]��?��?�R�?'C�?5��?C=�?��@bn@��@TF@
�@B�@Bf@��@x@)@��@��?�4�?��?���?�W�?��?W �?=p�?[��?_�?���?��?��?̒�?]��?]��?!�KeyAttrFlagsi!iaDk�-KeyAttrDataFloatf 



��KeyAttrRefCountiVA�AnimationCurveL���-SAnimCurveS��	DefaultD`��3��KeyVerI���KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1��q
KeyValueFloatfYd+��澫�s(��L����;���d��	M����~,	�(~¿�
����†����!���V��Ӓ�����Ub��+��n���b��-����������\v�����{��NC¿�
��
�t�������U�����������x��+��
��M���1���������Ӌ������#���d��u¿�
��S”�
�Z�������������$��ϛ��@n��੶�!]��s���Ed��	դ�.��� ٟ�N���)���N�����7����\�����j��:S���Ω�R|��S���J���[���|�� ����Ͼ�����O���������}������������KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



4�KeyAttrRefCountiX��AnimationCurveL(��-SAnimCurveS��	DefaultD�?��KeyVerI�ؓKeyTimelм.��
KeyValueFloatf�?-�KeyAttrFlagsi!g�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL؏�-SAnimCurveS��	DefaultD�?�KeyVerI�8�KeyTimelм.�c�
KeyValueFloatf�?��KeyAttrFlagsi!ǕKeyAttrDataFloatf

��KeyAttrRefCountia�AnimationCurveL�b�-SAnimCurveSW�	DefaultD�?o�KeyVerI���KeyTimelм.�Ö
KeyValueFloatf�?�KeyAttrFlagsi!'�KeyAttrDataFloatf

T�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD {��ϗKeyVerI����KeyTimel��8y�p�<[���X+����P�f���*������	>(�Б�d �%V!��ȱ!Oi"���|#�y]�#H� 4$�v�$����$@tkG%�a
KeyValueFloatfTĔG�@�H��)J�}$J��I���F���G��H�dxJ�7�J�6�I�HMG���G���H�oJ�UVK��I��iG��E�.C�p�B�=�KeyAttrFlagsiiaDw�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL��-SAnimCurveS�	DefaultD`o�ӿ�KeyVerI�؛�KeyTimel3�м.�x;�G ����8y�p�<[6����h3�n�J�.����X9X+�����(�LP�f��%*���_�t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp�����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�҂=.˜�
KeyValueFloatf3�{����𞾂���h����z��;5�������1��q&���
���$��ve��Ȭ���������ꘟ��������.���*��T]��yc��9K���9��|��KԾ�z񽾅���[X���ͭ����i"���|��50���S���D��ڤ��R)������k-��������RԿ�����7����������֧�����������KeyAttrFlagsi!iaDC�-KeyAttrDataFloatf 



t�KeyAttrRefCounti2�AnimationCurveL�P�-SAnimCurveSם	DefaultD@��8��KeyVerI�ؠ�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1c�q
KeyValueFloatfYd
���L�����B��9U�l���±M»� ª$��P%�r#®�{Yž
¹S������C��<�����}��K���g������"�w��>�±�)�#��P%‰A"£��Ġ�e��L��/���2j��������0����3��s����S��_����R�I|�m�S���P%�B�&¥�!C4
�/�!���~���
�������q�����������"����9���t���l��R,���������ۛ��o������������������y���'�����c������`*��nT��|~��B���y���ة������.��!���!�����KeyAttrFlagsi!iaDۢ-KeyAttrDataFloatf 



�KeyAttrRefCountiXy�AnimationCurveL�T�-SAnimCurveSo�	DefaultD�?��KeyVerI���KeyTimelм.�ۣ
KeyValueFloatf�?�KeyAttrFlagsi!?�KeyAttrDataFloatf

l�KeyAttrRefCounti٥AnimationCurveL�'�-SAnimCurveSϤ	DefaultD�?�KeyVerI��KeyTimelм.�;�
KeyValueFloatf�?e�KeyAttrFlagsi!��KeyAttrDataFloatf

̥KeyAttrRefCounti9�AnimationCurveLx��-SAnimCurveS/�	DefaultD�?G�KeyVerI�p�KeyTimelм.���
KeyValueFloatf�?ŦKeyAttrFlagsi!��KeyAttrDataFloatf

,�KeyAttrRefCountiE�AnimationCurveL���-SAnimCurveS��	DefaultD�迧�KeyVerI����KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%���
KeyValueFloatf8���C�N�=��6��/��o'�����
��	��N��4�6
�!�[y�*;��e"�0,�Z5���<��B���C�mYB���=��Z7��d/���&����%���l�7
����Ci������&�EO1�o:��A���C��C�kjA�D�=��8�+�2���+�S�$����?~���7
�?�
���`A#���2��?���C���C���KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



8�KeyAttrRefCounti7Q�AnimationCurveLHA�-SAnimCurveS��	DefaultD@Tտ��KeyVerI����KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%���
KeyValueFloatf8��ڨ�%4�� k�������V���n�:�Z��QJ�E=�θ4�ݧ1�e07��F�Uj[���t����%?�� ֞�o"���ڨ�=����n���\��TX��/\����h�?�R��A�^P5�ާ1�439�OYK�e�d��������o���Ф��ڨ�
Y��/K������ ���ΐ�����[{�[g���S��A��1��k3��jN�Kw���������ڨ��ڨ�ɮKeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



D�KeyAttrRefCounti7]�AnimationCurveL���-SAnimCurveS��	DefaultD`��@���KeyVerI����KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%���
KeyValueFloatf8�
��H�_����[��O���or��n
�����O���P��z���1�������eS���������!n��p��/��
���_i�������������u���w���(�����z���U�������qL������>���3������
���8�)���B���u}��H���D����6���W��z���r���bB��fj�������B�
�
�ղKeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



P�KeyAttrRefCounti7��AnimationCurveL8��-SAnimCurveS��	DefaultD�?˳KeyVerI���KeyTimelм.��
KeyValueFloatf�?I�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS�	DefaultD�?+�KeyVerI�T�KeyTimelм.��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti}�AnimationCurveL8��-SAnimCurveSs�	DefaultD�?��KeyVerI���KeyTimelм.�߶
KeyValueFloatf�?	�KeyAttrFlagsi!C�KeyAttrDataFloatf

p�KeyAttrRefCounti�AnimationCurveL���-SAnimCurveSӷ	DefaultD�/���KeyVerI�Ժ�KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1_�q
KeyValueFloatfYd�.��\�$��6�������H�������p��X
���c��7�_m���������@����؍���c��1=��.���:��\[�ȡ��l������Ps���	����
�jJ�c��E����������e��ϫ����t�.1D��.�]x1���A�P/]���������Q���%���S������Y>
�c��m��Q�G���������ٷ�'��'����������t�Cl��[�yL���?�V�6�'�0��.�9�/�2��6��t;��B���I���R�� \��{f�bvq���|��e���r��ڏ��Ҭ����������Xc��������ٷ��ٷ���KeyAttrFlagsi!iaD׼-KeyAttrDataFloatf 



�KeyAttrRefCountiX��AnimationCurveLX��-SAnimCurveSk�	DefaultD��n+@��KeyVerI�l��KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1��q
KeyValueFloatfYd�t[A%�MA�~>AP,.A�AӘ
A��@! �@;�@���@n>�@к�@h|�@�w�@y�AQs'A�;Ay�KA�+WA�t[A�WA�3NA�?A��.AA	A�W�@���@|��@n>�@���@w��@�IAy�A��2AߧFAUA�t[A�ZA��UA�MA��BAW�5Al>'A��A�tAU��@���@n>�@b÷@)��@o��@�SA��A��)A��0A�07AjS=A�
CAQHA9MA�9QA��TA6�WAH�YA�[A�t[A�<[AG�ZA5�YA�2XA�VA�TARDRAB�OA�"MA�PJA�]GAlRDA�6AA#>A��:A��7AF�4A��1A/A�`,A��)A��)A%�KeyAttrFlagsi!iaDo�-KeyAttrDataFloatf 



��KeyAttrRefCountiXE�AnimationCurveL���-SAnimCurveS�	DefaultD��w'��KeyVerI���KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1��q
KeyValueFloatfYd4�;��mU��rr�A���|i��n����õ�����~���1���f������%���`���������)�x�L|Y��C�4�;�yB��T�|�o��#���ۙ�����`��������m��f������6������ls��"7���c��G�4�;�n==��PF���U��jj����4E��ѝ���������T��f��
P���c��D��������������j��$4����v��k�hLa�1
X��O���H��ZC��3?�+�<�4�;��(<�Gd=��^?��B�-PE��'I��~M�uER��kW���\���b��}h��n�;�t�ݰz��[���O���+�����|������������KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



8�KeyAttrRefCountiX��AnimationCurveLX��-SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimelм.��
KeyValueFloatf�?1�KeyAttrFlagsi!k�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�H�-SAnimCurveS��	DefaultD�?�KeyVerI�<�KeyTimelм.�g�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountie�AnimationCurveL��-SAnimCurveS[�	DefaultD�?s�KeyVerI���KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!+�KeyAttrDataFloatf

X�KeyAttrRefCounti%�AnimationCurveL���-SAnimCurveS��	DefaultD��l���KeyVerI�,�EKeyTimelG8м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'���,`Y�r,X���-T��-PQF�.��	�.H͐�/�KT0@Iۿ0o�)
KeyValueFloatfG�e������G��,���H���E��}�������4���8��ӕ�������'������n��r��I������� ���e�����l���v������e���>������������&��ӕ��Q�������p������4��X���{���e��Lj��>Z��ϼ��A���|�����ʚ�����{��լ��ӕ��p'���h������\��Mn��ɷ��S����5���m���������\���4�������e���N����q���U��������F�����KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



�KeyAttrRefCountiFu�AnimationCurveL��-SAnimCurveS{�	DefaultD%����KeyVerI�L��KeyTimelS�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(paL*�ߧ*\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1��Y
KeyValueFloatfSL(��ԋ�����?�R��A.��� ��%���)��n,�xW-���+�PG'��� ���/��{	�Ei����)�������f���R��p�*��g#�!�(��A,�xW-��+���%�d�GE�1]�Pp�]>��*��l������h��s��;�A���5��#���(�xW-�Z-�	�&���<��E���)������K����,����������������S����T��Λ��d���G���K?�����l������[P��v#������e�a��R4����u���L�����KeyAttrFlagsi!iaD7�-KeyAttrDataFloatf 



h�KeyAttrRefCountiR
�AnimationCurveLh��-SAnimCurveS��	DefaultD��8���KeyVerI����KeyTimelY�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw1W�q
KeyValueFloatfYd����5&���j��٭���0��G�k}�\�¹��4�b�A�L�ŸI°~�Fb������H��R�������'+��9���������$���W	�В��r¿��b��z��|���
��G��R����K�����������i��1��T��y1��)(��������t�	��4��6�b¡��¹4…���������4	��e�������2�������Y���Y������xC��<E��G
������4����s���q�����n���[��ʉ������/����B��Y �����`���(��a6���;��q1��������[b����������KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



�KeyAttrRefCountiXm�AnimationCurveL���-SAnimCurveSc�	DefaultD�?{�KeyVerI���KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!3�KeyAttrDataFloatf

`�KeyAttrRefCounti��AnimationCurveL�C�-SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimelм.�/�
KeyValueFloatf�?Y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti-�AnimationCurveLX(�-SAnimCurveS#�	DefaultD�?;�KeyVerI�d�KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

 �KeyAttrRefCounti9�AnimationCurveL�_�-SAnimCurveS��	DefaultD�Nj���KeyVerI�|��KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%���
KeyValueFloatf8�=^���L����������͸��D�����}��������|��x�'���A���P��FT��vN��D���<��B��<^�����ͥ��}��� ]���T���Z�����Î���~}��x�ڨ��zC��',��㾷�7[���d���B��<^��S�������� �����F��U��HM���F����������x���z���������i������<^��<^����KeyAttrFlagsi!iaD��-KeyAttrDataFloatf 



,�KeyAttrRefCounti7E�AnimationCurveL(.�-SAnimCurveS��	DefaultD``�ܿ��KeyVerI����KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%���
KeyValueFloatf8�S澼'����{%"=:�`>��>B�
?а1?��M?�(`?�f?��Z?c�:?,�?�v�>\s�=�ͽkI����ξS��Ҿ�&��M��->=�lq>y
�>�4?~�E?��^?�f?|�V?�y/?T�>��l>�=���f�f2þ
S����_Ǿ�(��k~;���,�Y�=�>(<�>�'?�ID?�f?@�b?=�(? 6�>G
<�����S�S澽�KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



8�KeyAttrRefCounti7Q�AnimationCurveLXs�-SAnimCurveS��	DefaultDֺ3���KeyVerI����KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%���
KeyValueFloatf8��֝����ӊ����4dj��@U�u�A���0�Ι#�������l�r{,�/IB��"\��Uw����C��D���֝��~���$���̋�-z��ech�<�O�ǜ9��v'�������$w���1���K���h��2��w0��۩���֝��P���(���ɔ�������Tw��b�wN��:��(�������S5��^�H��Ỗ��֝��֝���KeyAttrFlagsi!iaD�-KeyAttrDataFloatf 



D�KeyAttrRefCounti7��AnimationCurveL�P�-SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimelм.��
KeyValueFloatf�?=�KeyAttrFlagsi!w�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLx��-SAnimCurveS�	DefaultD�?�KeyVerI�H�KeyTimelм.�s�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiq�AnimationCurveL���-SAnimCurveSg�	DefaultD�?�KeyVerI���KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCounti}�AnimationCurveLH��-SAnimCurveS��	DefaultD@�B)@��KeyVerI����KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%���
KeyValueFloatf8�rJA��KAm�MAuTPAp�RAciUA��WA�ZA��[AH]Ae�]AN�\AI�ZA5�WA��TA�VQA�sNA`'LA�JArJA}�JA[�KAL�MAS>PAQSA3VA��XA�[[A��\Ae�]At\A��YA��VA*SA~�OAg�LA�JArJAt1JA��JA��KA�`MA/9OA�^QAf�SAJBVAW�XAZF[Ae�]ASD]A�YA�DTA�,OA�~KArJArJA��KeyAttrFlagsi!iaD?�-KeyAttrDataFloatf 



p�KeyAttrRefCounti7��AnimationCurveL�6�-SAnimCurveS��	DefaultD � @��KeyVerI����KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%���
KeyValueFloatf8��gAoR�@ܾ�@���@���@��@Aΐ@�h�@p�j@z�Z@�0U@�g_@B�z@K�@�@n��@��@��@��@�gA�{�@u��@و�@7��@�'�@�@�`�@߭q@t�[@�0U@Mc@2]�@nΙ@��@;��@���@��@�gA2��@l�@��@���@� �@z��@� �@�k�@C�@��r@�0U@sX@6�@�&�@}��@���@�gA�gA�KeyAttrFlagsi!iaDK�-KeyAttrDataFloatf 



|�KeyAttrRefCounti7��AnimationCurveL�-�-SAnimCurveS��	DefaultD ����KeyVerI����KeyTimel8�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_H#���t� 8s@�����*����8F���	>�͙0����TQ���(�Б�dxb� �%�
�wp���p/��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"P|� #���|#�y]�#H� 4$�v�$����$@tkG%��.�%���
KeyValueFloatf8��.���8��:���r|�������Q��4��1h������}���3����{�������&���ui��0��j͛�XX���.���ђ�����-l�����1����C����������%)���3��m���~������#g��j��f���.���.���Ő�QR���Z���c�����3���!�������b?���3���7������)��[����+���.���.��
�KeyAttrFlagsi!iaDW�-KeyAttrDataFloatf 



��KeyAttrRefCounti7��AnimationCurveL��-SAnimCurveS��	DefaultD�?�KeyVerI�,�KeyTimelм.�W�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiU�AnimationCurveL�.�-SAnimCurveSK�	DefaultD�?c�KeyVerI���KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti�AnimationCurveLH�-SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimelм.�
KeyValueFloatf�?AKeyAttrFlagsi!{KeyAttrDataFloatf

�KeyAttrRefCountiAnimationCurveL���-SAnimCurveS	DefaultD���?#KeyVerI�LKeyTimelм.�w
KeyValueFloatf��?�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountiuAnimationCurveL(U�-SAnimCurveSk	DefaultD >� @�KeyVerI��KeyTimelм.��
KeyValueFloatf�AKeyAttrFlagsi!;KeyAttrDataFloatf

hKeyAttrRefCounti�AnimationCurveLx)�-SAnimCurveS�	DefaultD�y��?�KeyVerI�KeyTimelм.�7
KeyValueFloatf��~>aKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti5AnimationCurveL���-SAnimCurveS+	DefaultD�?CKeyVerI�lKeyTimelм.��
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

(KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS�	DefaultD�?�KeyVerI��KeyTimelм.��
KeyValueFloatf�?!KeyAttrFlagsi![KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS�	DefaultD�?KeyVerI�,KeyTimelм.�W
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiU
AnimationCurveL��-SAnimCurveSK		DefaultD@D@c	KeyVerI��	KeyTimelм.��	
KeyValueFloatf"��@�	KeyAttrFlagsi!
KeyAttrDataFloatf

H
KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS�
	DefaultD`99@�
KeyVerI��
KeyTimelм.�
KeyValueFloatf[��AAKeyAttrFlagsi!{KeyAttrDataFloatf

�KeyAttrRefCounti
AnimationCurveL�>�-SAnimCurveS	DefaultD�w@#KeyVerI�LKeyTimelм.�w
KeyValueFloatf.�s@�KeyAttrFlagsi!�KeyAttrDataFloatf


KeyAttrRefCountiuAnimationCurveL89�-SAnimCurveSk
	DefaultD�?�
KeyVerI��
KeyTimelм.��

KeyValueFloatf�?KeyAttrFlagsi!;KeyAttrDataFloatf

hKeyAttrRefCounti�AnimationCurveL�k�-SAnimCurveS�	DefaultD�?�KeyVerI�KeyTimelм.�7
KeyValueFloatf�?aKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti5AnimationCurveL���-SAnimCurveS+	DefaultD�?CKeyVerI�lKeyTimelм.��
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

(KeyAttrRefCounti\AnimationCurveL8��-SAnimCurveS�	DefaultD@:K@��KeyVerI��,KeyTimel�x�}L��gT�K�:t�����I�%i��N����Z;
��(oѱZJ�ukQ�t��nќTJ�ĭ4ZI۹�J����ϧ�I�c>�0�*��3��ٶ�Mu��lC]N�(��&.�V�t�~L=6>yVȲS0�QX+�K�V-��j��0ORh���r�E��ˣ3U}V�U�����Z|/1�O
�v:��\_\vo4�}s���5�[7���<�u1]�r��G��rt�w.8l�����nt��L�շ�]›T�%X���s�!8�w5ߝ���IJ#I8GЮ��?<|��E�ql^�Ag�>������"�O�%��m��^�����F��=�ҩ�g�a���i|b��5�3`�+󪻱[r�w�itp\F�*�qrkd6�ʮ`ob������L)��ۆ�.O�9	��ӹ�o�0o��~|�y�<��2�]pU�3y�+h��c8*Чk�:��?Mc6��aWғS.ˈ1�1n��':ɮǷ�g�c멯��x�r�%��C6IV�Mc�Z���O�x�sF�W��d&��?��Vݟ��Dz�"Z4��;�,8�[��f
�i@n��#�bZ��W���+fz�
Kb,�7b}�袵t��	�3�u����x-��"f�_���-:"2D�'���e��#���vu5���I��V����,u���!�1�"���ۇ%�tNs�e,
Vb�A�MFgN�`ѳ�_�s�}���`f��7Цz�+��^`A�֏6�\TX����ܔm��51�8N�|�|
��Z/�],�J����hJ[i���%�6�NQ
KeyValueFloatf�D�Y€��#+���=œ�P��b�E�t�]�����
ў�C�����¹;��cf��ך�!������B~��xc��(E�ۃ3���!ˆa	��2�������dQ��
����0�!��I����":��,y�$���i1��<����
�
�&�;�?qa�X����y���G�‰����0��ZZ��~�����Cl��]�{�	g�5�Q���@“�'��K�������
/����M�J���+���
�@pHA�![A��DAg��@wZ?�����+��W��q���‰r"�_7��VK���V���H�E�:���(�L�‰K
�����*&�Z3� ;���C��NG�8�J�
T��w`�f¹+e�O�b��^—jN���C®�9¶�G�`�JKk��j�Gl�?�l�fef¡�_�YY�Q&N��_A�P�4�b'®��ѻ·~�����[���Q��3a��f���ߟ��z���y��U�Jr4��t�2���������������o�ƬQ�k?@�f
4�:�$�Iz����I��.��*����A��+e���������3�8�W�`�KeyAttrFlagsi;�!x��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD:�KeyAttrDataFloatf��





















































































































O�KeyAttrRefCounti;�
2�)AnimationCurveLȁ�-SAnimCurveS�	DefaultD����?�KeyVerI�
!,KeyTimel�x�}L��gT�K�:t�����I�%i��N����Z;
��(oѱZJ�ukQ�t��nќTJ�ĭ4ZI۹�J����ϧ�I�c>�0�*��3��ٶ�Mu��lC]N�(��&.�V�t�~L=6>yVȲS0�QX+�K�V-��j��0ORh���r�E��ˣ3U}V�U�����Z|/1�O
�v:��\_\vo4�}s���5�[7���<�u1]�r��G��rt�w.8l�����nt��L�շ�]›T�%X���s�!8�w5ߝ���IJ#I8GЮ��?<|��E�ql^�Ag�>������"�O�%��m��^�����F��=�ҩ�g�a���i|b��5�3`�+󪻱[r�w�itp\F�*�qrkd6�ʮ`ob������L)��ۆ�.O�9	��ӹ�o�0o��~|�y�<��2�]pU�3y�+h��c8*Чk�:��?Mc6��aWғS.ˈ1�1n��':ɮǷ�g�c멯��x�r�%��C6IV�Mc�Z���O�x�sF�W��d&��?��Vݟ��Dz�"Z4��;�,8�[��f
�i@n��#�bZ��W���+fz�
Kb,�7b}�袵t��	�3�u����x-��"f�_���-:"2D�'���e��#���vu5���I��V����,u���!�1�"���ۇ%�tNs�e,
Vb�A�MFgN�`ѳ�_�s�}���`f��7Цz�+��^`A�֏6�\TX����ܔm��51�8N�|�|
��Z/�],�J����hJ[i���%�6�u#Q
KeyValueFloatf�D�̅?bg?K��=�ܑ��#���<��!?��y?B���"��y��k԰�h���dO����0����{��[�>V)?#C�>�Z��<=u�;�D�m������X���?�Z�_��e��B1���������_��������#�	��%��=��)7���,�Â��$6��h�ɿ�H�?���@n�i?���,������0]�������N��ێ��f��`�������2�^�6�%�8�W�5�Y�0���)����wM������5�ۂV���\�p�e�d�m��\�%�J�ɘ)�zQ���h�.��<����$��+���F�=l�;������=�Iw@��@�i�@��@�N����ؿ5v�:f��3,��L���w����&�\���G������6*��C����i1�KS��})�6�1�~r7��_9��:��@�,YE��(A�Q9�%�5�E\8�2;;�k�<�+�=���?��@���E�mM�ycR���R���M��9H�Q�E�&VD�|�D��/J�ͭM��{L�A�L�{M�`�N�4cR��T���T���U�=W��qX���X�/4Y��Y��X��$�KeyAttrFlagsi;�!x��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDa(�KeyAttrDataFloatf��





















































































































v)�KeyAttrRefCounti;�
2�5AnimationCurveLt�-SAnimCurveS�)	DefaultD��@�)KeyVerI�1-,KeyTimel�x�}L��gT�K�:t�����I�%i��N����Z;
��(oѱZJ�ukQ�t��nќTJ�ĭ4ZI۹�J����ϧ�I�c>�0�*��3��ٶ�Mu��lC]N�(��&.�V�t�~L=6>yVȲS0�QX+�K�V-��j��0ORh���r�E��ˣ3U}V�U�����Z|/1�O
�v:��\_\vo4�}s���5�[7���<�u1]�r��G��rt�w.8l�����nt��L�շ�]›T�%X���s�!8�w5ߝ���IJ#I8GЮ��?<|��E�ql^�Ag�>������"�O�%��m��^�����F��=�ҩ�g�a���i|b��5�3`�+󪻱[r�w�itp\F�*�qrkd6�ʮ`ob������L)��ۆ�.O�9	��ӹ�o�0o��~|�y�<��2�]pU�3y�+h��c8*Чk�:��?Mc6��aWғS.ˈ1�1n��':ɮǷ�g�c멯��x�r�%��C6IV�Mc�Z���O�x�sF�W��d&��?��Vݟ��Dz�"Z4��;�,8�[��f
�i@n��#�bZ��W���+fz�
Kb,�7b}�袵t��	�3�u����x-��"f�_���-:"2D�'���e��#���vu5���I��V����,u���!�1�"���ۇ%�tNs�e,
Vb�A�MFgN�`ѳ�_�s�}���`f��7Цz�+��^`A�֏6�\TX����ܔm��51�8N�|�|
��Z/�],�J����hJ[i���%�6�/Q
KeyValueFloatf�D�&f@l�@�V�@�U�@m�Ay�A2A��KA��rA�ȂA��lA��ZAQ�XAR�'A��@WA9�9AI
'A�)Av%A��A�r�@i]�@���?_�<�v�Y��	�������Ux��æ�mP�?C�@eiV@Q�@���@#��@+��@�A��-A)�FA�DA.+<A�P9A+�3A_'1A�3@A�AA$�>A/IA^gQA��A��A}n�Az�aA��>A7Ad/�@�!@���h�i�+��(O�������ֿ`O'��Z�f�~��7o��S�Ж3�@�������<��?��@�,�@eY%A.P6A�DA!�/A�ZTAj�qA}4�Ai�xAv�dA�gZA�cA�-MA�0AH�A�q�@yn�@��GA?�:A8�A���@3]�@�c(A{1)A��A�A@�,A�h:A�EA�1JA�?A��4A}_.A�#A�cAܯA�=
A��A��@6��@NR�@��@�د@"
�@ϡm@W�9@�@�a�?o��?u�?�$?�Q�>��=��ӽS݊�-r־$V�o�3��tY��_x�2J��w=���ե�k����ٳ�t���s�ȿ�пGOֿ�Rٿ�0�KeyAttrFlagsi;�!x��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD�4�KeyAttrDataFloatf��





















































































































�5�KeyAttrRefCounti;�
2
7AnimationCurveL�A�-SAnimCurveS6	DefaultD�?6KeyVerI�A6KeyTimelм.�l6
KeyValueFloatf�?�6KeyAttrFlagsi!�6KeyAttrDataFloatf

�6KeyAttrRefCountij8AnimationCurveL(��-SAnimCurveS`7	DefaultD�?x7KeyVerI��7KeyTimelм.��7
KeyValueFloatf�?�7KeyAttrFlagsi!08KeyAttrDataFloatf

]8KeyAttrRefCounti�9AnimationCurveL���-SAnimCurveS�8	DefaultD�?�8KeyVerI�9KeyTimelм.�,9
KeyValueFloatf�?V9KeyAttrFlagsi!�9KeyAttrDataFloatf

�9KeyAttrRefCounti�CAnimationCurveL�4�-SAnimCurveS :	DefaultD�@E@8:KeyVerI�>�KeyTimel��x�}P�u��!9��ƛ�7�p��!liC��"/qCE��q#�����
�@�'�\u���y���c���n
Y�C�Ɂ
�k�"P��y�y��.R��G�kv��c��ҋ�Xi�}(��H���>x5(���7Ua���1<��J�L�a�s��%�-dIbT'��3^l`�懑��*x��Y� ��oJ�=�,���}�c,�5����O����prֱ�}��)xgR	-x���O��p��gg|��~T�8����Y��m^z�=���k"x \��_����� 2{�u�D��N�?��
̻�]�S��^�"�EcADc:v�����,]T���K��t�]¿��t
���Ѣ���z9�����Ɗ�Jv,��Qαo�������ɺWɌM�$l?�?�CrB�
��C��k
��3�dz�-�*�/�¡5���c�|�?HuMbi���ˎ!���K���a��E�,�Z��_r����M�X���SVb�
�|�T;6�c��jƆ���x��>l,a�fÆXr��.�>өq�����]8���o|�`
�#�W���7��On?{{Oϵ᬴_����xq�\8��Q}|?��8�=>n/֞�����`<�u�B3vW��pK�;N���O�yrb7/��NNq�H�O�e�c�2��ޥ�pC�l7v=�zk*�Xl2ۓ[��+6O��	A�)����Y�+�E�s��L���K$+�+�b�a��Z��YZf~�\շ��T��A���S%����7���l^��q�8���b��{�Jh<r�X�g��Ş��d�6[v���`��n
�����)b�(?�O��Y���WlO���ڷR�56�3��;��C��i��0�R�L#���j��|wӓ?秓��۰���.�eȦD��Xb<�S	I�$C�ς��Pi��@�
KeyValueFloatf���*B2�BB��[B�hvB@>wB9]eB�KB�J4B�E%B0�BWu%Bi0BO	AB+<JB�LOBΖUB�3UBR�LB[9Be8#B�T
B!��A�3�A��gA~KAjkA�/�A���AjB�8B��)BO�BBz[B�CmB�B;p�Bq'�B�۩B���B���B� �Bq��B�'�BVI�BO��BS��BQ6�B-�B���B
|B�qjB�PBJ�5BHYB'B�f
B.�&B�D?B��5B��!B<B�T�Aj:�A:��A��BT B�5B�UB.�uB8�B��B��B"M�B´B�:�B��B�[�BT�B�e�B���Bь�B5��B��B��B��sBȇZB��GB)�*B!BB��AP	�A���Aٵ(A��@�PcA���A���A�BÅ0B�NABǀZB��sB��Bek�B�ٛB�K�BF��B[��BX�B��B��B�7�B|[�B$u�B$7tB��YB�BB�O0B�B�/�A�H�A�A[#�A	��AuP�A��B�DB��B�BrB߇�Ae��Au��A��An3�A�u�A��A��A�ծA�%�AQ�A.�A���A�.fAt[NAa;A�
)Ad�A�KA(��@s��@���@�@�ȟ@�~�@�	�@�@���@^��@��@�A@@ux@O�m@��h@sGg@Em@�
u@M�}@lx�@!�@�@�ً@B!KeyAttrFlagsiE!x��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD_B.KeyAttrDataFloatf!xc`�V^V^(L��G�c4= B`4?���	��C!KeyAttrRefCountiE3�MAnimationCurveL(@�-SAnimCurveS�C	DefaultD����DKeyVerI��G�KeyTimel��x�}P�u��!9��ƛ�7�p��!liC��"/qCE��q#�����
�@�'�\u���y���c���n
Y�C�Ɂ
�k�"P��y�y��.R��G�kv��c��ҋ�Xi�}(��H���>x5(���7Ua���1<��J�L�a�s��%�-dIbT'��3^l`�懑��*x��Y� ��oJ�=�,���}�c,�5����O����prֱ�}��)xgR	-x���O��p��gg|��~T�8����Y��m^z�=���k"x \��_����� 2{�u�D��N�?��
̻�]�S��^�"�EcADc:v�����,]T���K��t�]¿��t
���Ѣ���z9�����Ɗ�Jv,��Qαo�������ɺWɌM�$l?�?�CrB�
��C��k
��3�dz�-�*�/�¡5���c�|�?HuMbi���ˎ!���K���a��E�,�Z��_r����M�X���SVb�
�|�T;6�c��jƆ���x��>l,a�fÆXr��.�>өq�����]8���o|�`
�#�W���7��On?{{Oϵ᬴_����xq�\8��Q}|?��8�=>n/֞�����`<�u�B3vW��pK�;N���O�yrb7/��NNq�H�O�e�c�2��ޥ�pC�l7v=�zk*�Xl2ۓ[��+6O��	A�)����Y�+�E�s��L���K$+�+�b�a��Z��YZf~�\շ��T��A���S%����7���l^��q�8���b��{�Jh<r�X�g��Ş��d�6[v���`��n
�����)b�(?�O��Y���WlO���ڷR�56�3��;��C��i��0�R�L#���j��|wӓ?秓��۰���.�eȦD��Xb<�S	I�$C�ς��Pi��J�
KeyValueFloatf������"n�IF�l�?���6Bg����nH���(��+�\c��&���jm$�~���ބ���*���s���]�?��@k�\@��@?�@	�@h
�@8��@OA��JA	\iA�}A���A�ٌA���A3�A��cA�P8A�{Ag�@��@iP�@�Ҫ@��@�ACp3AK\A3��@{��@[_@�X�?�T���~�{}���D��ə��R5?l^�?�弌;�?y�@ۦ�@�Ap�:A3F9Ar�6A�"LA��eA��~A{�pAL�ZAF^DA�62A��AtzA���@PH�@�W�@���@!�A)��@���@�l�@e�@���@T*@��>{g_��ܿ���P=��@\�Ŵ��|�>O�A@_�@��&A��"A��AۚA��A'�A\�@�I�@�~@�Qc@��G@2b@`�v@ǭ~@�y@�u@�n�@�x�@��i@��N@|5@0�@#��?V>�?A.@�>@JGl@��@��4A:VA�z(A�[A��tA��hAH`A�#iA
*pA�NwAe�zA*tA�F^A�qGA��AA�AA
�@AAA��BAgCAc�@Ah�@A�	AA� @A��AA�aCA5[GA�JMA2�QA�PA��GA�f?A�w<A[<A]
?A?6EA�6HAԩEA��DA�DAӤDAO"GA*IAEHA#�GA��FA {EAf�BA�"?AJ�<A�;A�K!KeyAttrFlagsiE!x��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD>L.KeyAttrDataFloatf!xc`�V^V^(L��G�c4= B`4?���	�{M!KeyAttrRefCountiE3gWAnimationCurveL�D�-SAnimCurveS�M	DefaultD 	%��MKeyVerI��Q�KeyTimel��x�}P�u��!9��ƛ�7�p��!liC��"/qCE��q#�����
�@�'�\u���y���c���n
Y�C�Ɂ
�k�"P��y�y��.R��G�kv��c��ҋ�Xi�}(��H���>x5(���7Ua���1<��J�L�a�s��%�-dIbT'��3^l`�懑��*x��Y� ��oJ�=�,���}�c,�5����O����prֱ�}��)xgR	-x���O��p��gg|��~T�8����Y��m^z�=���k"x \��_����� 2{�u�D��N�?��
̻�]�S��^�"�EcADc:v�����,]T���K��t�]¿��t
���Ѣ���z9�����Ɗ�Jv,��Qαo�������ɺWɌM�$l?�?�CrB�
��C��k
��3�dz�-�*�/�¡5���c�|�?HuMbi���ˎ!���K���a��E�,�Z��_r����M�X���SVb�
�|�T;6�c��jƆ���x��>l,a�fÆXr��.�>өq�����]8���o|�`
�#�W���7��On?{{Oϵ᬴_����xq�\8��Q}|?��8�=>n/֞�����`<�u�B3vW��pK�;N���O�yrb7/��NNq�H�O�e�c�2��ޥ�pC�l7v=�zk*�Xl2ۓ[��+6O��	A�)����Y�+�E�s��L���K$+�+�b�a��Z��YZf~�\շ��T��A���S%����7���l^��q�8���b��{�Jh<r�X�g��Ş��d�6[v���`��n
�����)b�(?�O��Y���WlO���ڷR�56�3��;��C��i��0�R�L#���j��|wӓ?秓��۰���.�eȦD��Xb<�S	I�$C�ς��Pi��T�
KeyValueFloatf��I�(������
�%I���������XcG�-�P��;�Y	�ܬ��e��"5�������~�����<����b5��*���]�"�!������]ۿ��A����5�`�����Z>.K@�ny@'�@�pA� A��&A�e,A��,A��Am��@��_@�J�?4���;���e.��?��FK��?���3������@��ϩ���6���4�([?X�@L�Y?8�M?��?���@#n�@��@'��@m��@�y{@�.�@���@�G�@m��@�A�@���@O\@��?:
?�ǿ��k�����E��m0Y��������&�V=��]��x��9b�T�O�Q�@�J�(����N���3g��o�~��8&�V�������OI��@��0D�͝]���Ԗп����M��8���ſx<�
3�?�sh@Z
�@-@�wP?z�*���޿:!�کg�fC�������z���c��Q�I��iۙ��\������8��?mH+@�@tJ�@��@�]O@Y@:3
@z1@��@�F�?᛻?��?�E�?�!�?���?Fd�?���?(�?S��?^��?�Ee?F&i?��?a��?s�?�z�?��p?Te?��n?Et?QɄ?k-�?y_�?^{�?$��?�7�?u��?Yߊ?N��?�D�?�G�?�(�?n��?z�?���?EY�?�̰?�U!KeyAttrFlagsiE!x��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDV.KeyAttrDataFloatf!xc`�V^V^(L��G�c4= B`4?���	�ZW!KeyAttrRefCountiE3�XAnimationCurveL8��-SAnimCurveS�W	DefaultD�?�WKeyVerI��WKeyTimelм.�)X
KeyValueFloatf�?SXKeyAttrFlagsi!�XKeyAttrDataFloatf

�XKeyAttrRefCounti'ZAnimationCurveL�:�-SAnimCurveSY	DefaultD�?5YKeyVerI�^YKeyTimelм.��Y
KeyValueFloatf�?�YKeyAttrFlagsi!�YKeyAttrDataFloatf

ZKeyAttrRefCounti�[AnimationCurveL�B�-SAnimCurveS}Z	DefaultD�?�ZKeyVerI��ZKeyTimelм.��Z
KeyValueFloatf�?[KeyAttrFlagsi!M[KeyAttrDataFloatf

z[KeyAttrRefCounti�dAnimationCurveL�d�-SAnimCurveS�[	DefaultD��-0��[KeyVerI��^�KeyTimel��x�}L��g�]��u��I]����iB/[o�;/�Hڙ��kk��Bt��Z%�N���*�&�4�irc�i��έ&R���>}���èw[#h������X�t̑0-���鰎V���1�Ytn���^O'5��b��d7�+�h��{	f�-X'��q�嵩:� ��Ug���ޛ8�Sߎ�����u�_���%ly���B�垒`��9.e��8��b��`�Қ�x�XJ�������n�] ��b�=�<6���u�s���b�����ve
��͹���d#~���EB������E�*���iSX۾�~-X���i]���xMv+y�&0?�-��[m�+q��?�gc{؃n�5鱂)��L3��ƺ%�7�oǜ˳YOz�6W�~��3<�L����*3ތ�}��������HƖ�E�t�v�4]s��g"�UR�5g�˘�4��G�3��� �-�4�I���w8�t�PD�D�����,����}�k���[?�C�)%��4��`�	�1-��Ƅ_Z9����������V:���3zp�aN��V|\���8�(�}��#���Z��k7��t����nM=���I��.��ŀ'�V�m�5��1�F8�G¾Kv���ci�j�
�P���W�h���vg��m!z����M-&%V�Ƃ�lm�9fa��O���L��nm�/�I�i�{:�э��j��;��������ڌ��8a!
KeyValueFloatf�n���D������˕�	����͓�
N����+ŝ�O*���d������
���������f�3#�
����=���;����u�^R#�0����@�A)�uAM�A�g{A�5A)�@g�k@�o�>,���C;(�~Bh��6��	7�������~j�=i��g�����j������Z6���H��S)��S
2�J���u��>��������O�����R;C�RK���*����������s��������?�Ğ@��A_^A��NAHM>A�-�@(oy�S-��))@S��@�HA���@$ʄ?����F���盿��?,i
Af�IAJ�A M�A�7�A���A��A�8�Ae�ZA��LA�QAy�]AuxVA��.A~�A���@��>@J~�>�K<�.���D`�Y��P�!�d�*�w�4���B�)TR�B`�,l��<w��u�����=@��}U��'ٍ��
�����������'���ƫ������{�������η�ӹ�%-��xU�����|���������eM���a�KeyAttrFlagsix!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD�c�KeyAttrDataFloatfx�



























































�d�KeyAttrRefCountix
	1^nAnimationCurveL��-SAnimCurveS�d	DefaultD`R6��dKeyVerI��h�KeyTimel{�м.�x;�G ����8y�p�<[6����h3�n�J��0&`�с.����X9X+�����(�LP�f��%*���_�cύH#���������P����t��e.��P� 8s@�����*�����[d�8F���	>�͙0����TQ���(�Б�d$Q��xb���C� �%�
�wp���l����
p/l�Q]��3�h����B �~� `�A� V!��ȱ!X�
"Oi"���"����"P|� #���|#�ڊ�#a���#~��#�y]�#�8?$H� 4$��b$�v�$����$촉%@tkG%��.�%�q��%8�Z&�ny�&��<'0ln'����'�i�%()Ix<(���^((�J�(�f�(x��8) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0��d0@Iۿ0�Ǟ1�Fbw18�%�1�C�.2�¬�20Ap�2ؿ3B3�>��3(���3�;~U4x�A�4p6��5�O 6h���61�37k�
KeyValueFloatf{�������\�T��,��x�@Ҿ1,	�C������>��?Ŵ?�X�>�|�>�"�?���?1@&�,@��B@��(@MS@(�?L�?��f�ɿlA鿻����^�^����M�Fn�,�}[�=�2s=x/&������=1]??P�?T�>�&�=2h����ǯ@�D�aW>�f?��5?��?~�_>�Ҿ4=���K>���>k+�>�>�>d�����?����b�2oh����u����ؙ�����g�S��>栎?�:�>���=��>�x�>�1�>�i�>���>�K�>���=!5��3���.}G��X����{�ɿq)P���?��j>cL�>V�?4̸>y�J>O����HӾ����R���<��k<Z��=�i>�>y	>�>40
>�,>xO�=�x�=���=*��=��>�f
>~�>k�>�@�=��=���=ޅ�=�W�=��=���=�~�=^�=�t	>X�>�k�KeyAttrFlagsix!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD�m�KeyAttrDataFloatfx�



























































Qn�KeyAttrRefCountix
	'ewAnimationCurveL���-SAnimCurveS�n	DefaultD@�t��nKeyVerI��q�KeyTimel��x�}L��g�]��u��I]����iB/[o�;/�Hڙ��kk��Bt��Z%�N���*�&�4�irc�i��έ&R���>}���èw[#h������X�t̑0-���鰎V���1�Ytn���^O'5��b��d7�+�h��{	f�-X'��q�嵩:� ��Ug���ޛ8�Sߎ�����u�_���%ly���B�垒`��9.e��8��b��`�Қ�x�XJ�������n�] ��b�=�<6���u�s���b�����ve
��͹���d#~���EB������E�*���iSX۾�~-X���i]���xMv+y�&0?�-��[m�+q��?�gc{؃n�5鱂)��L3��ƺ%�7�oǜ˳YOz�6W�~��3<�L����*3ތ�}��������HƖ�E�t�v�4]s��g"�UR�5g�˘�4��G�3��� �-�4�I���w8�t�PD�D�����,����}�k���[?�C�)%��4��`�	�1-��Ƅ_Z9����������V:���3zp�aN��V|\���8�(�}��#���Z��k7��t����nM=���I��.��ŀ'�V�m�5��1�F8�G¾Kv���ci�j�
�P���W�h���vg��m!z����M-&%V�Ƃ�lm�9fa��O���L��nm�/�I�i�{:�э��j��;��������ڌ��t!
KeyValueFloatf��[�kE�Q��>?%n?թ>(˖�����U$�{ @遘@�9�@��@d��@�@�]A�	A��A:{A�i,A�DA��[AKlbA�GfA=jAp�kA��QA	�)AÐAG_�@�dA�A���@��	@�?�|��͙���G@���@æ$Az�@�ο?�/g�V�������L���5���?av@�Y�@��A~�>A�RA�j�@?�A��@�ޑ?����Xkƿ�x��~n�?�uAM?xA���A�ՈA�]AgA��}@�n������ߣ��V�)�A��G=�P�7��4߿����`�����V�?bt�@�gA��pAc�AA��@�NX@+����<��Q������t�����y��?��W@`w�@��Y@��	@f�n?��	�;��xk*�/���������Ô��Ԩ㽜�O�F����+=n�$>M0m>�M>bt�>�L?��^?܉?��?k��?5�?�r�?��?��?Ur�?�'�?��?��?��?]��?�V�?Q�?x-�?��?�v�?���?�t�KeyAttrFlagsix!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD�v�KeyAttrDataFloatfx�



























































Xw�KeyAttrRefCountix
	1�xAnimationCurveL(I�-SAnimCurveS�w	DefaultD�?�wKeyVerI��wKeyTimelм.�'x
KeyValueFloatf�?QxKeyAttrFlagsi!�xKeyAttrDataFloatf

�xKeyAttrRefCounti%zAnimationCurveL8��-SAnimCurveSy	DefaultD�?3yKeyVerI�\yKeyTimelм.��y
KeyValueFloatf�?�yKeyAttrFlagsi!�yKeyAttrDataFloatf

zKeyAttrRefCounti�{AnimationCurveL؛�-SAnimCurveS{z	DefaultD�?�zKeyVerI��zKeyTimelм.��z
KeyValueFloatf�?{KeyAttrFlagsi!K{KeyAttrDataFloatf

x{KeyAttrRefCountix�AnimationCurveL���-SAnimCurveS�{	DefaultD���?��{KeyVerI�#KeyTimel�x�}L��g*Β�^t��꺸NG��^�*i*��"i�\�vh��(�u��,)ٺ�k�L���9�Q�ڭX%��n�������3�#���a��{�;�:[��+��U]�Y� ��¦�O�=i����ؕ��/�V[���ҥ^�۷4�s�M9�I�8k���rZ���c�#[cy�o�~�Ӌ��1N��ڛֈZ���O�qJ[���K���Y@'M����;�q�����y���Y������f[��UF�J:��,�����D��>�|�>��@�=ް8
����*A_u<�a}|� �^W�ኌ�����+=��zw�wi�#X�1�[E\mR�u�e�p1?ׄ�����y��}W�'v/J�f�ϧ��Z;����5���
����+y?�p��'K�+
�q���&�S��\2�h]�Y��c�ǰ��v[Kk�G#0s.9k��?�)�C�?���P��g�qs���E/\G'8�M��kA.������sm38�� ^HO�%�X}��s���z������t��G�Bl���%.˯�h�tb9�[j�œo� �U��b�G�
��&�i��X6e�:�Jk�A��/~��Gf���s��c����28�Z���̤?`����$tJj\v�^<��w����	}j-��J�I��W�
�sԈ�_4�l��q��0�\8��w|���U���X����l��.��q���@�ٽ��bC���.n�is�Y�Ua�ϰ�3�
�M2�R��74��oȶ��w�����uL�q�.Xs���b&($3�Ҵ�;��,�E
KeyValueFloatf�8�����
�O0�?��
��±���A��y_������ƞx�Wd'�A���O�l�����[��B�hŇ�-���J������;A·8ƒ\T���p��Žw��Nܜž3���H��8��_j��[�����������ou���`�(�O¯|>���*����������^@����d��)��^
ſ$�@VF�?Z�!�C���k\��7��Hm���P
�C�.�m,P��<n�,��˛�����x���~r�3�]��P�0zC���,��/���@�p�2‹! �P�
�m�������A.��T:��Y���"��<���c¶�4��}F��dXƒ�Tš�8�C�.�"�=��F�zAE�mmG�sP��Z‘�e��x´��sd��}%v�`Jn�a�n��jŠ�b�2RZ���N��@�}�1Šg$�C[��P
�b�� �����������
�������j���<���wU�U�,�5��N������������f�ql/��=�|~¿ia��zm�=\7�V�Ԍ�N�6����������׽Ũ7�)DX�c���[_�����5]�bZ"����KeyAttrFlagsi:�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDZ��KeyAttrDataFloatf��



















































































































k��KeyAttrRefCounti:�<k�AnimationCurveL(��-SAnimCurveS·	DefaultD��{@�KeyVerI��KeyTimel�x�}L��g*Β�^t��꺸NG��^�*i*��"i�\�vh��(�u��,)ٺ�k�L���9�Q�ڭX%��n�������3�#���a��{�;�:[��+��U]�Y� ��¦�O�=i����ؕ��/�V[���ҥ^�۷4�s�M9�I�8k���rZ���c�#[cy�o�~�Ӌ��1N��ڛֈZ���O�qJ[���K���Y@'M����;�q�����y���Y������f[��UF�J:��,�����D��>�|�>��@�=ް8
����*A_u<�a}|� �^W�ኌ�����+=��zw�wi�#X�1�[E\mR�u�e�p1?ׄ�����y��}W�'v/J�f�ϧ��Z;����5���
����+y?�p��'K�+
�q���&�S��\2�h]�Y��c�ǰ��v[Kk�G#0s.9k��?�)�C�?���P��g�qs���E/\G'8�M��kA.������sm38�� ^HO�%�X}��s���z������t��G�Bl���%.˯�h�tb9�[j�œo� �U��b�G�
��&�i��X6e�:�Jk�A��/~��Gf���s��c����28�Z���̤?`����$tJj\v�^<��w����	}j-��J�I��W�
�sԈ�_4�l��q��0�\8��w|���U���X����l��.��q���@�ٽ��bC���.n�is�Y�Ua�ϰ�3�
�M2�R��74��oȶ��w�����uL�q�.Xs���b&($3�Ҵ�;��,�u�E
KeyValueFloatf�8���@�9A�3A��RA�w\A�TA*�CA�#8AX�7A��5AfA��A,��@B��?j⑽��
@<։@z4�@�n�@��@���@ކ@*�@dݐ@Dߗ@,��@.1M@j�?$Ā�MG��ө���ꑿUc�@��@��A�#�@U�@\}L@�{?b�??De;?X��@��@P_A�#A�79Aߎ,A�A�yA�>�@@�&�@�f�@G�A�#A&5)A�U4AZ�A]�A�M�?)����@���@���@A�AΚA3��@w�k@�@�fr@f�@��@&JA$TA�QA&�A�TA}�(A��?A.ZA4�rA�5�A���AU�A��cA��(A��@���@_��@��@@��@a�@��	A�x%AÑ2A�#A��A�A_DA�XA$A<�1A�W5AwY5AJ�3A�)A�~A��A��)A�[3Ab4AG4Ac�4A��2Aܮ2A�2Ae�0A��/A+-A��*At0&An#A�� AP�!A~�#A��#A*�!A�A�A��A�.A�-Aa!A��"Af/"A� AK�A��A,�A4�AQA���KeyAttrFlagsi:�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDM��KeyAttrDataFloatf��



















































































































^��KeyAttrRefCounti:�<^�AnimationCurveLh*�-SAnimCurveS��	DefaultD@v���ٓKeyVerI�	�KeyTimel�x�}L��g*Β�^t��꺸NG��^�*i*��"i�\�vh��(�u��,)ٺ�k�L���9�Q�ڭX%��n�������3�#���a��{�;�:[��+��U]�Y� ��¦�O�=i����ؕ��/�V[���ҥ^�۷4�s�M9�I�8k���rZ���c�#[cy�o�~�Ӌ��1N��ڛֈZ���O�qJ[���K���Y@'M����;�q�����y���Y������f[��UF�J:��,�����D��>�|�>��@�=ް8
����*A_u<�a}|� �^W�ኌ�����+=��zw�wi�#X�1�[E\mR�u�e�p1?ׄ�����y��}W�'v/J�f�ϧ��Z;����5���
����+y?�p��'K�+
�q���&�S��\2�h]�Y��c�ǰ��v[Kk�G#0s.9k��?�)�C�?���P��g�qs���E/\G'8�M��kA.������sm38�� ^HO�%�X}��s���z������t��G�Bl���%.˯�h�tb9�[j�œo� �U��b�G�
��&�i��X6e�:�Jk�A��/~��Gf���s��c����28�Z���̤?`����$tJj\v�^<��w����	}j-��J�I��W�
�sԈ�_4�l��q��0�\8��w|���U���X����l��.��q���@�ٽ��bC���.n�is�Y�Ua�ϰ�3�
�M2�R��74��oȶ��w�����uL�q�.Xs���b&($3�Ҵ�;��,�h�E
KeyValueFloatf�8�����HϽ�*�>�~�?i�@�^{@F��@�A#�6A�!SA[qAL�AWT�AYȌA�(yA�/bAb�HA�k0A�A(m�@�'�@T?�@��4@M��?��/��%��%=G���t��|�����WX��m���t�<�9��OT��>W� \���@��(���
�\����R��'����M�*@�"�@$A��&A�[�@΁�@�d�?8��l�;9�y�~�`"�;�+�|�o�����������<���g\�� ſJ#�?'��@��p@�?��:��Z��k"���6�A�%���但�����r_
�\?�
�?�kX@=��@#�@�(�@�	@�*��b1�ɰ%�u:�kw��O��^����b�t��u���2	�T
���������������������ft�\@�F��������F3O����������>Gj?��?u��?��?�j�?�,�?n��?Y@��@p�@ӿ@��@%@�'@&'@t'%@�� @��@��@�"@G@�p
@��@��?�K�?-��?:�?o;�?���?3��?B}�?v��KeyAttrFlagsi:�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD@��KeyAttrDataFloatf��



















































































































Q��KeyAttrRefCounti:�<��AnimationCurveLؕ�-SAnimCurveS��	DefaultD�?̟KeyVerI���KeyTimelм.� �
KeyValueFloatf�?J�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�'�-SAnimCurveS�	DefaultD�?,�KeyVerI�U�KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti~�AnimationCurveL���-SAnimCurveSt�	DefaultD�?��KeyVerI���KeyTimelм.��
KeyValueFloatf�?
�KeyAttrFlagsi!D�KeyAttrDataFloatf

q�KeyAttrRefCounti�AnimationCurveL���-SAnimCurveSԣ	DefaultD���C@�KeyVerI�Χ�KeyTimel��x�}P�u�_wC�xgɔ��xq�4B=�DN��I��8v��NF�0#���(#!^,v�<6���5�\�xΈ�Ȉ�ȵ�s�Q����31��˝�(i�-Ń��
tc#��?,<�'�K
b��w=���ܺR�֟6��H;�rv�x�]�O���}�2Lc7��~���8:���Y����ƣ���l�G0�����
��Όa���g��KV�����?k?��=EJl�NV��?��jn���X����vJ|_'�u2�na�>�	�l��]��;��k��c�_��W8�#ssWKp=ݤ�1�;j�I	�œ��
\�S� [���p���j\s������e�����"h�f�70�s���l���/�Rјse<
O\l�
qS%���mX�vJ���3����F��r�0�~�E��)��t�
~�i����:���tgQ6�&c٥��0�+���_`�0������F�	Ӟ-��/&٭N����g۱�H�\X��oĸ�!7����i�s�	��gX-3j0�jt
 S�B���c�Z��̪f �z��8��PT�t]e/�ȷ�T;s_�����V~��g�4�֜��p۟[&q�F�*N�nq&���wH���	���dcw�Kfvh��Ŷ-�f���!�[�<̳��ƾ��x���\�v�#��9M�b��ݟp��.�Ef-��pUOd�(�1��B�����?&y8`Đ�;�"�0S�|K�
ظ��b�IFz8�>���?��A.�+*�n'�oc�/k>���\M�Y$cX���K�Oo~����߰�|� �������q�
�qܔEN5�U�z,��!���
p���a�t��/�,O>U�y#�Sx��2;�\oP]��D�"�s���C��0��9��?��>�T����8G��d㠱�b�a�@3���zV������-���Yۗ߄�{V1�ƓdY����ޒ-L�E�ő�=��?	�wG���
KeyValueFloatf��B��4B;MFBX�RB	XB��WB�UBM�JB�L-B��B�.�Aԟ�A���A�*�A��A�j�ApBO<&B� DB�bBU�rB���B/��B�T�B���BU�B�v�B���B8�B��B��B�$�BT�Bu�{B�ObB��HB��BB�JSB}�WBM$VBT�IB�(7B��$B�AB��A4B�ARv�A��AߒA���AZ4B�#BS�4B�OB
5jB��B��BE
�B�[�B	٭B�2�BB��B%5�Bf��BA_�B���B���B��B{-�B��B-��B�ہB��lB��JB�s(BEC
B�A2��A�M<A���@�8�?c��@L�2A�/�A��A�g�A��B�DABȳcB�Bw��B���BI@�B���B[^�Bi�Bsb�Bne�B�o�BN��B�C�B}}�Bn�BG�sB�RB�t1B
�B4�B�}�AqҕAU��A��ASk�A�
BV�B�j7B?RB�cBE�sBa��B�h�B6��B@��B'�B���B���B�`�B6�wB��eB*%KB{u0BIZB CB;�B	�B��B�A#V�Au�A�;�A+Q�AQ��A�ͤA��Am̜A���A���A"(rA�MA0�'A=A���@�ߐ@��Q@i@��@rp�?j��?�ž?h=�?lw+?8m�>b��>E�>�\�>���>�<[>D�=�P�(���[�H�cM=w��=��5>�b>��>�w�>�MKeyAttrFlagsiP@!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDk�/KeyAttrDataFloatf@"xc`�V^V^(L��G�c4= B`4?��DAԭMKeyAttrRefCountiP@-D�AnimationCurveLb�-SAnimCurveS7�	DefaultD`�"�O�KeyVerI�1��KeyTimel��x�}P�u�_wC�xgɔ��xq�4B=�DN��I��8v��NF�0#���(#!^,v�<6���5�\�xΈ�Ȉ�ȵ�s�Q����31��˝�(i�-Ń��
tc#��?,<�'�K
b��w=���ܺR�֟6��H;�rv�x�]�O���}�2Lc7��~���8:���Y����ƣ���l�G0�����
��Όa���g��KV�����?k?��=EJl�NV��?��jn���X����vJ|_'�u2�na�>�	�l��]��;��k��c�_��W8�#ssWKp=ݤ�1�;j�I	�œ��
\�S� [���p���j\s������e�����"h�f�70�s���l���/�Rјse<
O\l�
qS%���mX�vJ���3����F��r�0�~�E��)��t�
~�i����:���tgQ6�&c٥��0�+���_`�0������F�	Ӟ-��/&٭N����g۱�H�\X��oĸ�!7����i�s�	��gX-3j0�jt
 S�B���c�Z��̪f �z��8��PT�t]e/�ȷ�T;s_�����V~��g�4�֜��p۟[&q�F�*N�nq&���wH���	���dcw�Kfvh��Ŷ-�f���!�[�<̳��ƾ��x���\�v�#��9M�b��ݟp��.�Ef-��pUOd�(�1��B�����?&y8`Đ�;�"�0S�|K�
ظ��b�IFz8�>���?��A.�+*�n'�oc�/k>���\M�Y$cX���K�Oo~����߰�|� �������q�
�qܔEN5�U�z,��!���
p���a�t��/�,O>U�y#�Sx��2;�\oP]��D�"�s���C��0��9��?��>�T����8G��d㠱�b�a�@3���zV������-���Yۗ߄�{V1�ƓdY����ޒ-L�E�ő�=��?	�wG��
KeyValueFloatf���<���$��7�c�:���8���A�b�R���j�od��Ģv�c�i�R�5�m�����W�Ɠ��k6�`�0��7�X^?��UB�Z�-����<���:��$Q������О��A��y[��܈�ݭ`��(6�ݪ��v�x@0�?��F"����-c����Z`1���k��{&�����)F�������™�$Z��M����$�����������
��:ށ�-�^���C�L�������(������Lj�����Z����������DO����	թ�`ω�jV��8�� '����
��+.ҿ�4��R�I��־���?E'L@Mݏ?�����������>M!@��@K�'@�����r޿��ٿ�\
�I�#���=�V�l��W���,��l���6U��yf|��
G��Z���R���=?�?��B?��>�B�AZ�6����v��C���(.��OP���?�����
��(��C���v�Qf��}B���U���a��S_���a�q�����Ma��ʠ�����g��Yg��^���R�������ZW�����"���}�������
���rp���S���������������K��෵�n�������C\�������s��iٚ�
��Y
���@��*g�������C��d.��b֒��Q��R��ȇ���ӝ����*���ɲ������>����������������MKeyAttrFlagsiP@!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDζ/KeyAttrDataFloatf@"xc`�V^V^(L��G�c4= B`4?��DA7�MKeyAttrRefCountiP@-��AnimationCurveL8~�-SAnimCurveS��	DefaultD`:N����KeyVerI����KeyTimel��x�}P�u�_wC�xgɔ��xq�4B=�DN��I��8v��NF�0#���(#!^,v�<6���5�\�xΈ�Ȉ�ȵ�s�Q����31��˝�(i�-Ń��
tc#��?,<�'�K
b��w=���ܺR�֟6��H;�rv�x�]�O���}�2Lc7��~���8:���Y����ƣ���l�G0�����
��Όa���g��KV�����?k?��=EJl�NV��?��jn���X����vJ|_'�u2�na�>�	�l��]��;��k��c�_��W8�#ssWKp=ݤ�1�;j�I	�œ��
\�S� [���p���j\s������e�����"h�f�70�s���l���/�Rјse<
O\l�
qS%���mX�vJ���3����F��r�0�~�E��)��t�
~�i����:���tgQ6�&c٥��0�+���_`�0������F�	Ӟ-��/&٭N����g۱�H�\X��oĸ�!7����i�s�	��gX-3j0�jt
 S�B���c�Z��̪f �z��8��PT�t]e/�ȷ�T;s_�����V~��g�4�֜��p۟[&q�F�*N�nq&���wH���	���dcw�Kfvh��Ŷ-�f���!�[�<̳��ƾ��x���\�v�#��9M�b��ݟp��.�Ef-��pUOd�(�1��B�����?&y8`Đ�;�"�0S�|K�
ظ��b�IFz8�>���?��A.�+*�n'�oc�/k>���\M�Y$cX���K�Oo~����߰�|� �������q�
�qܔEN5�U�z,��!���
p���a�t��/�,O>U�y#�Sx��2;�\oP]��D�"�s���C��0��9��?��>�T����8G��d㠱�b�a�@3���zV������-���Yۗ߄�{V1�ƓdY����ޒ-L�E�ő�=��?	�wG��
KeyValueFloatf���qҿXU��2�(2�B�9�(l�,�������s��U:��S���^ �����F@�-�??�?8V�2��ڌ����H����z���3���\��gؾ��F>�N?�YR?}y@��n@�@�`�@\
�@��x@;@��j>����������C���8���H�J?T��E�Ő*�#������;�z��Z�UGa��1��M����2�%)��/D�2�7�o�+��������뫳����Q]�?�.@���@�S�@�]�@SwA�nAB�A�4�@���@���@߇�@kڜ@4ft@1�S@7P8@��
@|��?XN?��𾈗��:��
ӿ�� �o�g����\L����b�Q/���R4�͍����("������>޾�ۥ@#b,A�
A�U
AB/�@�l�@QS�@��~@�E@�#@kB�?�֏>\TE���޿��K�#Fu�k���
3���q�������b��T��������Վ�\0���:�>��͒��g�?{���[п�I
���:��g�4�bH��ʹ�B���rf�(�:�T��_V�>�@�����0ϿW%��"%2?��?�և?���>:��
�P#;�(J��BR��P�Uz[��n��'h��`�1^�3�[��Z�Y2[��b_���_�G.]���W���P��]I�K�F��'@���8���6��/1���+�ae*��-�R�0��|1���MKeyAttrFlagsiP@!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD1�/KeyAttrDataFloatf@"xc`�V^V^(L��G�c4= B`4?��DA��MKeyAttrRefCountiP@-�AnimationCurveL��-SAnimCurveS��	DefaultD�?�KeyVerI�>�KeyTimelм.�i�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountig�AnimationCurveL��-SAnimCurveS]�	DefaultD�?u�KeyVerI���KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!-�KeyAttrDataFloatf

Z�KeyAttrRefCounti��AnimationCurveL��-SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimelм.�)�
KeyValueFloatf�?S�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�$�-SAnimCurveS�	DefaultD��s1�5�KeyVerI�M�KeyTimel��x�},��g�v-�N^zJW��9N<J�e�JaS�ޜ�t��*yYV�
es5Ƶ�bs3����VY�QdqS7���햹���~�����,�0S��z��fu�M���cU_�)7Z��a}�k�M�RV���݇�p��]6�/u��Ng��#�Y�T��2ܓ���$�&��&���s����@�Z̴N[�VԔ�I'�di�M(�Ѝ�K
����[�{z��,wG?\{�k�L��x3ij�c��k71�?�͚
Q�t�`D��L>y��u�e<UP��Ck���bn�pltOM��5��X����K��i��E�=����B?�������Ʊ`�*h�����J����bY���JvT���1��'�_����9��3˹88DQ�;�]�>�u˙*�m4s5)�F�a�_�A���/+N.�`�i۪�'�.����3F�`cC�Ӗ��j\�ܲ�{*��tt~�\#;r	�[%M���-:청�V���Ü���ڜW�W,E��L6�x��f�E�h�P�r6�oc\=��4���5�0#�`�Y�D1-0O�`}Z�] �4e)0���9�Z��E��躀y�����8'�M�?���L��W��xm��NN��`ۇ
˸��Hr�0�nÖé<)]?䙉�~��o��iu|F!�����]BW�j���1�9l����Ҩ�X�R���r,�.��ta6��im�3(�*��
�&�a�^�V�����|ON�w���钭��>�ѝ���Xޚ�3A'#(m���*�"Ҙ�1
KeyValueFloatf�$����F��� ���#������x���+��A����ˇ��?��������%�@��HAv��A���Ag��A�/�A�qAZ�A�'�?|�S�����\���������u3���ʺ�� ��T��z�M�K ��(���넽�m��x*j�@����S-�f؅@"�7AޕA��AQ:�A�z�A��?A��At(�@�!ſAW��}+��nj�+�����@����]f��(�@�{�@F�<@��ɿ8
���r��������ى����=��rr���>�֔@�0Q����C��x���������t�N3+����?&�@�A}�VA�z�A�a9A��>@ �����A�oz�@��9A�bA��@�!A!�TA"�A�Aѵ�A膖A�A�!�AS��A�4�A�A��;A* �@�^�@�)@��?UL9?��P>j�>̰�>E~<?��n?���?Hn�?��l?��)?���>7�8=:���j�O�8�7�`�����'��L�����ӿ���9������C��V�\\�����$��������\z
�f��KeyAttrFlagsi*�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD0��KeyAttrDataFloatf��



















































































��KeyAttrRefCounti*�

.��AnimationCurveL(��-SAnimCurveSd�	DefaultD@��п|�KeyVerI�%��KeyTimelq�м.�x;�G ����8y�p�<[6����h3�n�J�dq,��0&b�<�_h_`�с�n��.����X9l:gX+�����(�LP�f��%*���_H#���t� 8s@����^����*<ݠX����8F���	>�͙�׮�0����v���8�7�TQ���(�Б�dxb���C� �%�
�wp���p/��3�h����B �~� �_� `�A� �C#(!V!���l!12_�!��ȱ!A��!X�
"Oi"T>1�"���"����"P|� #���|#L�{�#�y]�#H� 4$�v�$����$촉%@tkG%�3Mu%��.�%���%"��%�q��%8�Z&�ny�&��<'0ln'����'�i�%((�J�(�f�(x��8)̤�f) d��)��X�)paL*�ߧ*�^�+h�f_+\*�+���,`Y�r,�t�,�V8*-X���-T��-�҂=.PQF�.��	�.�N�P/H͐�/�KT0�C�.2�¬�2p6��5��
KeyValueFloatfq�z��Gr����Ӿ���Ƥ���������/r�� ˾����>*V�?���?��"@	r�?�J?��>�	?�ś>>�q�.ِ��۹��p7���}���ٽ�������ھޜ��̟齜��b��<���N��+#���B��H�>�В?
W@{B@�@���?lp?�"�=�(�y����1=2�=X==��e�	�;���<�'/?�E~??�>&=��!�=��8�=���>�g�>m�?5�>�C��>y�9Ѕ����>ȼ@Ԑ�H��<�5t>��=)��=8?k>p��>9K{?��?��?�ԛ?5��>Bt
�����ξ�̼���%��I��iJ��?ށ� e>�E�>�I?[�!?�Ͼ>�gw>\�r>߲�>ڤ?<�?��?�?g׻>1�C>��=�k�=��=�,�=���=F�d=�!b=�m=�I`=;�E=���KeyAttrFlagsi*�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD���KeyAttrDataFloatf��



















































































y��KeyAttrRefCounti*�

��AnimationCurveL(��-SAnimCurveS��	DefaultD������KeyVerI��KeyTimel��x�},��g�v-�N^zJW��9N<J�e�JaS�ޜ�t��*yYV�
es5Ƶ�bs3����VY�QdqS7���햹���~�����,�0S��z��fu�M���cU_�)7Z��a}�k�M�RV���݇�p��]6�/u��Ng��#�Y�T��2ܓ���$�&��&���s����@�Z̴N[�VԔ�I'�di�M(�Ѝ�K
����[�{z��,wG?\{�k�L��x3ij�c��k71�?�͚
Q�t�`D��L>y��u�e<UP��Ck���bn�pltOM��5��X����K��i��E�=����B?�������Ʊ`�*h�����J����bY���JvT���1��'�_����9��3˹88DQ�;�]�>�u˙*�m4s5)�F�a�_�A���/+N.�`�i۪�'�.����3F�`cC�Ӗ��j\�ܲ�{*��tt~�\#;r	�[%M���-:청�V���Ü���ڜW�W,E��L6�x��f�E�h�P�r6�oc\=��4���5�0#�`�Y�D1-0O�`}Z�] �4e)0���9�Z��E��躀y�����8'�M�?���L��W��xm��NN��`ۇ
˸��Hr�0�nÖé<)]?䙉�~��o��iu|F!�����]BW�j���1�9l����Ҩ�X�R���r,�.��ta6��im�3(�*��
�&�a�^�V�����|ON�w���钭��>�ѝ���Xޚ�3A'#(m���*�"�W�1
KeyValueFloatf�$��n�Yڭ�����ÿ��ӿ�dz�椩�N����
���H;�и���\��T���;s��%�����b|�Hk0�-aÿ]׾�����sH������������>1���t��hk���f2������y.@���?��?���>U;�a����������Va��K4�[G9��E(�	��Sc����ܿ���?�'	@���?��Q?���������H����GQ����t�C�Ip@s$�@�x�@	��@�ޔ@z�w@Z_@jN?�����!4���6�nKy?[N�@��A�V@��R���	���^��sx��ֈ�*W�����g�!�h�9@=]@�j�@5�@V��@c��>9�?���?+���V��i����*����]ݩ�|p����㿰O��Z)�$iE�^�o�p�h��#��)Կ�
ܿ��k-���D��,{��<���=����r��,�s��V��<�-T��_�����������u@��Ҍ־
{��ʾjpҾP�����[�����a��l/��|�&���f�ʲ��v�%��KeyAttrFlagsi*�!iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaDx��iaD���KeyAttrDataFloatf��



















































































���KeyAttrRefCounti*�

.-�AnimationCurveL��-SAnimCurveS#�	DefaultD�?;�KeyVerI�d�KeyTimelм.���
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

 �KeyAttrRefCounti��AnimationCurveL��-SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimelм.���
KeyValueFloatf�?�KeyAttrFlagsi!S�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLH��-SAnimCurveS��	DefaultD�?��KeyVerI�$�KeyTimelм.�O�
KeyValueFloatf�?y�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�#MotionBuilder_SystemLМ3:SKTimeWarpManagerS�Properties70��/PSMoBuTypeNameSKStringSSSBox��/PSMoBuSubTypeNameSKStringSSS�BPSMoBuObjectFullNameSKStringSSSKTimeWarpManager��.PSMoBuAttrBlindDataSBlobSSIz�
BinaryDataRp��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp��/MotionBuilder_GenericLP�3:SFaceTime HD Camera (Display)S��Properties70��1PSMoBuTypeNameSKStringSSSVideo�3PSMoBuSubTypeNameSKStringSSSLivee�UPSMoBuObjectFullNameSKStringSSS#FaceTime HD Camera (Display)Video��BPS
RecordPathScharptrSSSC:\Users\bOb\Documents/Take 001-_205_Idle_JumpUpLow_NoHands_Idle-_202_Idle_JumpDownLow_BackFlip_Idle-_93_TO_96_a_U1_M_P_halfSteps2Idle_StrafeFwdFootOverTOIdle__Fb_p135_No_0_1-_89_90B_a_U1_M_P_Walk2Idle_Idle2WalkBackward_Fb_p0_No_0_0-FaceTime HD Camera (Display)-VideoRecording.avi��#PSOnlineSboolSSI�)PSResolutionFRSenumSSIT�)PSRecordToFileSboolSSI��(PSRecordAudioSboolSSI��'PS
CompressorSenumSSI��.PSMoBuAttrBlindDataSBlobSSI����
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineIs�2PSMoBuRelationBlindDataSBlobSSIf�
BinaryDataRp�0MotionBuilder_GenericL�n3:SFaceTime HD Camera (Built-in)S��Properties707�1PSMoBuTypeNameSKStringSSSVideox�3PSMoBuSubTypeNameSKStringSSSLive��VPSMoBuObjectFullNameSKStringSSS$FaceTime HD Camera (Built-in)Video-�CPS
RecordPathScharptrSSSC:\Users\bOb\Documents/Take 001-_205_Idle_JumpUpLow_NoHands_Idle-_202_Idle_JumpDownLow_BackFlip_Idle-_93_TO_96_a_U1_M_P_halfSteps2Idle_StrafeFwdFootOverTOIdle__Fb_p135_No_0_1-_89_90B_a_U1_M_P_Walk2Idle_Idle2WalkBackward_Fb_p0_No_0_0-FaceTime HD Camera (Built-in)-VideoRecording.avi^�#PSOnlineSboolSSI��)PSResolutionFRSenumSSI��)PSRecordToFileSboolSSI�(PSRecordAudioSboolSSI7�'PS
CompressorSenumSSIt�.PSMoBuAttrBlindDataSBlobSSI�g��
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp��!MotionBuilder_GenericL�73:SVideo Output 1S}�Properties70��1PSMoBuTypeNameSKStringSSSVideo��5PSMoBuSubTypeNameSKStringSSSOutput8�GPSMoBuObjectFullNameSKStringSSSVideo Output 1Videok�%PSDrawModeSenumSSI��.PSMoBuAttrBlindDataSBlobSSI)��.
BinaryDataR)p	UseMipMapIp�2PSMoBuRelationBlindDataSBlobSSIc�
BinaryDataRp\�!MotionBuilder_SystemL�C3:SKVideoRendererSO�Properties70%�2PSMoBuTypeNameSKStringSSSObjectp�=PSMoBuSubTypeNameSKStringSSSKVideoRenderer��@PSMoBuObjectFullNameSKStringSSSKVideoRenderer��.PSMoBuAttrBlindDataSBlobSSI����
BinaryDataR�p�
RendererTools4VersionIgP	StartTimeS0kStopTimeS0�StepTimeS1�OutputFormatSAVI�
OutputPathSc:\temp\Output.avi�FormatSFrom Camera	FieldModeI,QualityIORendererAntialingIk
ModelsOnlyI�ViewingModeI�StereoDisplayModeI
�RenderAudioI�AudioFormatI ShowCameraLabelI$ShowTimeCodeIBShowSafeAreaIeGlobalViewingModeI�GlobalStereoDisplayModeIB�2PSMoBuRelationBlindDataSBlobSSI5�
BinaryDataRp�	!MotionBuilder_SystemL`�3:SKSerialManagerS�	Properties70��:PSMoBuTypeNameSKStringSSSKSerialManager<�/PSMoBuSubTypeNameSKStringSSS��@PSMoBuObjectFullNameSKStringSSSKSerialManagerO	.PSMoBuAttrBlindDataSBlobSSI`B	e
BinaryDataR`pS
SerialManager�PortIJTCPPortIhInternalPortI�	IPAddressS0.0.0.0�	IPPortS3001FPortI�TCPPortIInternalPortIBaudRateI�%9
UseHardwareFCI�	2PSMoBuRelationBlindDataSBlobSSI�	
BinaryDataRpK	#MotionBuilder_SystemL@�3:SKCharacterHelperS>	Properties70{	0PSMoBuTypeNameSKStringSSSTool�	8PSMoBuSubTypeNameSKStringSSS	Character	BPSMoBuObjectFullNameSKStringSSSKCharacterHelper�	.PSMoBuAttrBlindDataSBlobSSIw	
BinaryDataRp1	2PSMoBuRelationBlindDataSBlobSSID$	I
BinaryDataRDp7CHARACTER_TOOL9KEYING_MODEISIK_MANIPIqSYMETRY_EDITI�MARKERSET_VISIBILITYI�FLOOR_CONTACT_VISIBILITYI�FINGER_TIPS_VISIBILITYI	REACH_OVERRIDEI*RESIST_OVERRIDEI�		MotionBuilder_SystemLh�3:SKNLEManagerS�		Properties70�	7PSMoBuTypeNameSKStringSSSKNLEManager%	/PSMoBuSubTypeNameSKStringSSSp	=PSMoBuObjectFullNameSKStringSSSKNLEManagerH		.PSMoBuAttrBlindDataSBlobSSIs;		x
BinaryDataRspf	GlobalNLE0VersionIY	EditSEdite	IsCurrentI}ModelsI`ResultTrack�TakeNameSNoTake�	StartL��s;�����	StopL�FI�BGhostI*TDDDSRDD�DyIsLocalI�StartRefTrackIdxI�����StopRefTrackIdxI�����	
StartRatioD�?�		StopRatioD�?
KeepActiveI2	StartLL	StopLp6��5�		2PSMoBuRelationBlindDataSBlobSSI�		
BinaryDataRp4	MotionBuilder_SystemL��3:SConstraintsS'	Properties70q
	2PSMoBuTypeNameSKStringSSSFolder�
	7PSMoBuSubTypeNameSKStringSSSCategory		EPSMoBuObjectFullNameSKStringSSSConstraintsFolder�	.PSMoBuAttrBlindDataSBlobSSI5�	:
BinaryDataR5p(
FolderTypeSConstraints	2PSMoBuRelationBlindDataSBlobSSI
	
BinaryDataRpi	 MotionBuilder_SystemLP�3:S
KAudioManagerS\	Properties70�	9PSMoBuTypeNameSKStringSSS
KAudioManager
	/PSMoBuSubTypeNameSKStringSSS_
	?PSMoBuObjectFullNameSKStringSSS
KAudioManager�	.PSMoBuAttrBlindDataSBlobSSI�	
BinaryDataRp�
AudioInputHNameSMicrophone (Display Audio)`FormatI xOnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD�
AudioInputK.NameS)Microphone (Cirrus Logic CS4206A (AB 29))cFormatI {OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD
AudioInputZ:NameS5Digital Audio (S/PDIF) (Cirrus Logic CS4206A (AB 29))rFormatI �OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayDO	2PSMoBuRelationBlindDataSBlobSSIB	
BinaryDataRp�	(MotionBuilder_SystemLp�3:SKMotionTriggerManagerS�	Properties70	APSMoBuTypeNameSKStringSSSKMotionTriggerManagerW	/PSMoBuSubTypeNameSKStringSSS�	GPSMoBuObjectFullNameSKStringSSSKMotionTriggerManager;	.PSMoBuAttrBlindDataSBlobSSI*.	/
BinaryDataR*p
KEEPACTIVEI�	2PSMoBuRelationBlindDataSBlobSSI�	
BinaryDataRpH)	MotionBuilder_SystemL�3:S
Story rootS;)	Properties70f	5PSMoBuTypeNameSKStringSSS	TimelineX�	/PSMoBuSubTypeNameSKStringSSS�	FPSMoBuObjectFullNameSKStringSSSStory rootTimeline'	"PSMutedSboolSSIX	#PSSoloedSboolSSI�	.PSRecordClipPathScharptrSSS�	 PSTracksSobjectSS�	#PS	TimelinesSobjectSS3	2PSQuaternionInterpolateSboolSSI�	JPSRotationOffsetSColorRGBSColorSDDD�	IPS
RotationPivotSColorRGBSColorSDDD9	IPS
ScalingOffsetSColorRGBSColorSDDD�	HPSScalingPivotSColorRGBSColorSDDD�	.PSTranslationActiveSboolSSI#	JPSTranslationMinSColorRGBSColorSDDD{	JPSTranslationMaxSColorRGBSColorSDDD�	,PSTranslationMinXSboolSSI�	,PSTranslationMinYSboolSSI)	,PSTranslationMinZSboolSSIc	,PSTranslationMaxXSboolSSI�	,PSTranslationMaxYSboolSSI�	,PSTranslationMaxZSboolSSI	*PS
RotationOrderSenumSSIS	6PSRotationSpaceForLimitOnlySboolSSI�	;PSRotationStiffnessXSdoubleSNumberSD�	;PSRotationStiffnessYSdoubleSNumberSD.	;PSRotationStiffnessZSdoubleSNumberSDl	0PSAxisLenSdoubleSNumberSD$@�	GPSPreRotationSColorRGBSColorSDDD	HPSPostRotationSColorRGBSColorSDDDP	+PSRotationActiveSboolSSI�	GPSRotationMinSColorRGBSColorSDDD�	GPSRotationMaxSColorRGBSColorSDDD1	)PSRotationMinXSboolSSIh	)PSRotationMinYSboolSSI�	)PSRotationMinZSboolSSI�	)PSRotationMaxXSboolSSI
	)PSRotationMaxYSboolSSID	)PSRotationMaxZSboolSSIz	(PSInheritTypeSenumSSI�	*PS
ScalingActiveSboolSSI	FPS
ScalingMinSColorRGBSColorSDDDZ	FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?�	(PSScalingMinXSboolSSI�	(PSScalingMinYSboolSSI�	(PSScalingMinZSboolSSI2 	(PSScalingMaxXSboolSSIh 	(PSScalingMaxYSboolSSI� 	(PSScalingMaxZSboolSSI� 	PPSGeometricTranslationSColorRGBSColorSDDDW!	MPSGeometricRotationSColorRGBSColorSDDD�!	LPSGeometricScalingSColorRGBSColorSD�?D�?D�?�!	6PS
MinDampRangeXSdoubleSNumberSD9"	6PS
MinDampRangeYSdoubleSNumberSD}"	6PS
MinDampRangeZSdoubleSNumberSD�"	6PS
MaxDampRangeXSdoubleSNumberSD#	6PS
MaxDampRangeYSdoubleSNumberSDI#	6PS
MaxDampRangeZSdoubleSNumberSD�#	9PSMinDampStrengthXSdoubleSNumberSD�#	9PSMinDampStrengthYSdoubleSNumberSD$	9PSMinDampStrengthZSdoubleSNumberSDe$	9PSMaxDampStrengthXSdoubleSNumberSD�$	9PSMaxDampStrengthYSdoubleSNumberSD�$	9PSMaxDampStrengthZSdoubleSNumberSD8%	7PSPreferedAngleXSdoubleSNumberSD}%	7PSPreferedAngleYSdoubleSNumberSD�%	7PSPreferedAngleZSdoubleSNumberSD�%	!PSShowSboolSSI7&	8PSNegativePercentShapeSupportSboolSSI�&	KPSLcl TranslationSColorRGBSColorSDDD�&	HPSLcl RotationSColorRGBSColorSDDD;'	GPSLcl ScalingSColorRGBSColorSD�?D�?D�?|'	3PS
VisibilitySdoubleSNumberSD�?�(	.PSMoBuAttrBlindDataSBlobSSI��(	�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI.)	2PSMoBuRelationBlindDataSBlobSSI!)	
BinaryDataRp�>	MotionBuilder_SystemL8�3:S	Edit rootS�>	Properties70�)	5PSMoBuTypeNameSKStringSSS	TimelineX*	/PSMoBuSubTypeNameSKStringSSSq*	EPSMoBuObjectFullNameSKStringSSSEdit rootTimeline�*	"PSMutedSboolSSI�*	#PSSoloedSboolSSI+	.PSRecordClipPathScharptrSSS<+	 PSTracksSobjectSSm+	#PS	TimelinesSobjectSS�+	2PSQuaternionInterpolateSboolSSI,	JPSRotationOffsetSColorRGBSColorSDDD\,	IPS
RotationPivotSColorRGBSColorSDDD�,	IPS
ScalingOffsetSColorRGBSColorSDDD	-	HPSScalingPivotSColorRGBSColorSDDDE-	.PSTranslationActiveSboolSSI�-	JPSTranslationMinSColorRGBSColorSDDD�-	JPSTranslationMaxSColorRGBSColorSDDD/.	,PSTranslationMinXSboolSSIi.	,PSTranslationMinYSboolSSI�.	,PSTranslationMinZSboolSSI�.	,PSTranslationMaxXSboolSSI/	,PSTranslationMaxYSboolSSIQ/	,PSTranslationMaxZSboolSSI�/	*PS
RotationOrderSenumSSI�/	6PSRotationSpaceForLimitOnlySboolSSI0	;PSRotationStiffnessXSdoubleSNumberSD_0	;PSRotationStiffnessYSdoubleSNumberSD�0	;PSRotationStiffnessZSdoubleSNumberSD�0	0PSAxisLenSdoubleSNumberSD$@;1	GPSPreRotationSColorRGBSColorSDDD�1	HPSPostRotationSColorRGBSColorSDDD�1	+PSRotationActiveSboolSSI2	GPSRotationMinSColorRGBSColorSDDDt2	GPSRotationMaxSColorRGBSColorSDDD�2	)PSRotationMinXSboolSSI�2	)PSRotationMinYSboolSSI3	)PSRotationMinZSboolSSIP3	)PSRotationMaxXSboolSSI�3	)PSRotationMaxYSboolSSI�3	)PSRotationMaxZSboolSSI�3	(PSInheritTypeSenumSSI,4	*PS
ScalingActiveSboolSSI�4	FPS
ScalingMinSColorRGBSColorSDDD�4	FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?
5	(PSScalingMinXSboolSSI@5	(PSScalingMinYSboolSSIv5	(PSScalingMinZSboolSSI�5	(PSScalingMaxXSboolSSI�5	(PSScalingMaxYSboolSSI6	(PSScalingMaxZSboolSSIv6	PPSGeometricTranslationSColorRGBSColorSDDD�6	MPSGeometricRotationSColorRGBSColorSDDD+7	LPSGeometricScalingSColorRGBSColorSD�?D�?D�?o7	6PS
MinDampRangeXSdoubleSNumberSD�7	6PS
MinDampRangeYSdoubleSNumberSD�7	6PS
MinDampRangeZSdoubleSNumberSD;8	6PS
MaxDampRangeXSdoubleSNumberSD8	6PS
MaxDampRangeYSdoubleSNumberSD�8	6PS
MaxDampRangeZSdoubleSNumberSD
9	9PSMinDampStrengthXSdoubleSNumberSDQ9	9PSMinDampStrengthYSdoubleSNumberSD�9	9PSMinDampStrengthZSdoubleSNumberSD�9	9PSMaxDampStrengthXSdoubleSNumberSD&:	9PSMaxDampStrengthYSdoubleSNumberSDm:	9PSMaxDampStrengthZSdoubleSNumberSD�:	7PSPreferedAngleXSdoubleSNumberSD�:	7PSPreferedAngleYSdoubleSNumberSD<;	7PSPreferedAngleZSdoubleSNumberSDk;	!PSShowSboolSSI�;	8PSNegativePercentShapeSupportSboolSSI
<	KPSLcl TranslationSColorRGBSColorSDDD`<	HPSLcl RotationSColorRGBSColorSDDD�<	GPSLcl ScalingSColorRGBSColorSD�?D�?D�?�<	3PS
VisibilitySdoubleSNumberSD�?1>	.PSMoBuAttrBlindDataSBlobSSI�$>	�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI�>	2PSMoBuRelationBlindDataSBlobSSI�>	
BinaryDataRp�A	$MotionBuilder_SystemLN3:SKTimelineXManagerS�A	Properties70k?	=PSMoBuTypeNameSKStringSSSKTimelineXManager�?	/PSMoBuSubTypeNameSKStringSSS�?	CPSMoBuObjectFullNameSKStringSSSKTimelineXManagerIA	.PSMoBuAttrBlindDataSBlobSSI�<A	�
BinaryDataR�p�GlobalTimelineX3MuteIVTimeDiscontinuityIwTimeReferentialI�EditStartEndLLp6��5�EditZoomStartEndLLp6��5�A	2PSMoBuRelationBlindDataSBlobSSI�A	
BinaryDataRp#D	MotionBuilder_SystemL(�3:SPosesSD	Properties70lB	2PSMoBuTypeNameSKStringSSSFolder�B	7PSMoBuSubTypeNameSKStringSSSCategory�B	?PSMoBuObjectFullNameSKStringSSS
PosesFolder�C	.PSMoBuAttrBlindDataSBlobSSI/�C	4
BinaryDataR/p"

FolderTypeSPoses	D	2PSMoBuRelationBlindDataSBlobSSI�C	
BinaryDataRplF	MotionBuilder_SystemLX�3:STakesS_F	Properties70�D	2PSMoBuTypeNameSKStringSSSFolder�D	7PSMoBuSubTypeNameSKStringSSSCategoryGE	?PSMoBuObjectFullNameSKStringSSS
TakesFolder�E	.PSMoBuAttrBlindDataSBlobSSI/�E	4
BinaryDataR/p"

FolderTypeSTakesRF	2PSMoBuRelationBlindDataSBlobSSIEF	
BinaryDataRpQJ	MotionBuilder_SystemL`�3:SGlobal LightSDJ	Properties70G	9PSMoBuTypeNameSKStringSSS
GlobalShadingNG	4PSMoBuSubTypeNameSKStringSSSLight�G	>PSMoBuObjectFullNameSKStringSSSGlobal Light�G	BPS
Ambient ColorSColorSSAD����?D����?D����?6H	>PS	Fog ColorSColorSSAD�?D�?D�?qH	-PS	Fog BeginSNumberSSAD@33�?�H	+PSFog EndSNumberSSAD@�@�H	/PSFog DensitySNumberSSAD@I	$PSFogModeSenumSSIMI	&PS	FogEnableSboolSSI�I	.PSMoBuAttrBlindDataSBlobSSI�I	
BinaryDataRp7J	2PSMoBuRelationBlindDataSBlobSSI*J	
BinaryDataRp�O	MotionBuilder_SystemL�3:SRendererS�O	Properties70�J	4PSMoBuTypeNameSKStringSSSRenderer,K	6PSMoBuSubTypeNameSKStringSSSDefault~K	DPSMoBuObjectFullNameSKStringSSSRendererRenderer�K	+PSFrustumCullingSboolSSI�K	*PS
DisplayNormalSboolSSI,L	/PSDisplayBoundingBoxSboolSSIuL	;PSDisplayHierarchicalBoundingBoxSboolSSI�L	,PSIDBufferPickingSboolSSI�L	=PSIDBufferPickingAlphaSdoubleSNumberSD�?4M	,PSIDBufferDisplaySboolSSIpM	.PSSelectionOverrideSboolSSI�M	FPSSelectionOverrideTransparencySdoubleSNumberSD�?$N	RPSSelectionOverrideColorSColorRGBSColorSD�������?D�?D�������?iN	7PSCurrentCallbackIndexSintSIntegerSI�����N	1PSAdvancedMaterialModeSboolSSIO	.PSMoBuAttrBlindDataSBlobSSIO	
BinaryDataRp�O	2PSMoBuRelationBlindDataSBlobSSI�O	
BinaryDataRpwX	&MotionBuilder_SystemLP�3:SPython Tool ManagerSjX	Properties70NP	4PSMoBuTypeNameSKStringSSS__FBTool�P	/PSMoBuSubTypeNameSKStringSSS�P	EPSMoBuObjectFullNameSKStringSSSPython Tool ManagerQ	'PSCaptionScharptrSSSEQ	$PSEnabledSboolSSIxQ	%PSReadOnlySboolSSI�Q	$PSVisibleSboolSSI�Q	'PSLeftSintSIntegerSIR	&PSTopSintSIntegerSIIR	(PSWidthSintSIntegerSI�R	)PSHeightSintSIntegerSI�R	*PSAnchorsSintSIntegerSI�R	(PSSkinContextSenumSSI S	$PSHintScharptrSSSWS	)PS	HintMouseScharptrSSS�S	0PS
HintMouseLeftSintSIntegerSI�����S	/PSHintMouseTopSintSIntegerSI����T	1PSHintMouseWidthSintSIntegerSI����QT	2PSHintMouseHeightSintSIntegerSI�����T	1PSHintIsTextCompletionSboolSSI�T	#PSActiveSboolSSI�T	'PS
ActiveControlSobjectSS0U	,PSBackgroundBrushSenumSSIlU	.PSBorderStyleSintSIntegerSI�U	+PSPositionSintSIntegerSI�U	-PS
StartWSizeSintSIntegerSI�V	-PS
StartHSizeSintSIntegerSI�TV	+PSMaxWSizeSintSIntegerSI�����V	+PSMaxHSizeSintSIntegerSI�����V	+PSMinWSizeSintSIntegerSI��V	+PSMinHSizeSintSIntegerSI����9W	,PS	StartXPosSintSIntegerSI����sW	,PS	StartYPosSintSIntegerSI�����W	.PSMoBuAttrBlindDataSBlobSSI�W	
BinaryDataRp]X	2PSMoBuRelationBlindDataSBlobSSIPX	
BinaryDataRpFa	(MotionBuilder_SystemLp�3:SBatch Tool (scripted)S9a	Properties70Y	4PSMoBuTypeNameSKStringSSS__FBToolXY	/PSMoBuSubTypeNameSKStringSSS�Y	GPSMoBuObjectFullNameSKStringSSSBatch Tool (scripted)�Y	'PSCaptionScharptrSSSZ	$PSEnabledSboolSSIGZ	%PSReadOnlySboolSSIyZ	$PSVisibleSboolSSI�Z	'PSLeftSintSIntegerSI�Z	&PSTopSintSIntegerSI[	(PSWidthSintSIntegerSIO[	)PSHeightSintSIntegerSI�[	*PSAnchorsSintSIntegerSI�[	(PSSkinContextSenumSSI�[	$PSHintScharptrSSS&\	)PS	HintMouseScharptrSSSd\	0PS
HintMouseLeftSintSIntegerSI�����\	/PSHintMouseTopSintSIntegerSI�����\	1PSHintMouseWidthSintSIntegerSI���� ]	2PSHintMouseHeightSintSIntegerSI����_]	1PSHintIsTextCompletionSboolSSI�]	#PSActiveSboolSSI�]	'PS
ActiveControlSobjectSS�]	,PSBackgroundBrushSenumSSI;^	.PSBorderStyleSintSIntegerSIt^	+PSPositionSintSIntegerSI�^	-PS
StartWSizeSintSIntegerSI�^	-PS
StartHSizeSintSIntegerSIm#_	+PSMaxWSizeSintSIntegerSI����\_	+PSMaxHSizeSintSIntegerSI�����_	+PSMinWSizeSintSIntegerSI��_	+PSMinHSizeSintSIntegerSI����`	,PS	StartXPosSintSIntegerSI����B`	,PS	StartYPosSintSIntegerSI�����`	.PSMoBuAttrBlindDataSBlobSSI�`	
BinaryDataRp,a	2PSMoBuRelationBlindDataSBlobSSIa	
BinaryDataRp+j	3MotionBuilder_SystemL0�3:S Character Selection/Key ControlsSj	Properties70�a	4PSMoBuTypeNameSKStringSSS__FBTool2b	/PSMoBuSubTypeNameSKStringSSS�b	RPSMoBuObjectFullNameSKStringSSS Character Selection/Key Controls�b	'PSCaptionScharptrSSS�b	$PSEnabledSboolSSI,c	%PSReadOnlySboolSSI^c	$PSVisibleSboolSSI�c	'PSLeftSintSIntegerSI�c	&PSTopSintSIntegerSI�c	(PSWidthSintSIntegerSI4d	)PSHeightSintSIntegerSIld	*PSAnchorsSintSIntegerSI�d	(PSSkinContextSenumSSI�d	$PSHintScharptrSSSe	)PS	HintMouseScharptrSSSIe	0PS
HintMouseLeftSintSIntegerSI�����e	/PSHintMouseTopSintSIntegerSI�����e	1PSHintMouseWidthSintSIntegerSI����f	2PSHintMouseHeightSintSIntegerSI����Df	1PSHintIsTextCompletionSboolSSIuf	#PSActiveSboolSSI�f	'PS
ActiveControlSobjectSS�f	,PSBackgroundBrushSenumSSI g	.PSBorderStyleSintSIntegerSIYg	+PSPositionSintSIntegerSI�g	-PS
StartWSizeSintSIntegerSI��g	-PS
StartHSizeSintSIntegerSIxh	+PSMaxWSizeSintSIntegerSI����Ah	+PSMaxHSizeSintSIntegerSI����zh	+PSMinWSizeSintSIntegerSI��h	+PSMinHSizeSintSIntegerSI�����h	,PS	StartXPosSintSIntegerSI����'i	,PS	StartYPosSintSIntegerSI�����i	.PSMoBuAttrBlindDataSBlobSSI�i	
BinaryDataRpj	2PSMoBuRelationBlindDataSBlobSSIj	
BinaryDataRp�r	MotionBuilder_SystemL`�3:S
FBX ExportS�r	Properties70�j	4PSMoBuTypeNameSKStringSSS__FBToolk	/PSMoBuSubTypeNameSKStringSSSKk	<PSMoBuObjectFullNameSKStringSSS
FBX Export�k	'PSCaptionScharptrSSS�k	$PSEnabledSboolSSI�k	%PSReadOnlySboolSSIl	$PSVisibleSboolSSILl	'PSLeftSintSIntegerSI�l	&PSTopSintSIntegerSI�l	(PSWidthSintSIntegerSI�l	)PSHeightSintSIntegerSI%m	*PSAnchorsSintSIntegerSI[m	(PSSkinContextSenumSSI�m	$PSHintScharptrSSS�m	)PS	HintMouseScharptrSSSn	0PS
HintMouseLeftSintSIntegerSI����?n	/PSHintMouseTopSintSIntegerSI����~n	1PSHintMouseWidthSintSIntegerSI�����n	2PSHintMouseHeightSintSIntegerSI�����n	1PSHintIsTextCompletionSboolSSI.o	#PSActiveSboolSSIco	'PS
ActiveControlSobjectSS�o	,PSBackgroundBrushSenumSSI�o	.PSBorderStyleSintSIntegerSIp	+PSPositionSintSIntegerSIMp	-PS
StartWSizeSintSIntegerSI^�p	-PS
StartHSizeSintSIntegerSI��p	+PSMaxWSizeSintSIntegerSI�����p	+PSMaxHSizeSintSIntegerSI����3q	+PSMinWSizeSintSIntegerSI�lq	+PSMinHSizeSintSIntegerSI�����q	,PS	StartXPosSintSIntegerSI�����q	,PS	StartYPosSintSIntegerSI����Sr	.PSMoBuAttrBlindDataSBlobSSIFr	
BinaryDataRp�r	2PSMoBuRelationBlindDataSBlobSSI�r	
BinaryDataRpך	 MotionBuilder_SystemLh�3:S
HierarchyViewSʚ	Properties70�s	;PSMoBuTypeNameSKStringSSSKtHierarchyView�s	/PSMoBuSubTypeNameSKStringSSSt	?PSMoBuObjectFullNameSKStringSSS
HierarchyViewF�	.PSMoBuAttrBlindDataSBlobSSI�%9�	�%
BinaryDataR�%p�%
HierarchyView5ShowGridI�%ObjectsAttributes�NameSReferenceModel�	XDؖ��	YD�r@�ExpandedIDNameSHipsModel	XDؖ�	YD�u@7ExpandedI�NameSSpineModel}	XDL���	YDy@�ExpandedI2NameSChestModel�	XD���	YD |@%ExpandedI�NameSNeckModelj	XDL���	YD@@�ExpandedINameSHeadModel�	XD����	YD0�@ExpandedI�NameSLeftEyeModelY	XDu��p	YD@�@�ExpandedINameSRightEyeModel�	XD*���	YD��@ExpandedI�NameS
JawModelH	XD���_	YD@�@yExpandedINameSTongueBackModel�	XD߱��	YDЄ@�ExpandedI}NameSTongueTipModel?	XD���V	YDP�@pExpandedI�NameSLeftLipLowerModel�	XDI���	YDЄ@�ExpandedIsNameS
JawENDModel5	XD���L	YDP�@fExpandedI�NameSRightLipLowerModel�	XD����	YDЄ@�ExpandedIrNameSRightLipCornerModel4	XDh��K	YDP�@eExpandedI�NameSLeftLipCornerModel�	XD���	YDЄ@�ExpandedIoNameSLeftLipUpperModel1	XDx��H	YD��@bExpandedI�NameSLeftNostrilModel�	XD���	YD@�@�ExpandedIg	NameSLeftCheekModel)		XDL��@		YD��@Z	ExpandedI�	NameSLeftEyelidLowerModel�		XD����		YD@�@�	ExpandedIi
NameSLeftEyelidUpperModel+
	XD ��B
	YD��@\
ExpandedI�
NameSLeftInnerBrowModel�
	XD����
	YD@�@�
ExpandedIhNameSLeftIOuterBrowModel*	XD���A	YD��@[ExpandedI�NameSRightInnerBrowModel�	XD^���	YD@�@�ExpandedIiNameSRightIOuterBrowModel+	XDȩ�B	YD��@\ExpandedI�NameSRightEyelidUpperModel�	XD2���	YD@�@�ExpandedIm
NameSRightEyelidLowerModel/
	XD���F
	YD��@`
ExpandedI�
NameSRightCheekModel�
	XD���
	YD@�@�
ExpandedIgNameSRightNostrilModel)	XDp��@	YD��@ZExpandedI�NameSRightLipUpperModel�	XDڦ��	YD@�@�ExpandedIeNameSRightShoulderModel'	XD���>	YD �@XExpandedI�NameSRightArmModel�	XD ���	YD��@�ExpandedI]NameSRightForeArmModel	XD���6	YD@�@PExpandedI�NameSRightHandModel�	XDL���	YDЄ@�ExpandedIYNameSRightHandPinky1Model	XD���2	YD`�@LExpandedI�NameSRightHandPinky2Model�	XD���	YD��@�ExpandedI[NameSRightHandPinky3Model	XD6��4	YD��@NExpandedI�NameSRightHandRing1Model�	XDH���	YD��@�ExpandedI[NameSRightHandRing2Model	XD���4	YDp�@NExpandedI�NameSRightHandRing3Model�	XDޡ��	YD�@�ExpandedI]NameSRightHandMiddle1Model	XD���6	YD`�@PExpandedI�NameSRightHandMiddle2Model�	XDx���	YD��@�ExpandedIaNameSRightHandMiddle3Model#	XD��:	YD��@TExpandedI�NameSRightHandIndex1Model�	XD0���	YD��@�ExpandedIcNameSRightHandIndex2Model%	XDș�<	YDp�@VExpandedI�NameSRightHandIndex3Model�	XD\���	YD�@�ExpandedIeNameSRightHandThumb1Model'	XD���>	YD`�@XExpandedI�NameSRightHandThumb2Model�	XD���	YD��@�ExpandedIgNameSRightHandThumb3Model)	XD���@	YD��@ZExpandedI�NameSLeftShoulderModel�	XD@\@�	YD �@�ExpandedI^NameSLeftArmModel 	XD�R@7	YD��@QExpandedI�NameSLeftForeArmModel�	XDC@�	YD@�@�ExpandedIUNameSLeftHandModel	XD.	YDЄ@HExpandedI�NameSLeftHandPinky1Model�	XD���	YD`�@�ExpandedIUNameSLeftHandPinky2Model	XD��.	YD��@HExpandedI�NameSLeftHandPinky3Model�	XD@���	YD��@�ExpandedITNameSLeftHandRing1Model	XDu�-	YD��@GExpandedI�NameSLeftHandRing2Model�	XDpw��	YDp�@�ExpandedIRNameSLeftHandRing3Model	XD�y�+	YD�@EExpandedI�NameSLeftHandMiddle1Model�	XD�B��	YD`�@�ExpandedITNameSLeftHandMiddle2Model	XD�R�-	YD��@GExpandedI�NameSLeftHandMiddle3Model�	XD\��	YD��@�ExpandedIUNameSLeftHandIndex1Model	XDpp@.	YD��@HExpandedI�NameSLeftHandIndex2Model�	XD l@�	YDp�@�ExpandedIU NameSLeftHandIndex3Model 	XD�g@. 	YD�@H ExpandedI� NameSLeftHandThumb1Model� 	XD��@� 	YD`�@� ExpandedIU!NameSLeftHandThumb2Model!	XDh�@.!	YD��@H!ExpandedI�!NameSLeftHandThumb3Model�!	XD�~@�!	YD��@�!ExpandedIQ"NameSRightUpLegModel"	XD�@*"	YDz@D"ExpandedI�"NameSRightLegModel�"	XDX�@�"	YD }@�"ExpandedIF#NameSRightFootModel#	XD��@#	YD �@9#ExpandedI�#NameSRightToesModel�#	XD,�@�#	YD��@�#ExpandedI<$NameSLeftUpLegModel�#	XD��@$	YDz@/$ExpandedI�$NameSLeftLegModelw$	XD`�@�$	YD }@�$ExpandedI/%NameSLeftFootModel�$	XDș@%	YD �@"%ExpandedI�%NameSLeftToesModelk%	XD4�@�%	YD��@�%ExpandedI��	2PSMoBuRelationBlindDataSBlobSSI��	
BinaryDataRpX�	MotionBuilder_SystemLH�3:S	TransportSK�	Properties70g�	,PSMoBuTypeNameSKStringSSS��	/PSMoBuSubTypeNameSKStringSSS�	;PSMoBuObjectFullNameSKStringSSS	Transport"�	'PSCaptionScharptrSSST�	$PSEnabledSboolSSI��	%PSReadOnlySboolSSI��	$PSVisibleSboolSSI�	'PSLeftSintSIntegerSI"�	&PSTopSintSIntegerSIX�	(PSWidthSintSIntegerSI��	)PSHeightSintSIntegerSIǝ	*PSAnchorsSintSIntegerSI��	(PSSkinContextSenumSSI/�	$PSHintScharptrSSSf�	)PS	HintMouseScharptrSSS��	0PS
HintMouseLeftSintSIntegerSI�����	/PSHintMouseTopSintSIntegerSI���� �	1PSHintMouseWidthSintSIntegerSI����`�	2PSHintMouseHeightSintSIntegerSI������	1PSHintIsTextCompletionSboolSSIП	#PSActiveSboolSSI�	'PS
ActiveControlSobjectSS?�	,PSBackgroundBrushSenumSSI{�	.PSBorderStyleSintSIntegerSI��	+PSPositionSintSIntegerSIǣ	.PSMoBuAttrBlindDataSBlobSSI���	�
BinaryDataR�p�Transport Tool Settings6ZoomBar Settings�Take 001wZoomWindowModeI�ZoomWindowTimeLLp6��5)Run_FastStop_Idle�ZoomWindowModeIZoomWindowTimeLLp6��5Audio Display SettingswAudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveI�SettingsE
TimeFormatIcSnapOnFramesI�ReferenceTimeIndexI����>�	2PSMoBuRelationBlindDataSBlobSSI1�	
BinaryDataRpo�	MotionBuilder_SystemL��3:SFCurveSb�	Properties70�	,PSMoBuTypeNameSKStringSSS"�	/PSMoBuSubTypeNameSKStringSSSh�	8PSMoBuObjectFullNameSKStringSSSFCurve��	'PSCaptionScharptrSSSϥ	$PSEnabledSboolSSI�	%PSReadOnlySboolSSI4�	$PSVisibleSboolSSIi�	'PSLeftSintSIntegerSI��	&PSTopSintSIntegerSIӦ	(PSWidthSintSIntegerSI
�	)PSHeightSintSIntegerSIB�	*PSAnchorsSintSIntegerSIx�	(PSSkinContextSenumSSI��	$PSHintScharptrSSS�	)PS	HintMouseScharptrSSS�	0PS
HintMouseLeftSintSIntegerSI����\�	/PSHintMouseTopSintSIntegerSI������	1PSHintMouseWidthSintSIntegerSI����ۨ	2PSHintMouseHeightSintSIntegerSI�����	1PSHintIsTextCompletionSboolSSIK�	#PSActiveSboolSSI��	'PS
ActiveControlSobjectSS��	,PSBackgroundBrushSenumSSI��	.PSBorderStyleSintSIntegerSI/�	+PSPositionSintSIntegerSIޫ	.PSMoBuAttrBlindDataSBlobSSIJѫ	O
BinaryDataRJp=FCurve Tool Settings0FCurve Editor Settings#Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveIU�	2PSMoBuRelationBlindDataSBlobSSIH�	
BinaryDataRp��	MotionBuilder_GenericL��3:S
GlobalInfoS��	Properties70
�	5PSMoBuTypeNameSKStringSSS	SceneInfoO�	7PSMoBuSubTypeNameSKStringSSSUserData��	GPSMoBuObjectFullNameSKStringSSSGlobalInfoSceneInfo�	.PSMoBuAttrBlindDataSBlobSSI��	�
BinaryDataR�pVersionId�MetaDataHVersionId_TitleSxSubjectS�AuthorS�KeywordsS�RevisionS�CommentSw�	2PSMoBuRelationBlindDataSBlobSSIj�	
BinaryDataRpXG
Connectionsݯ	CSOOL:L�	CSOOLKd;L0Bv)+�	CSOOL�:d;L(=v)R�	CSOOL�>d;LHQv)y�	CSOOLCd;L�v)��	CSOOLش�;L3v)ǰ	CSOOLЪ�;LPVv)�	CSOOL�/�;L)v)�	CSOOL�3:L�:<�	CSOOL�L�:LX��9c�	CSOOL�&�:LX��9��	CSOOL�'�:LX��9��	CSOOL�х:LX��9ر	CSOOL@��:LX��9��	CSOOL��:LX��9&�	CSOOLp5�:LX��9M�	CSOOLh�:LX��9t�	CSOOL8��:LX��9��	CSOOLx{�:LX��9²	CSOOL�څ:LX��9�	CSOOL�B�:LX��9�	CSOOL���:LX��97�	CSOOL�9�:LX��9^�	CSOOL8C�:LX��9��	CSOOL�J�:LX��9��	CSOOLPO�:LX��9ӳ	CSOOLȔ�:LX��9��	CSOOL`'�:LX��9!�	CSOOL�.�:LX��9H�	CSOOL��:LX��9o�	CSOOL�=�:LX��9��	CSOOL���:LX��9��	CSOOL [�:LX��9�	CSOOL��:LX��9�	CSOOLp��:LX��92�	CSOOLX��:LX��9Y�	CSOOL@��:LX��9��	CSOOLж�:LX��9��	CSOOLxN�:LX��9ε	CSOOL���:LX��9��	CSOOL ��:LX��9�	CSOOL��:LX��9C�	CSOOL��:LX��9j�	CSOOL�5�:LX��9��	CSOOL"�:LX��9��	CSOOL��:LX��9߶	CSOOL�G�:LX��9�	CSOOL8��:LX��9-�	CSOOL(,�:LX��9T�	CSOOLȦ�:LX��9{�	CSOOLP�:LX��9��	CSOOLh
�:LX��9ɷ	CSOOL�d�:LX��9�	CSOOLp��:LX��9�	CSOOL �:LX��9>�	CSOOLpb�:LX��9e�	CSOOLp��:LX��9��	CSOOLl�:LX��9��	CSOOLpt�:LX��9ڸ	CSOOL��:LX��9�	CSOOL�߅:LX��9(�	CSOOL@�:LX��9O�	CSOOLh��:LX��9v�	CSOOLK�:LX��9��	CSOOL@��:LX��9Ĺ	CSOOLf�:LX��9�	CSOOL���:LX��9�	CSOOLX�:LX��99�	CSOOLH$�:LX��9`�	CSOOLF�:LX��9��	CSOOL��:LX��9��	CSOOLHZ�:LX��9պ	CSOOL�օ:LX��9��	CSOOL8g�:LX��9#�	CSOOLP��:LX��9J�	CSOOL-�:LX��9q�	CSOOL�j�:LX��9��	CSOOL���:LX��9��	CSOOL�1�:LX��9�	CSOOL)�:LX��9
�	CSOOLP|�:LX��94�	CSOOLP��:LX��9[�	CSOOLx<�:LX��9��	CSOOL���:LX��9��	CSOOL��:LX��9м	CSOOLH~�:LX��9��	CSOOL9�:LX��9�	CSOOL �:LX��9E�	CSOOL�k�:LX��9l�	CSOOL���:LX��9��	CSOOL�݅:LX��9��	CSOOL҅:LX��9�	CSOOL���:LX��9�	CSOOL8�:LX��9/�	CSOOL���:LX��9V�	CSOOL���:LX��9}�	CSOOLxÅ:LX��9��	CSOOL@��:LX��9˾	CSOOL�҅:LX��9�	CSOOLx�:LX��9�	CSOOL(�:LX��9@�	CSOOL���:LX��9g�	CSOOL�i�:LX��9��	CSOOL?�:LX��9��	CSOOL�:LX��9ܿ	CSOOL�m�:LX��9�	CSOOL��:LX��9*�	CSOOL`�:LX��9Q�	CSOOLP��9L:x�	CSOOL:L:��	CSOOLn�9L:��	CSOOL:L:��	CSOOL08�:L:�	CSOOL(9<L:O�	-CSOPL�L�:L:SLcl Translation��	-CSOPL*i;L:SLcl Translation��	*CSOPL�&�:L:SLcl Rotation��	*CSOPL�(i;L:SLcl Rotation1�	)CSOPL�'�:L:SLcl Scalingh�	)CSOPLxi;L:SLcl Scaling��	CSOOL���9L:��	CSOOL:L:��	*CSOPL�х:L:SLcl Rotation&�	*CSOPL<i;L:SLcl Rotation]�	)CSOPL@��:L:SLcl Scaling��	)CSOPLX1i;L:SLcl Scaling��	CSOOL�K�9L:��	CSOOL ":L:	�	CSOOLXSK;L:0�	CSOOL�h�9L:W�	CSOOLP��9L ":~�	CSOOL(':L ":��	*CSOPL��:L ":SLcl Rotation��	*CSOPL��h;L ":SLcl Rotation%�	)CSOPLp5�:L ":SLcl Scaling\�	)CSOPL0�h;L ":SLcl Scaling��	CSOOLPX�9L(':��	CSOOL0,:L(':��	CSOOL81:L(':��	CSOOL@6:L(':�	CSOOL��z:L(':F�	CSOOL��z:L(':m�	CSOOL��z:L(':��	CSOOL��z:L(':��	CSOOL��z:L(':��	CSOOL��z:L(':	�	CSOOL{:L(':0�	CSOOL 0K;L(':W�	CSOOL(5K;L(':~�	CSOOL0:K;L(':��	CSOOL8?K;L(':��	CSOOL@DK;L(':��	CSOOLHIK;L(':�	CSOOLPNK;L(':R�	*CSOPLh�:L(':SLcl Rotation��	*CSOPL�i;L(':SLcl Rotation��	)CSOPL8��:L(':SLcl Scaling��	)CSOPLx�i;L(':SLcl Scaling�	CSOOL��9L0,:F�	CSOOLX�9L81:m�	CSOOLP&�9L@6:��	CSOOLH;:L@6:��	CSOOLP@:L@6:��	CSOOL��z:L@6:	�	CSOOL��z:L@6:0�	CSOOL��z:L@6:W�	CSOOL��z:L@6:~�	CSOOL��z:L@6:��	CSOOL�z�9LH;:��	CSOOL�$�9LP@:��	CSOOL���9L��z:�	CSOOL�ײ9L��z:A�	CSOOL�<�9L��z:h�	CSOOLP�9L��z:��	CSOOLP�9L��z:��	CSOOL��9L��z:��	CSOOL]�9L��z:�	CSOOLP_�9L��z:+�	CSOOLP;�9L��z:R�	CSOOL�9L��z:y�	CSOOLЏ�9L��z:��	CSOOLPy�9L{:��	CSOOL�>�9L 0K;��	CSOOLPȲ9L(5K;�	CSOOL��9L0:K;<�	CSOOLP�9L8?K;c�	CSOOL��9L@DK;��	CSOOLP�9LHIK;��	CSOOL��9LPNK;��	CSOOL��9LXSK;��	CSOOL`XK;LXSK;7�	*CSOPLx{�:LXSK;SLcl Rotationo�	*CSOPL��h;LXSK;SLcl Rotation��	)CSOPL�څ:LXSK;SLcl Scaling��	)CSOPL�h;LXSK;SLcl Scaling�	CSOOL�e�9L`XK;+�	CSOOLh]K;L`XK;c�	*CSOPL�B�:L`XK;SLcl Rotation��	*CSOPLȮi;L`XK;SLcl Rotation��	)CSOPL���:L`XK;SLcl Scaling	�	)CSOPL:i;L`XK;SLcl Scaling0�	CSOOL�o�9Lh]K;W�	CSOOLpbK;Lh]K;��	*CSOPL�9�:Lh]K;SLcl Rotation��	*CSOPL�7i;Lh]K;SLcl Rotation��	)CSOPL8C�:Lh]K;SLcl Scaling5�	)CSOPL��h;Lh]K;SLcl Scaling\�	CSOOL�H�9LpbK;��	CSOOLxgK;LpbK;��	CSOOL���9LpbK;��	CSOOL���9LpbK;��	CSOOL��9LpbK;�	CSOOL�9LpbK;W�	*CSOPL�J�:LpbK;SLcl Rotation��	*CSOPL8�i;LpbK;SLcl Rotation��	)CSOPLPO�:LpbK;SLcl Scaling��	)CSOPLH}i;LpbK;SLcl Scaling$�	CSOOLP��9LxgK;K�	CSOOL���9LxgK;��	*CSOPLȔ�:LxgK;SLcl Rotation��	*CSOPL`�i;LxgK;SLcl Rotation��	)CSOPL`'�:LxgK;SLcl Scaling)�	)CSOPL��h;LxgK;SLcl ScalingP�	CSOOLE�9L���9w�	CSOOL���9L���9��	*CSOPL�.�:L���9SLcl Rotation��	*CSOPL�ri;L���9SLcl Rotation�	)CSOPL��:L���9SLcl ScalingU�	)CSOPL��i;L���9SLcl Scaling|�	CSOOLЍ�9L���9��	*CSOPL�=�:L���9SLcl Rotation��	*CSOPL��h;L���9SLcl Rotation#�	)CSOPL���:L���9SLcl ScalingZ�	)CSOPL�i;L���9SLcl Scaling��	CSOOL>�9L���9��	CSOOL���9L���9��	*CSOPL [�:L���9SLcl Rotation�	*CSOPLhci;L���9SLcl RotationO�	)CSOPL��:L���9SLcl Scaling��	)CSOPL@�h;L���9SLcl Scaling��	CSOOLP�9L���9��	CSOOL���9L���9�	*CSOPLp��:L���9SLcl RotationD�	*CSOPL��h;L���9SLcl Rotation{�	)CSOPLX��:L���9SLcl Scaling��	)CSOPL�ji;L���9SLcl Scaling��	CSOOL�Ͳ9L���9�	*CSOPL@��:L���9SLcl RotationI�	*CSOPL0qi;L���9SLcl Rotation��	)CSOPLж�:L���9SLcl Scaling��	)CSOPLP<i;L���9SLcl Scaling��	CSOOL��9L���9�	CSOOL���9L���9=�	*CSOPLxN�:L���9SLcl Rotationu�	*CSOPLri;L���9SLcl Rotation��	)CSOPL���:L���9SLcl Scaling��	)CSOPL�3i;L���9SLcl Scaling
�	CSOOL��9L���91�	CSOOL���9L���9i�	*CSOPL ��:L���9SLcl Rotation��	*CSOPL -i;L���9SLcl Rotation��	)CSOPL��:L���9SLcl Scaling�	)CSOPL@mi;L���9SLcl Scaling6�	CSOOLr�9L���9n�	*CSOPL��:L���9SLcl Rotation��	*CSOPL�-i;L���9SLcl Rotation��	)CSOPL�5�:L���9SLcl Scaling�	)CSOPL�#i;L���9SLcl Scaling;�	CSOOL�>�9L��9b�	CSOOL�	�9L��9��	*CSOPL"�:L��9SLcl Rotation��	*CSOPLH>i;L��9SLcl Rotation	�	)CSOPL��:L��9SLcl Scaling@�	)CSOPL $i;L��9SLcl Scalingg�	CSOOLP�9L�	�9��	CSOOL�9L�	�9��	*CSOPL�G�:L�	�9SLcl Rotation��	*CSOPL��h;L�	�9SLcl Rotation5�	)CSOPL8��:L�	�9SLcl Scalingl�	)CSOPL�i;L�	�9SLcl Scaling��	CSOOLPb�9L�9��	*CSOPL(,�:L�9SLcl Rotation�	*CSOPLH#i;L�9SLcl Rotation:�	)CSOPLȦ�:L�9SLcl Scalingq�	)CSOPLHYi;L�9SLcl Scaling��	CSOOLֲ9L�9��	CSOOL�^�9L�9��	*CSOPLP�:L�9SLcl Rotation/�	*CSOPL@i;L�9SLcl Rotationf�	)CSOPLh
�:L�9SLcl Scaling��	)CSOPL8�h;L�9SLcl Scaling��	CSOOLP}�9L�^�9��	CSOOL�c�9L�^�9#�	*CSOPL�d�:L�^�9SLcl Rotation[�	*CSOPL�ii;L�^�9SLcl Rotation��	)CSOPLp��:L�^�9SLcl Scaling��	)CSOPL�i;L�^�9SLcl Scaling��	CSOOL�>�9L�c�9(�	*CSOPL �:L�c�9SLcl Rotation`�	*CSOPL�i;L�c�9SLcl Rotation��	)CSOPLpb�:L�c�9SLcl Scaling��	)CSOPLP�i;L�c�9SLcl Scaling��	CSOOL�g�9L�h�9�	CSOOL�m�9L�h�9T�	*CSOPLp��:L�h�9SLcl Rotation��	*CSOPL�i;L�h�9SLcl Rotation��	)CSOPLl�:L�h�9SLcl Scaling��	)CSOPL�h;L�h�9SLcl Scaling!�	CSOOL��9L�m�9H�	CSOOL�r�9L�m�9��	-CSOPLpt�:L�m�9SLcl Translation��	-CSOPL��h;L�m�9SLcl Translation��	*CSOPL��:L�m�9SLcl Rotation.�	*CSOPL(�i;L�m�9SLcl Rotatione�	)CSOPL�߅:L�m�9SLcl Scaling��	)CSOPLЬi;L�m�9SLcl Scaling��	CSOOL�f�9L�r�9��	CSOOL�w�9L�r�9%�	-CSOPL@�:L�r�9SLcl Translation`�	-CSOPL��i;L�r�9SLcl Translation��	*CSOPLh��:L�r�9SLcl Rotation��	*CSOPL0�h;L�r�9SLcl Rotation�	)CSOPLK�:L�r�9SLcl Scaling>�	)CSOPL�zi;L�r�9SLcl Scalinge�	CSOOL���9L�w�9��	CSOOL�|�9L�w�9��	CSOOL���9L�w�9��	CSOOL�
�:L�w�9�	CSOOL�:L�w�9(�	CSOOL)�:L�w�9`�	*CSOPL@��:L�w�9SLcl Rotation��	*CSOPL�Yi;L�w�9SLcl Rotation��	)CSOPLf�:L�w�9SLcl Scaling�	)CSOPL(�h;L�w�9SLcl Scaling-�	CSOOLP"�9L�|�9T�	CSOOL聬9L�|�9��	*CSOPL���:L�|�9SLcl Rotation��	*CSOPL@�i;L�|�9SLcl Rotation��	)CSOPLX�:L�|�9SLcl Scaling2�	)CSOPL0i;L�|�9SLcl ScalingY�	CSOOLС�9L聬9��	CSOOL���9L聬9��	*CSOPLH$�:L聬9SLcl Rotation��	*CSOPL��h;L聬9SLcl Rotation'�	)CSOPLF�:L聬9SLcl Scaling^�	)CSOPL�i;L聬9SLcl Scaling��	CSOOL��9L���9��	*CSOPL��:L���9SLcl Rotation��	*CSOPLH�h;L���9SLcl Rotation,�	)CSOPLHZ�:L���9SLcl Scalingc�	)CSOPL�i;L���9SLcl Scaling��	CSOOL�b�9L���9��	CSOOL��9L���9��	*CSOPL�օ:L���9SLcl Rotation!�	*CSOPLx�h;L���9SLcl RotationX�	)CSOPL8g�:L���9SLcl Scaling��	)CSOPLx�i;L���9SLcl Scaling��	CSOOLг�9L��9��	CSOOL��9L��9�	*CSOPLP��:L��9SLcl RotationM�	*CSOPL�li;L��9SLcl Rotation��	)CSOPL-�:L��9SLcl Scaling��	)CSOPL�si;L��9SLcl Scaling��	CSOOL��9L��9�	*CSOPL�j�:L��9SLcl RotationR�	*CSOPLp�h;L��9SLcl Rotation��	)CSOPL���:L��9SLcl Scaling��	)CSOPL�7i;L��9SLcl Scaling��	CSOOLPG�9L�
�:�	CSOOL��:L�
�:F�	*CSOPL�1�:L�
�:SLcl Rotation~�	*CSOPLp�h;L�
�:SLcl Rotation��	)CSOPL)�:L�
�:SLcl Scaling��	)CSOPL��h;L�
�:SLcl Scaling�	CSOOL�b�9L��::�	CSOOL��:L��:r�	*CSOPLP|�:L��:SLcl Rotation��	*CSOPL�i;L��:SLcl Rotation��	)CSOPLP��:L��:SLcl Scaling�	)CSOPL�i;L��:SLcl Scaling?�	CSOOL���9L��:w�	*CSOPLx<�:L��:SLcl Rotation��	*CSOPLp�i;L��:SLcl Rotation��	)CSOPL���:L��:SLcl Scaling�	)CSOPL��h;L��:SLcl ScalingD�	CSOOLPų9L�:k�	CSOOL�:L�:��	*CSOPL��:L�:SLcl Rotation��	*CSOPL&i;L�:SLcl Rotation�	)CSOPLH~�:L�:SLcl ScalingI�	)CSOPL�Zi;L�:SLcl Scalingp�	CSOOLP�9L�:��	CSOOL$�:L�:��	*CSOPL9�:L�:SLcl Rotation�	*CSOPL��h;L�:SLcl Rotation>�	)CSOPL �:L�:SLcl Scalingu�	)CSOPL0�i;L�:SLcl Scaling��	CSOOL��9L$�:��	*CSOPL�k�:L$�:SLcl Rotation�	*CSOPLp�h;L$�:SLcl RotationC�	)CSOPL���:L$�:SLcl Scalingz�	)CSOPL�i;L$�:SLcl Scaling��	CSOOL7�9L)�:��	CSOOL .�:L)�:�	*CSOPL�݅:L)�:SLcl Rotation8�	*CSOPL(��<L)�:SLcl Rotationo�	)CSOPL҅:L)�:SLcl Scaling��	)CSOPL���<L)�:SLcl Scaling��	CSOOL�ó9L .�:��	CSOOL(3�:L .�:,�	*CSOPL���:L .�:SLcl Rotationd�	*CSOPL���<L .�:SLcl Rotation��	)CSOPL8�:L .�:SLcl Scaling��	)CSOPLp~�<L .�:SLcl Scaling��	CSOOL^�9L(3�:1�	*CSOPL���:L(3�:SLcl Rotationi�	*CSOPLX{�<L(3�:SLcl Rotation��	)CSOPL���:L(3�:SLcl Scaling��	)CSOPL@x�<L(3�:SLcl Scaling��	CSOOLP��9L08�:%�	CSOOL8=�:L08�:]�	*CSOPLxÅ:L08�:SLcl Rotation��	*CSOPL(u�<L08�:SLcl Rotation��	)CSOPL@��:L08�:SLcl Scaling�	)CSOPLr�<L08�:SLcl Scaling*�	CSOOLP��9L8=�:Q�	CSOOL@B�:L8=�:��	*CSOPL�҅:L8=�:SLcl Rotation��	*CSOPL�n�<L8=�:SLcl Rotation��	)CSOPLx�:L8=�:SLcl Scaling/�	)CSOPL�k�<L8=�:SLcl ScalingV�	CSOOLP*�9L@B�:}�	CSOOL 9<L@B�:��	*CSOPL(�:L@B�:SLcl Rotation��	*CSOPL�h�<L@B�:SLcl Rotation$�	)CSOPL���:L@B�:SLcl Scaling[�	)CSOPL�e�<L@B�:SLcl Scaling��	CSOOL��9L 9<��	CSOOL�9L(9<��	CSOOL0
9<L(9<�	*CSOPL�i�:L(9<SLcl Rotation@�	*CSOPL薕<L(9<SLcl Rotationw�	)CSOPL?�:L(9<SLcl Scaling��	)CSOPLГ�<L(9<SLcl Scaling��	CSOOLD�9L0
9<��	CSOOL89<L0
9<4
*CSOPL�:L0
9<SLcl Rotationl
*CSOPL���<L0
9<SLcl Rotation�
)CSOPL�m�:L0
9<SLcl Scaling�
)CSOPL���<L0
9<SLcl Scaling
CSOOLP³9L89<(
CSOOL@9<L89<`
*CSOPL��:L89<SLcl Rotation�
*CSOPL���<L89<SLcl Rotation�
)CSOPL`�:L89<SLcl Scaling
)CSOPLp��<L89<SLcl Scaling-
CSOOL���9L@9<T
CSOOLX��9LЉZ:{
CSOOL��9LЉZ:�
CSOOL�,�9L�Z:�
CSOOL�	�9L�Z:�
CSOOL*i;L�,�9
CSOOL�(i;L�,�9>
CSOOLxi;L�,�9e
CSOOL<i;L�,�9�
CSOOLX1i;L�,�9�
CSOOL��h;L�,�9�
CSOOL0�h;L�,�9
CSOOL�i;L�,�9(
CSOOLx�i;L�,�9O
CSOOL��h;L�,�9v
CSOOL�h;L�,�9�
CSOOLȮi;L�,�9�
CSOOL:i;L�,�9�
CSOOL�7i;L�,�9
CSOOL��h;L�,�99
CSOOL8�i;L�,�9`
CSOOLH}i;L�,�9�
CSOOL`�i;L�,�9�
CSOOL��h;L�,�9�
CSOOL�ri;L�,�9�
CSOOL��i;L�,�9#
CSOOL��h;L�,�9J
CSOOL�i;L�,�9q
CSOOLhci;L�,�9�
CSOOL@�h;L�,�9�
CSOOL��h;L�,�9�
CSOOL�ji;L�,�9

CSOOL0qi;L�,�94
CSOOLP<i;L�,�9[
CSOOLri;L�,�9�
CSOOL�3i;L�,�9�
CSOOL -i;L�,�9�
CSOOL@mi;L�,�9�
CSOOL�-i;L�,�9
CSOOL�#i;L�,�9E
CSOOLH>i;L�,�9l
CSOOL $i;L�,�9�
CSOOL��h;L�,�9�
CSOOL�i;L�,�9�
CSOOLH#i;L�,�9	
CSOOLHYi;L�,�9/	
CSOOL@i;L�,�9V	
CSOOL8�h;L�,�9}	
CSOOL�ii;L�,�9�	
CSOOL�i;L�,�9�	
CSOOL�i;L�,�9�	
CSOOLP�i;L�,�9

CSOOL�i;L�,�9@

CSOOL�h;L�,�9g

CSOOL��h;L�,�9�

CSOOL(�i;L�,�9�

CSOOLЬi;L�,�9�

CSOOL��i;L�,�9
CSOOL0�h;L�,�9*
CSOOL�zi;L�,�9Q
CSOOL�Yi;L�,�9x
CSOOL(�h;L�,�9�
CSOOL@�i;L�,�9�
CSOOL0i;L�,�9�
CSOOL��h;L�,�9
CSOOL�i;L�,�9;
CSOOLH�h;L�,�9b
CSOOL�i;L�,�9�
CSOOLx�h;L�,�9�
CSOOLx�i;L�,�9�
CSOOL�li;L�,�9�
CSOOL�si;L�,�9%
CSOOLp�h;L�,�9L
CSOOL�7i;L�,�9s
CSOOLp�h;L�,�9�
CSOOL��h;L�,�9�
CSOOL�i;L�,�9�
CSOOL�i;L�,�9
CSOOLp�i;L�,�96
CSOOL��h;L�,�9]
CSOOL&i;L�,�9�
CSOOL�Zi;L�,�9�
CSOOL��h;L�,�9�
CSOOL0�i;L�,�9�
CSOOLp�h;L�,�9 
CSOOL�i;L�,�9G
CSOOL(��<L�,�9n
CSOOL���<L�,�9�
CSOOL���<L�,�9�
CSOOLp~�<L�,�9�
CSOOLX{�<L�,�9

CSOOL@x�<L�,�91
CSOOL(u�<L�,�9X
CSOOLr�<L�,�9
CSOOL�n�<L�,�9�
CSOOL�k�<L�,�9�
CSOOL�h�<L�,�9�
CSOOL�e�<L�,�9
CSOOL薕<L�,�9B
CSOOL�<L�,�9i
CSOOL���<L�,�9�
CSOOL���<L�,�9�
CSOOL���<L�,�9�
CSOOLp��<L�,�9

!CSOPL(^�-L*i;Sd|X<
!CSOPL��-L*i;Sd|Yk
!CSOPL���-L*i;Sd|Z�
!CSOPL���-L�(i;Sd|X�
!CSOPL���-L�(i;Sd|Y�
!CSOPL���-L�(i;Sd|Z'
!CSOPL���-Lxi;Sd|XV
!CSOPL���-Lxi;Sd|Y�
!CSOPL��-Lxi;Sd|Z�
!CSOPL���-L<i;Sd|X�
!CSOPL(1�-L<i;Sd|Y
!CSOPL8��-L<i;Sd|ZA
!CSOPL�`�-LX1i;Sd|Xp
!CSOPLXj�-LX1i;Sd|Y�
!CSOPL���-LX1i;Sd|Z�
!CSOPL(��-L��h;Sd|X�
!CSOPLH��-L��h;Sd|Y,
!CSOPL���-L��h;Sd|Z[
!CSOPL��-L0�h;Sd|X�
!CSOPL���-L0�h;Sd|Y�
!CSOPL�p�-L0�h;Sd|Z�
!CSOPL�i�-L�i;Sd|X
!CSOPL0�-L�i;Sd|YF
!CSOPLȨ�-L�i;Sd|Zu
!CSOPL�%�-Lx�i;Sd|X�
!CSOPL��-Lx�i;Sd|Y�
!CSOPL��-Lx�i;Sd|Z
!CSOPLX��-L��h;Sd|X1
!CSOPL���-L��h;Sd|Y`
!CSOPLH��-L��h;Sd|Z�
!CSOPL�H�-L�h;Sd|X�
!CSOPL���-L�h;Sd|Y�
!CSOPL���-L�h;Sd|Z
!CSOPL{�-LȮi;Sd|XK
!CSOPL��-LȮi;Sd|Yz
!CSOPL8?�-LȮi;Sd|Z�
!CSOPL��-L:i;Sd|X�
!CSOPL�Q�-L:i;Sd|Y
!CSOPL���-L:i;Sd|Z6
!CSOPLXm�-L�7i;Sd|Xe
!CSOPL��-L�7i;Sd|Y�
!CSOPLX:�-L�7i;Sd|Z�
!CSOPL���-L��h;Sd|X�
!CSOPLx��-L��h;Sd|Y!
!CSOPL��-L��h;Sd|ZP
!CSOPL��-L8�i;Sd|X
!CSOPLH��-L8�i;Sd|Y�
!CSOPL���-L8�i;Sd|Z�
!CSOPL���-LH}i;Sd|X
!CSOPL8��-LH}i;Sd|Y;
!CSOPL���-LH}i;Sd|Zj
!CSOPL	�-L`�i;Sd|X�
!CSOPL���-L`�i;Sd|Y�
!CSOPL���-L`�i;Sd|Z�
!CSOPL���-L��h;Sd|X&
!CSOPL�<�-L��h;Sd|YU
!CSOPL��-L��h;Sd|Z�
!CSOPL���-L�ri;Sd|X�
!CSOPL(=�-L�ri;Sd|Y�
!CSOPLx>�-L�ri;Sd|Z
!CSOPLHY�-L��i;Sd|X@
!CSOPL�a�-L��i;Sd|Yo
!CSOPL��-L��i;Sd|Z�
!CSOPL�@�-L��h;Sd|X�
!CSOPLH��-L��h;Sd|Y�
!CSOPL���-L��h;Sd|Z+
!CSOPL�0�-L�i;Sd|XZ
!CSOPL��-L�i;Sd|Y�
!CSOPLxw�-L�i;Sd|Z�
!CSOPL8��-Lhci;Sd|X�
!CSOPLh��-Lhci;Sd|Y
!CSOPLX��-Lhci;Sd|ZE
!CSOPL_�-L@�h;Sd|Xt
!CSOPLE�-L@�h;Sd|Y�
!CSOPL���-L@�h;Sd|Z�
!CSOPLx��-L��h;Sd|X 
!CSOPL(v�-L��h;Sd|Y0 
!CSOPL�f�-L��h;Sd|Z_ 
!CSOPL�s�-L�ji;Sd|X� 
!CSOPL(��-L�ji;Sd|Y� 
!CSOPL8��-L�ji;Sd|Z� 
!CSOPL��-L0qi;Sd|X!
!CSOPL�[�-L0qi;Sd|YJ!
!CSOPL��-L0qi;Sd|Zy!
!CSOPL��-LP<i;Sd|X�!
!CSOPL(��-LP<i;Sd|Y�!
!CSOPL���-LP<i;Sd|Z"
!CSOPL�[�-Lri;Sd|X5"
!CSOPL�[�-Lri;Sd|Yd"
!CSOPLx��-Lri;Sd|Z�"
!CSOPLX�-L�3i;Sd|X�"
!CSOPL8-�-L�3i;Sd|Y�"
!CSOPLH��-L�3i;Sd|Z #
!CSOPL���-L -i;Sd|XO#
!CSOPLhB�-L -i;Sd|Y~#
!CSOPLXI�-L -i;Sd|Z�#
!CSOPL��-L@mi;Sd|X�#
!CSOPLh��-L@mi;Sd|Y$
!CSOPL���-L@mi;Sd|Z:$
!CSOPL(��-L�-i;Sd|Xi$
!CSOPLXL�-L�-i;Sd|Y�$
!CSOPL(��-L�-i;Sd|Z�$
!CSOPLD�-L�#i;Sd|X�$
!CSOPL���-L�#i;Sd|Y%%
!CSOPL��-L�#i;Sd|ZT%
!CSOPLذ�-LH>i;Sd|X�%
!CSOPLH��-LH>i;Sd|Y�%
!CSOPL��-LH>i;Sd|Z�%
!CSOPL�	�-L $i;Sd|X&
!CSOPL(p�-L $i;Sd|Y?&
!CSOPL�-L $i;Sd|Zn&
!CSOPL�l�-L��h;Sd|X�&
!CSOPL8]�-L��h;Sd|Y�&
!CSOPLx��-L��h;Sd|Z�&
!CSOPLH��-L�i;Sd|X*'
!CSOPL�}�-L�i;Sd|YY'
!CSOPL���-L�i;Sd|Z�'
!CSOPLX
�-LH#i;Sd|X�'
!CSOPLx��-LH#i;Sd|Y�'
!CSOPL��-LH#i;Sd|Z(
!CSOPLH>�-LHYi;Sd|XD(
!CSOPLؼ�-LHYi;Sd|Ys(
!CSOPL��-LHYi;Sd|Z�(
!CSOPL�m�-L@i;Sd|X�(
!CSOPLH��-L@i;Sd|Y)
!CSOPL��-L@i;Sd|Z/)
!CSOPL�'�-L8�h;Sd|X^)
!CSOPLx��-L8�h;Sd|Y�)
!CSOPL���-L8�h;Sd|Z�)
!CSOPL�R�-L�ii;Sd|X�)
!CSOPL���-L�ii;Sd|Y*
!CSOPLت�-L�ii;Sd|ZI*
!CSOPL8�-L�i;Sd|Xx*
!CSOPL�1�-L�i;Sd|Y�*
!CSOPLX��-L�i;Sd|Z�*
!CSOPL�B�-L�i;Sd|X+
!CSOPL�^�-L�i;Sd|Y4+
!CSOPLX��-L�i;Sd|Zc+
!CSOPLX��-LP�i;Sd|X�+
!CSOPL��-LP�i;Sd|Y�+
!CSOPL8Z�-LP�i;Sd|Z�+
!CSOPLh?�-L�i;Sd|X,
!CSOPL���-L�i;Sd|YN,
!CSOPLx��-L�i;Sd|Z},
!CSOPLh�-L�h;Sd|X�,
!CSOPLH}�-L�h;Sd|Y�,
!CSOPL�{�-L�h;Sd|Z
-
!CSOPL���-L(�i;Sd|X9-
!CSOPLX7�-L(�i;Sd|Yh-
!CSOPL���-L(�i;Sd|Z�-
!CSOPL��-LЬi;Sd|X�-
!CSOPL���-LЬi;Sd|Y�-
!CSOPL���-LЬi;Sd|Z$.
!CSOPL���-L0�h;Sd|XS.
!CSOPL��-L0�h;Sd|Y�.
!CSOPL���-L0�h;Sd|Z�.
!CSOPLo�-L�zi;Sd|X�.
!CSOPLX��-L�zi;Sd|Y/
!CSOPLhT�-L�zi;Sd|Z>/
!CSOPLh�-L�Yi;Sd|Xm/
!CSOPL(��-L�Yi;Sd|Y�/
!CSOPLH��-L�Yi;Sd|Z�/
!CSOPL���-L(�h;Sd|X�/
!CSOPL�8�-L(�h;Sd|Y)0
!CSOPLz�-L(�h;Sd|ZX0
!CSOPLJ�-L@�i;Sd|X�0
!CSOPL���-L@�i;Sd|Y�0
!CSOPL�g�-L@�i;Sd|Z�0
!CSOPL�n�-L0i;Sd|X1
!CSOPL���-L0i;Sd|YC1
!CSOPL�m�-L0i;Sd|Zr1
!CSOPL�,�-L��h;Sd|X�1
!CSOPL�R�-L��h;Sd|Y�1
!CSOPLx��-L��h;Sd|Z�1
!CSOPL�v�-L�i;Sd|X.2
!CSOPL���-L�i;Sd|Y]2
!CSOPL�3�-L�i;Sd|Z�2
!CSOPL86�-LH�h;Sd|X�2
!CSOPL�i�-LH�h;Sd|Y�2
!CSOPL��-LH�h;Sd|Z3
!CSOPL(F�-L�i;Sd|XH3
!CSOPLؿ�-L�i;Sd|Yw3
!CSOPLx��-L�i;Sd|Z�3
!CSOPL(
�-Lx�h;Sd|X�3
!CSOPL�J�-Lx�h;Sd|Y4
!CSOPLX��-Lx�h;Sd|Z34
!CSOPL��-Lx�i;Sd|Xb4
!CSOPL��-Lx�i;Sd|Y�4
!CSOPL(|�-Lx�i;Sd|Z�4
!CSOPL�=�-L�li;Sd|X�4
!CSOPL�j�-L�li;Sd|Y5
!CSOPL8Q�-L�li;Sd|ZM5
!CSOPLX��-L�si;Sd|X|5
!CSOPL�~�-L�si;Sd|Y�5
!CSOPL8�-L�si;Sd|Z�5
!CSOPL8��-Lp�h;Sd|X	6
!CSOPLxG�-Lp�h;Sd|Y86
!CSOPL���-Lp�h;Sd|Zg6
!CSOPL���-L�7i;Sd|X�6
!CSOPL���-L�7i;Sd|Y�6
!CSOPL�o�-L�7i;Sd|Z�6
!CSOPLN�-Lp�h;Sd|X#7
!CSOPL���-Lp�h;Sd|YR7
!CSOPL���-Lp�h;Sd|Z�7
!CSOPL(��-L��h;Sd|X�7
!CSOPL؏�-L��h;Sd|Y�7
!CSOPL�b�-L��h;Sd|Z8
!CSOPL���-L�i;Sd|X=8
!CSOPL��-L�i;Sd|Yl8
!CSOPL�P�-L�i;Sd|Z�8
!CSOPL�T�-L�i;Sd|X�8
!CSOPL�'�-L�i;Sd|Y�8
!CSOPLx��-L�i;Sd|Z(9
!CSOPL���-Lp�i;Sd|XW9
!CSOPLHA�-Lp�i;Sd|Y�9
!CSOPL���-Lp�i;Sd|Z�9
!CSOPL8��-L��h;Sd|X�9
!CSOPL���-L��h;Sd|Y:
!CSOPL8��-L��h;Sd|ZB:
!CSOPL���-L&i;Sd|Xq:
!CSOPLX��-L&i;Sd|Y�:
!CSOPL���-L&i;Sd|Z�:
!CSOPLX��-L�Zi;Sd|X�:
!CSOPL�H�-L�Zi;Sd|Y-;
!CSOPL��-L�Zi;Sd|Z\;
!CSOPL���-L��h;Sd|X�;
!CSOPL��-L��h;Sd|Y�;
!CSOPLh��-L��h;Sd|Z�;
!CSOPL���-L0�i;Sd|X<
!CSOPL�C�-L0�i;Sd|YG<
!CSOPLX(�-L0�i;Sd|Zv<
!CSOPL�_�-Lp�h;Sd|X�<
!CSOPL(.�-Lp�h;Sd|Y�<
!CSOPLXs�-Lp�h;Sd|Z=
!CSOPL�P�-L�i;Sd|X2=
!CSOPLx��-L�i;Sd|Ya=
!CSOPL���-L�i;Sd|Z�=
!CSOPLH��-L(��<Sd|X�=
!CSOPL�6�-L(��<Sd|Y�=
!CSOPL�-�-L(��<Sd|Z>
!CSOPL��-L���<Sd|XL>
!CSOPL�.�-L���<Sd|Y{>
!CSOPLH�-L���<Sd|Z�>
!CSOPL���-L���<Sd|X�>
!CSOPL(U�-L���<Sd|Y?
!CSOPLx)�-L���<Sd|Z7?
!CSOPL���-Lp~�<Sd|Xf?
!CSOPL���-Lp~�<Sd|Y�?
!CSOPL���-Lp~�<Sd|Z�?
!CSOPL��-LX{�<Sd|X�?
!CSOPL���-LX{�<Sd|Y"@
!CSOPL�>�-LX{�<Sd|ZQ@
!CSOPL89�-L@x�<Sd|X�@
!CSOPL�k�-L@x�<Sd|Y�@
!CSOPL���-L@x�<Sd|Z�@
!CSOPL8��-L(u�<Sd|X
A
!CSOPLȁ�-L(u�<Sd|Y<A
!CSOPLt�-L(u�<Sd|ZkA
!CSOPL�A�-Lr�<Sd|X�A
!CSOPL(��-Lr�<Sd|Y�A
!CSOPL���-Lr�<Sd|Z�A
!CSOPL�4�-L�n�<Sd|X'B
!CSOPL(@�-L�n�<Sd|YVB
!CSOPL�D�-L�n�<Sd|Z�B
!CSOPL8��-L�k�<Sd|X�B
!CSOPL�:�-L�k�<Sd|Y�B
!CSOPL�B�-L�k�<Sd|ZC
!CSOPL�d�-L�h�<Sd|XAC
!CSOPL��-L�h�<Sd|YpC
!CSOPL���-L�h�<Sd|Z�C
!CSOPL(I�-L�e�<Sd|X�C
!CSOPL8��-L�e�<Sd|Y�C
!CSOPL؛�-L�e�<Sd|Z,D
!CSOPL���-L薕<Sd|X[D
!CSOPL(��-L薕<Sd|Y�D
!CSOPLh*�-L薕<Sd|Z�D
!CSOPLؕ�-LГ�<Sd|X�D
!CSOPL�'�-L�<Sd|YE
!CSOPL���-L�<Sd|ZFE
!CSOPL���-L���<Sd|XuE
!CSOPLb�-L���<Sd|Y�E
!CSOPL8~�-L���<Sd|Z�E
!CSOPL��-L���<Sd|XF
!CSOPL��-L���<Sd|Y1F
!CSOPL��-L���<Sd|Z`F
!CSOPL�$�-L���<Sd|X�F
!CSOPL(��-L���<Sd|Y�F
!CSOPL(��-L���<Sd|Z�F
!CSOPL��-Lp��<Sd|XG
!CSOPL��-Lp��<Sd|YKG
!CSOPLH��-Lp��<Sd|Z�H
Takes�G

CurrentSTake 0010H

TakeSTake 001�G
FileNameSTake_001.tak�G
	LocalTimeLLp6��5#H

ReferenceTimeLLp6��5�H
TakeSRun_FastStop_Idle�H
FileNameSRun_FastStop_Idle.tak�H
	LocalTimeLм.�L���9�H

ReferenceTimeLм.�L���9���
���c�~��&s��Z�j���~���u�)

Commits for Nextrek/SpaceCrew/SpaceCrew/Assets/Raw Mocap Data/Animations/Running/Run_FastStop_Idle.fbx

Diff revisions: vs.
Revision Author Commited Message
83 FMMortaroli picture FMMortaroli Tue 13 May, 2014 11:32:51 +0000