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
Kaydara FBX Binary  ��FBXHeaderExtension\FBXHeaderVersionI�x
FBXVersionI��EncryptionTypeI�CreationTimeStamp�VersionI��YearI��MonthIDayI'HourI?MinuteIWSecondItMillisecondI��'CreatorS"FBX SDK/FBX Plugins version 2013.0�'	SceneInfoSGlobalInfoSceneInfoSUserData
TypeSUserData0VersionIdMetaData^VersionIduTitleS�SubjectS�AuthorS�KeywordsS�RevisionS�CommentS�Properties70��PSDocumentUrlSKStringSUrlSSeC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_219_Run_JumpDownHigh_Roll_Run.fbx^�PSSrcDocumentUrlSKStringSUrlSSeC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_219_Run_JumpDownHigh_Roll_Run.fbx�$PSOriginalSCompoundSS�BPSOriginal|ApplicationVendorSKStringSSSAutodesk3EPSOriginal|ApplicationNameSKStringSSS
MotionBuilder�?PSOriginal|ApplicationVersionSKStringSSS2013�MPSOriginal|DateTime_GMTSDateTimeSSS08/11/2012 21:12:28.9071PSOriginal|FileNameSKStringSSSM%PS	LastSavedSCompoundSS�CPSLastSaved|ApplicationVendorSKStringSSSAutodesk�FPSLastSaved|ApplicationNameSKStringSSS
MotionBuilder@@PSLastSaved|ApplicationVersionSKStringSSS2013�NPSLastSaved|DateTime_GMTSDateTimeSSS08/11/2012 21:12:28.907�FileIdR*�!�)�ƲĿ,�)�� CreationTimeS2012-11-08 16:12:28:916j6CreatorS1FBX SDK/FBX Plugins version 2013.0 build=20120105�GlobalSettings�VersionI��Properties70�)PSUpAxisSintSIntegerSI)	-PS
UpAxisSignSintSIntegerSIc	,PS	FrontAxisSintSIntegerSI�	0PS
FrontAxisSignSintSIntegerSI�	,PS	CoordAxisSintSIntegerSI
0PS
CoordAxisSignSintSIntegerSIX
1PSOriginalUpAxisSintSIntegerSI�����
5PSOriginalUpAxisSignSintSIntegerSI�
8PSUnitScaleFactorSdoubleSNumberSD�?/@PSOriginalUnitScaleFactorSdoubleSNumberSD�?�HPSAmbientColorSColorRGBSColorSD����?D����?D����?�APS
DefaultCameraSKStringSSSProducer Perspective%PSTimeModeSenumSSIH3PS
TimeSpanStartSKTimeSTimeSL�2PSTimeSpanStopSKTimeSTimeSLp6��5�8PSCustomFrameRateSdoubleSNumberSD�&	Documents
CountI!DocumentL~�S	KFbxSceneSScene�
Properties70�
&PSSourceObjectSobjectSS�
;PSActiveAnimStackNameSKStringSSSTake 001	RootNodeLJ
References�CDefinitions{VersionId�CountI��
ObjectTypeSGlobalSettings�CountI4
ObjectTypeSMotionBuilder_System'CountI�"

ObjectTypeSModellCountIT�"PropertyTemplateSFbxNode�"Properties70�2PSQuaternionInterpolateSenumSSIGKPSRotationOffsetSVector3DSVectorSDDD�JPS
RotationPivotSVector3DSVectorSDDD�JPS
ScalingOffsetSVector3DSVectorSDDDNIPSScalingPivotSVector3DSVectorSDDD�.PSTranslationActiveSboolSSI�KPSTranslationMinSVector3DSVectorSDDD<KPSTranslationMaxSVector3DSVectorSDDDv,PSTranslationMinXSboolSSI�,PSTranslationMinYSboolSSI�,PSTranslationMinZSboolSSI$,PSTranslationMaxXSboolSSI^,PSTranslationMaxYSboolSSI�,PSTranslationMaxZSboolSSI�*PS
RotationOrderSenumSSI6PSRotationSpaceForLimitOnlySboolSSI];PSRotationStiffnessXSdoubleSNumberSD�;PSRotationStiffnessYSdoubleSNumberSD�;PSRotationStiffnessZSdoubleSNumberSD-0PSAxisLenSdoubleSNumberSD$@�HPSPreRotationSVector3DSVectorSDDD�IPSPostRotationSVector3DSVectorSDDD+PSRotationActiveSboolSSIiHPSRotationMinSVector3DSVectorSDDD�HPSRotationMaxSVector3DSVectorSDDD�)PSRotationMinXSboolSSI-)PSRotationMinYSboolSSId)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI�)PSRotationMaxYSboolSSI	)PSRotationMaxZSboolSSI?(PSInheritTypeSenumSSIw*PS
ScalingActiveSboolSSI�GPS
ScalingMinSVector3DSVectorSDDD!GPS
ScalingMaxSVector3DSVectorSD�?D�?D�?W(PSScalingMinXSboolSSI�(PSScalingMinYSboolSSI�(PSScalingMinZSboolSSI�(PSScalingMaxXSboolSSI/(PSScalingMaxYSboolSSIe(PSScalingMaxZSboolSSI�QPSGeometricTranslationSVector3DSVectorSDDD NPSGeometricRotationSVector3DSVectorSDDD{MPSGeometricScalingSVector3DSVectorSD�?D�?D�?�6PS
MinDampRangeXSdoubleSNumberSD6PS
MinDampRangeYSdoubleSNumberSDG6PS
MinDampRangeZSdoubleSNumberSD�6PS
MaxDampRangeXSdoubleSNumberSD�6PS
MaxDampRangeYSdoubleSNumberSD6PS
MaxDampRangeZSdoubleSNumberSDZ9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD�9PSMinDampStrengthZSdoubleSNumberSD/9PSMaxDampStrengthXSdoubleSNumberSDv9PSMaxDampStrengthYSdoubleSNumberSD�9PSMaxDampStrengthZSdoubleSNumberSD7PSPreferedAngleXSdoubleSNumberSDG7PSPreferedAngleYSdoubleSNumberSD�7PSPreferedAngleZSdoubleSNumberSD�(PSLookAtPropertySobjectSS�*PSUpVectorPropertySobjectSS) !PSShowSboolSSIo 8PSNegativePercentShapeSupportSboolSSI� 8PSDefaultAttributeIndexSintSIntegerSI����� #PSFreezeSboolSSI!#PSLODBoxSboolSSIs!NPSLcl TranslationSLcl TranslationSSADDD�!HPSLcl RotationSLcl RotationSSADDD"FPSLcl ScalingSLcl ScalingSSAD�?D�?D�?]"2PS
VisibilityS
VisibilitySSAD�?�"EPSVisibility InheritanceSVisibility InheritanceSSI�=
ObjectTypeS
NodeAttribute#CountIT�=PropertyTemplateS	FbxCamera�=Properties70�#>PSPositionSVectorSSADDDI��#>PSUpVectorSVectorSSADD�?DG$FPSInterestPositionSVectorSSADDD{$&PSRollSRollSSAD�$:PSOpticalCenterXSOpticalCenterXSSAD%:PSOpticalCenterYSOpticalCenterYSSAD]%DPSBackgroundColorSColorSSAD)\���(�?D)\���(�?D)\���(�?�%-PS	TurnTableSNumberSSAD�%1PSDisplayTurnTableIconSboolSSI&*PS
UseMotionBlurSboolSSIO&2PSUseRealTimeMotionBlurSboolSSI�&9PSMotion Blur IntensitySNumberSSAD�?�&,PSAspectRatioModeSenumSSI'4PSAspectWidthSdoubleSNumberSDt@U'5PSAspectHeightSdoubleSNumberSDi@�'9PSPixelAspectRatioSdoubleSNumberSD�?�'/PSFilmOffsetXSNumberSSAD(/PSFilmOffsetYSNumberSSADV(2PS	FilmWidthSdoubleSNumberSD�&1��?�(3PS
FilmHeightSdoubleSNumberSD/�$���?�(8PSFilmAspectRatioSdoubleSNumberSDUUUUUU�?$)9PSFilmSqueezeRatioSdoubleSNumberSD�?^),PSFilmFormatIndexSenumSSI�),PSPreScaleSNumberSSAD�?�)2PSFilmTranslateXSNumberSSAD*2PSFilmTranslateYSNumberSSADX*2PSFilmRollPivotXSNumberSSAD�*2PSFilmRollPivotYSNumberSSAD�*1PS
FilmRollValueSNumberSSAD+*PS
FilmRollOrderSenumSSIF+)PSApertureModeSenumSSIx+$PSGateFitSenumSSI�+4PSFieldOfViewSFieldOfViewSSAD�p9@�+6PSFieldOfViewXSFieldOfViewXSSADD@B,6PSFieldOfViewYSFieldOfViewYSSADD@,/PSFocalLengthSNumberSSAD&��VrA@�,)PSCameraFormatSenumSSI�,*PS
UseFrameColorSboolSSIB-FPS
FrameColorSColorRGBSColorSD333333�?D333333�?D333333�?u-%PSShowNameSboolSSI�--PSShowInfoOnMovingSboolSSI�-%PSShowGridSboolSSI..PSShowOpticalCenterSboolSSIT.'PS
ShowAzimutSboolSSI�.)PSShowTimeCodeSboolSSI�.&PS	ShowAudioSboolSSI/GPS
AudioColorSVector3DSVectorSDD�?DT/2PS	NearPlaneSdoubleSNumberSD$@�/1PSFarPlaneSdoubleSNumberSD@�@�/1PSAutoComputeClipPanesSboolSSI0/PSViewCameraToLookAtSboolSSIQ04PSViewFrustumNearFarPlaneSboolSSI�05PSViewFrustumBackPlaneModeSenumSSI�05PSBackPlaneDistanceSNumberSSAD@�@12PSBackPlaneDistanceModeSenumSSI[16PSViewFrustumFrontPlaneModeSenumSSI�16PSFrontPlaneDistanceSNumberSSAD$@�13PSFrontPlaneDistanceModeSenumSSI2%PSLockModeSboolSSIT23PSLockInterestNavigationSboolSSI�2.PSBackPlateFitImageSboolSSI�2*PS
BackPlateCropSboolSSI3,PSBackPlateCenterSboolSSI?3/PSBackPlateKeepRatioSboolSSI�3@PSBackgroundAlphaTresholdSdoubleSNumberSD�?�3*PS
ShowBackplateSboolSSI44PSBackPlaneOffsetXSNumberSSADI44PSBackPlaneOffsetYSNumberSSAD�45PSBackPlaneRotationSNumberSSAD�43PSBackPlaneScaleXSNumberSSAD�?53PSBackPlaneScaleYSNumberSSAD�?H5,PSBackground TextureSobjectSS�5/PSFrontPlateFitImageSboolSSI�5+PSFrontPlateCropSboolSSI�5-PSFrontPlateCenterSboolSSI760PSFrontPlateKeepRatioSboolSSI�6;PSForeground OpacitySdoubleSNumberSD�?�6+PSShowFrontplateSboolSSI�65PSFrontPlaneOffsetXSNumberSSAD?75PSFrontPlaneOffsetYSNumberSSAD�76PSFrontPlaneRotationSNumberSSAD�74PSFrontPlaneScaleXSNumberSSAD�?84PSFrontPlaneScaleYSNumberSSAD�?A8,PSForeground TextureSobjectSS{8,PSDisplaySafeAreaSboolSSI�84PSDisplaySafeAreaOnRenderSboolSSI�81PSSafeAreaDisplayStyleSenumSSIF9<PSSafeAreaAspectRatioSdoubleSNumberSDFUUUUU�?�9/PSUse2DMagnifierZoomSboolSSI�95PS2D Magnifier ZoomSNumberSSADY@:2PS2D Magnifier XSNumberSSADI@F:2PS2D Magnifier YSNumberSSADI@�:1PSCameraProjectionTypeSenumSSI�:2PS	OrthoZoomSdoubleSNumberSD�?;0PSUseRealTimeDOFAndAASboolSSI=;,PSUseDepthOfFieldSboolSSIs;(PSFocusSourceSenumSSI�;3PS
FocusAngleSdoubleSNumberSD@�;6PS
FocusDistanceSdoubleSNumberSDi@2<,PSUseAntialiasingSboolSSI~<>PSAntialiasingIntensitySdoubleSNumberSD��9�}��?�</PSAntialiasingMethodSenumSSI�<2PSUseAccumulationBufferSboolSSI>=5PSFrameSamplingCountSintSIntegerSIz=.PSFrameSamplingTypeSenumSSI�=APSColorSColorRGBSColorSD�������?D�������?D�������?E>
ObjectTypeSMotionBuilder_Generic8>CountIA
ObjectTypeSAnimationLayer�>CountI�@PropertyTemplateSFbxAnimLayer�@Properties70?*PSWeightSNumberSSADY@4?!PSMuteSboolSSIc?!PSSoloSboolSSI�?!PSLockSboolSSI�?APSColorSColorRGBSColorSD�������?D�������?D�������?@&PS	BlendModeSenumSSIX@5PSRotationAccumulationModeSenumSSI�@2PSScaleAccumulationModeSenumSSI�@5PSBlendModeBypassS	ULongLongSSL�B
ObjectTypeSAnimationStackCACountI�BPropertyTemplateSFbxAnimStack�BProperties70�A+PSDescriptionSKStringSSSB0PS
LocalStartSKTimeSTimeSL>B/PS	LocalStopSKTimeSTimeSL�B4PSReferenceStartSKTimeSTimeSL�B3PS
ReferenceStopSKTimeSTimeSL:C
ObjectTypeSAnimationCurveNode-CCountI��C
ObjectTypeSAnimationCurve{CCountI#��	Objects�H<
NodeAttributeLH+�:S#Producer PerspectiveNodeAttributeSCameraGProperties70dD>PSPositionSVectorSSADD b@D�r@�DFPSInterestPositionSVectorSSAD1�ʧ�U�<D�����V@D
EDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?IE1PSDisplayTurnTableIconSboolSSI�E,PSFilmFormatIndexSenumSSI�E4PSFieldOfViewSFieldOfViewSSADD@F/PSFocalLengthSNumberSSAD �Z5@LF<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�F5PS2D Magnifier ZoomSNumberSSAD�F2PS2D Magnifier XSNumberSSADG2PS2D Magnifier YSNumberSSAD=G	TypeFlagsSCamera^GGeometryVersionI|�GPositionDD b@D�r@�GUpDD�?D�GLookAtD1�ʧ�U�<D�����V@DHShowInfoOnMovingI#H	ShowAudioIUH
AudioColorDD�?DzH	CameraOrthoZoomD�?N6
NodeAttributeLP/�:SProducer FrontNodeAttributeSCamera�LProperties70<I>PSPositionSVectorSSADD�V@DL�@�IFPSInterestPositionSVectorSSADD�V@D�IDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?!J1PSDisplayTurnTableIconSboolSSI[J,PSFilmFormatIndexSenumSSI�J4PSFieldOfViewSFieldOfViewSSADD@�J/PSFocalLengthSNumberSSAD �Z5@K2PS	NearPlaneSdoubleSNumberSD�?YK1PSFarPlaneSdoubleSNumberSDL�@�K<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�K5PS2D Magnifier ZoomSNumberSSAD&L2PS2D Magnifier XSNumberSSADfL2PS2D Magnifier YSNumberSSAD�L1PSCameraProjectionTypeSenumSSI�L	TypeFlagsSCamera�LGeometryVersionI|$MPositionDD�V@DL�@NMUpDD�?D|MLookAtDD�V@D�MShowInfoOnMovingI�M	ShowAudioI�M
AudioColorDD�?DN	CameraOrthoZoomD�?�S5
NodeAttributeLX3�:SProducer BackNodeAttributeSCameraGRProperties70�N>PSPositionSVectorSSADD�V@DL��%OFPSInterestPositionSVectorSSADD�V@DwODPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�O1PSDisplayTurnTableIconSboolSSI�O,PSFilmFormatIndexSenumSSI2P4PSFieldOfViewSFieldOfViewSSADD@oP/PSFocalLengthSNumberSSAD �Z5@�P2PS	NearPlaneSdoubleSNumberSD�?�P1PSFarPlaneSdoubleSNumberSDL�@8Q<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?{Q5PS2D Magnifier ZoomSNumberSSAD�Q2PS2D Magnifier XSNumberSSAD�Q2PS2D Magnifier YSNumberSSAD:R1PSCameraProjectionTypeSenumSSIhR	TypeFlagsSCamera�RGeometryVersionI|�RPositionDD�V@DL���RUpDD�?DSLookAtDD�V@D3SShowInfoOnMovingINS	ShowAudioI�S
AudioColorDD�?D�S	CameraOrthoZoomD�?HY6
NodeAttributeL`7�:SProducer RightNodeAttributeSCamera�WProperties70gT>PSPositionSVectorSSADL�@D�V@D�TFPSInterestPositionSVectorSSADD�V@D
UDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?LU1PSDisplayTurnTableIconSboolSSI�U,PSFilmFormatIndexSenumSSI�U4PSFieldOfViewSFieldOfViewSSADD@V/PSFocalLengthSNumberSSAD �Z5@EV2PS	NearPlaneSdoubleSNumberSD�?�V1PSFarPlaneSdoubleSNumberSDL�@�V<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?W5PS2D Magnifier ZoomSNumberSSADQW2PS2D Magnifier XSNumberSSAD�W2PS2D Magnifier YSNumberSSAD�W1PSCameraProjectionTypeSenumSSI�W	TypeFlagsSCameraXGeometryVersionI|OXPositionDL�@D�V@DyXUpDD�?D�XLookAtDD�V@D�XShowInfoOnMovingI�X	ShowAudioIY
AudioColorDD�?D;Y	CameraOrthoZoomD�?�^5
NodeAttributeL��:SProducer LeftNodeAttributeSCamerar]Properties70�Y>PSPositionSVectorSSADL��D�V@DPZFPSInterestPositionSVectorSSADD�V@D�ZDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�Z1PSDisplayTurnTableIconSboolSSI[,PSFilmFormatIndexSenumSSI][4PSFieldOfViewSFieldOfViewSSADD@�[/PSFocalLengthSNumberSSAD �Z5@�[2PS	NearPlaneSdoubleSNumberSD�?\1PSFarPlaneSdoubleSNumberSDL�@c\<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�\5PS2D Magnifier ZoomSNumberSSAD�\2PS2D Magnifier XSNumberSSAD&]2PS2D Magnifier YSNumberSSADe]1PSCameraProjectionTypeSenumSSI�]	TypeFlagsSCamera�]GeometryVersionI|�]PositionDL��D�V@D^UpDD�?D<^LookAtDD�V@D^^ShowInfoOnMovingIy^	ShowAudioI�^
AudioColorDD�?D�^	CameraOrthoZoomD�?�d4
NodeAttributeL�O�:SProducer TopNodeAttributeSCameraRcProperties70�_>PSPositionSVectorSSADDy�@D�_>PSUpVectorSVectorSSADDD�0`FPSInterestPositionSVectorSSADD�V@D�`DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�`1PSDisplayTurnTableIconSboolSSI�`,PSFilmFormatIndexSenumSSI=a4PSFieldOfViewSFieldOfViewSSADD@za/PSFocalLengthSNumberSSAD �Z5@�a2PS	NearPlaneSdoubleSNumberSD�?�a1PSFarPlaneSdoubleSNumberSDL�@Cb<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�b5PS2D Magnifier ZoomSNumberSSAD�b2PS2D Magnifier XSNumberSSADc2PS2D Magnifier YSNumberSSADEc1PSCameraProjectionTypeSenumSSIsc	TypeFlagsSCamera�cGeometryVersionI|�cPositionDDy�@D�cUpDDD�dLookAtDD�V@D>dShowInfoOnMovingIYd	ShowAudioI�d
AudioColorDD�?D�d	CameraOrthoZoomD�?�j7
NodeAttributeL�S�:SProducer BottomNodeAttributeSCamera5iProperties70se>PSPositionSVectorSSADD��D�e>PSUpVectorSVectorSSAD�D�D�?fFPSInterestPositionSVectorSSADD�V@DefDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�f1PSDisplayTurnTableIconSboolSSI�f,PSFilmFormatIndexSenumSSI g4PSFieldOfViewSFieldOfViewSSADD@]g/PSFocalLengthSNumberSSAD �Z5@�g2PS	NearPlaneSdoubleSNumberSD�?�g1PSFarPlaneSdoubleSNumberSDL�@&h<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?ih5PS2D Magnifier ZoomSNumberSSAD�h2PS2D Magnifier XSNumberSSAD�h2PS2D Magnifier YSNumberSSAD(i1PSCameraProjectionTypeSenumSSIVi	TypeFlagsSCamerawiGeometryVersionI|�iPositionDD��D�iUpD�D�D�?�iLookAtDD�V@D!jShowInfoOnMovingI<j	ShowAudioInj
AudioColorDD�?D�j	CameraOrthoZoomD�?�k?
NodeAttributeL��9SCamera SwitcherNodeAttributeSCameraSwitcherZkProperties70Mk-PSCamera IndexSIntegerSSAIskVersionIe�kNameSCamera SwitcherModel�kCameraIdI�k
CameraNameId�kCameraIndexNamerl*
NodeAttributeL�\Q;SNodeAttributeSLimbNodeel
	TypeFlagsSSkeleton�l*
NodeAttributeL�EQ;SNodeAttributeSLimbNode�l
	TypeFlagsSSkeletonZm*
NodeAttributeL�IQ;SNodeAttributeSLimbNodeMm
	TypeFlagsSSkeleton�m*
NodeAttributeL`EQ;SNodeAttributeSLimbNode�m
	TypeFlagsSSkeletonBn*
NodeAttributeL�MQ;SNodeAttributeSLimbNode5n
	TypeFlagsSSkeleton�n*
NodeAttributeL�VQ;SNodeAttributeSLimbNode�n
	TypeFlagsSSkeleton*o*
NodeAttributeL QQ;SNodeAttributeSLimbNodeo
	TypeFlagsSSkeleton�o*
NodeAttributeL aQ;SNodeAttributeSLimbNode�o
	TypeFlagsSSkeletonp*
NodeAttributeL {Q;SNodeAttributeSLimbNodep
	TypeFlagsSSkeleton�p*
NodeAttributeL`{Q;SNodeAttributeSLimbNodeyp
	TypeFlagsSSkeleton�p*
NodeAttributeL�AQ;SNodeAttributeSLimbNode�p
	TypeFlagsSSkeletonnq*
NodeAttributeL�yQ;SNodeAttributeSLimbNodeaq
	TypeFlagsSSkeleton�q*
NodeAttributeL�eQ;SNodeAttributeSLimbNode�q
	TypeFlagsSSkeletonVr*
NodeAttributeL hQ;SNodeAttributeSLimbNodeIr
	TypeFlagsSSkeleton�r*
NodeAttributeL�kQ;SNodeAttributeSLimbNode�r
	TypeFlagsSSkeleton>s*
NodeAttributeL�vQ;SNodeAttributeSLimbNode1s
	TypeFlagsSSkeleton�s*
NodeAttributeL`wQ;SNodeAttributeSLimbNode�s
	TypeFlagsSSkeleton&t*
NodeAttributeL vQ;SNodeAttributeSLimbNodet
	TypeFlagsSSkeleton�t*
NodeAttributeL`uQ;SNodeAttributeSLimbNode�t
	TypeFlagsSSkeletonu*
NodeAttributeL�tQ;SNodeAttributeSLimbNodeu
	TypeFlagsSSkeleton�u*
NodeAttributeL�sQ;SNodeAttributeSLimbNodeuu
	TypeFlagsSSkeleton�u*
NodeAttributeL sQ;SNodeAttributeSLimbNode�u
	TypeFlagsSSkeletonjv*
NodeAttributeL`rQ;SNodeAttributeSLimbNode]v
	TypeFlagsSSkeleton�v*
NodeAttributeL`qQ;SNodeAttributeSLimbNode�v
	TypeFlagsSSkeletonRw*
NodeAttributeL�pQ;SNodeAttributeSLimbNodeEw
	TypeFlagsSSkeleton�w*
NodeAttributeL�oQ;SNodeAttributeSLimbNode�w
	TypeFlagsSSkeleton:x*
NodeAttributeL�nQ;SNodeAttributeSLimbNode-x
	TypeFlagsSSkeleton�x*
NodeAttributeL nQ;SNodeAttributeSLimbNode�x
	TypeFlagsSSkeleton"y*
NodeAttributeL`mQ;SNodeAttributeSLimbNodey
	TypeFlagsSSkeleton�y*
NodeAttributeL mQ;SNodeAttributeSLimbNode�y
	TypeFlagsSSkeleton
z*
NodeAttributeL��Q;SNodeAttributeSLimbNode�y
	TypeFlagsSSkeleton~z*
NodeAttributeL`�Q;SNodeAttributeSLimbNodeqz
	TypeFlagsSSkeleton�z*
NodeAttributeL �Q;SNodeAttributeSLimbNode�z
	TypeFlagsSSkeletonf{*
NodeAttributeL�Q;SNodeAttributeSLimbNodeY{
	TypeFlagsSSkeleton�{*
NodeAttributeL��Q;SNodeAttributeSLimbNode�{
	TypeFlagsSSkeletonN|*
NodeAttributeL`�Q;SNodeAttributeSLimbNodeA|
	TypeFlagsSSkeleton�|*
NodeAttributeL �Q;SNodeAttributeSLimbNode�|
	TypeFlagsSSkeleton6}*
NodeAttributeL��Q;SNodeAttributeSLimbNode)}
	TypeFlagsSSkeleton�}*
NodeAttributeL��Q;SNodeAttributeSLimbNode�}
	TypeFlagsSSkeleton~*
NodeAttributeL`�Q;SNodeAttributeSLimbNode~
	TypeFlagsSSkeleton�~*
NodeAttributeL �Q;SNodeAttributeSLimbNode�~
	TypeFlagsSSkeleton*
NodeAttributeL��Q;SNodeAttributeSLimbNode�~
	TypeFlagsSSkeletonz*
NodeAttributeL��Q;SNodeAttributeSLimbNodem
	TypeFlagsSSkeleton�*
NodeAttributeL`�Q;SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonb�*
NodeAttributeL �Q;SNodeAttributeSLimbNodeU�
	TypeFlagsSSkeletonր*
NodeAttributeL��Q;SNodeAttributeSLimbNodeɀ
	TypeFlagsSSkeletonJ�*
NodeAttributeL��Q;SNodeAttributeSLimbNode=�
	TypeFlagsSSkeleton��*
NodeAttributeL`�Q;SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton2�*
NodeAttributeL �Q;SNodeAttributeSLimbNode%�
	TypeFlagsSSkeleton��*
NodeAttributeL��Q;SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL��Q;SNodeAttributeSLimbNode
�
	TypeFlagsSSkeleton��*
NodeAttributeL`�Q;SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL �Q;SNodeAttributeSLimbNode��
	TypeFlagsSSkeletonv�*
NodeAttributeL��Q;SNodeAttributeSLimbNodei�
	TypeFlagsSSkeleton�*
NodeAttributeL��Q;SNodeAttributeSLimbNode݄
	TypeFlagsSSkeleton^�*
NodeAttributeL`�Q;SNodeAttributeSLimbNodeQ�
	TypeFlagsSSkeleton҅*
NodeAttributeL �Q;SNodeAttributeSLimbNodeŅ
	TypeFlagsSSkeletonF�*
NodeAttributeL��Q;SNodeAttributeSLimbNode9�
	TypeFlagsSSkeleton��*
NodeAttributeL��Q;SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton.�*
NodeAttributeL`�Q;SNodeAttributeSLimbNode!�
	TypeFlagsSSkeleton��*
NodeAttributeL �Q;SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL��Q;SNodeAttributeSLimbNode	�
	TypeFlagsSSkeleton��*
NodeAttributeL��Q;SNodeAttributeSLimbNode}�
	TypeFlagsSSkeleton��*
NodeAttributeL`�Q;SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonr�*
NodeAttributeL �Q;SNodeAttributeSLimbNodee�
	TypeFlagsSSkeleton�*
NodeAttributeL��Q;SNodeAttributeSLimbNodeى
	TypeFlagsSSkeletonZ�*
NodeAttributeL��Q;SNodeAttributeSLimbNodeM�
	TypeFlagsSSkeletonΊ*
NodeAttributeL`�Q;SNodeAttributeSLimbNode��
	TypeFlagsSSkeletonB�*
NodeAttributeL �Q;SNodeAttributeSLimbNode5�
	TypeFlagsSSkeleton��*
NodeAttributeL��Q;SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton*�*
NodeAttributeL��Q;SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL`�Q;SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL �Q;SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL��Q;SNodeAttributeSLimbNodey�
	TypeFlagsSSkeleton��*
NodeAttributeL��Q;SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonn�*
NodeAttributeL`�Q;SNodeAttributeSLimbNodea�
	TypeFlagsSSkeleton��4ModelL3v)SProducer PerspectiveModelSCamera͎VersionI�q�Properties70;�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?j�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADD b@D�r@b�HPSLcl RotationSLcl RotationSSAD�V�D����S@D�V���,PS	MultiTakeSintSIntegerSIא-PSManipulationModeSenumSSI:�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDw�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI=�:PSLocalTranslationRefVisibilitySboolSSI}�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSID�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIΓ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIR�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI.�-PSShowTrajectoriesSboolSSIg�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSIE�!PSCropSboolSSIv�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSI,�4PSDisplay2DMagnifierFrameSboolSSId�*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOff��.ModelL�v)SProducer FrontModelSCamera�VersionI���Properties70~�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIO�NPSLcl TranslationSLcl TranslationSSADD�V@DL�@��HPSLcl RotationSLcl RotationSSADD�V@Dߙ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI}�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI8�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI@�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI˜6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@T�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIȝ%PSPickableSboolSSI�*PS
TransformableSboolSSI6�(PSCullingModeSenumSSIq�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?&�0PSAspectHSdoubleSNumberSD�?Y�%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI�&PS	KeepRatioSboolSSI-�2PSForegroundTransparentSboolSSIo�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSIʠShadingCW�CullingS
CullingOff<�-ModelLHQv)SProducer BackModelSCameraR�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?�!PSShowSboolSSI5�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD�V@DL���HPSLcl RotationSLcl RotationSSAD�D�V�D!�,PS	MultiTakeSintSIntegerSI\�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI7�-PSPivotsVisibilitySenumSSIz�5PSRotationLimitsVisibilitySboolSSI¤:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIC�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIɥ9PSHierarchicalCenterVisibilitySboolSSI
�6PSGeometricCenterVisibilitySboolSSIS�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIצ3PSDefaultKeyingGroupEnumSenumSSI
�%PSPickableSboolSSIB�*PS
TransformableSboolSSIx�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSI*�0PSAspectWSdoubleSNumberSD�?h�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSIʨ!PSCropSboolSSI��#PSCenterSboolSSI/�&PS	KeepRatioSboolSSIo�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI�ShadingCW/�CullingS
CullingOff�.ModelL(=v)SProducer RightModelSCamera��VersionI�9�Properties70�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?2�!PSShowSboolSSIx�8PSDefaultAttributeIndexSintSIntegerSIԫNPSLcl TranslationSLcl TranslationSSADL�@D�V@D*�HPSLcl RotationSLcl RotationSSAD�f@D�D�f@d�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD?�/PSSetPreferedAngleSActionSSIz�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIE�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIŮ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIP�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ٯ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIM�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI/�+PSResolutionModeSenumSSIm�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?ޱ%PSFitImageSboolSSI
�!PSCropSboolSSI>�#PSCenterSboolSSIr�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI,�*PSResetCameraSActionSSIO�ShadingCWr�CullingS
CullingOffk�-ModelL0Bv)SProducer LeftModelSCamera׳VersionI�%�Properties70E�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?t�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADL��D�V@DP�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD+�/PSSetPreferedAngleSActionSSIf�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI1�2PSRotationRefVisibilitySboolSSIr�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI<�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@Ÿ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI9�%PSPickableSboolSSIq�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSIY�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?ʺ%PSFitImageSboolSSI��!PSCropSboolSSI*�#PSCenterSboolSSI^�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI;�ShadingCW^�CullingS
CullingOff��,ModelL8Gv)SProducer TopModelSCamera¼VersionI�f�Properties700�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?_�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADDy�@DW�HPSLcl RotationSLcl RotationSSAD�V�D�D�V���,PS	MultiTakeSintSIntegerSI̾-PSManipulationModeSenumSSI/�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDl�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI2�:PSLocalTranslationRefVisibilitySboolSSIr�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI9�9PSHierarchicalCenterVisibilitySboolSSI}�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIG�3PSDefaultKeyingGroupEnumSenumSSIz�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI#�-PSShowTrajectoriesSboolSSI\�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSI:�!PSCropSboolSSIk�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI!�4PSDisplay2DMagnifierFrameSboolSSIY�*PSResetCameraSActionSSI|�ShadingCW��CullingS
CullingOff��/ModelL.v)SProducer BottomModelSCamera�VersionI���Properties70t�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSIE�NPSLcl TranslationSLcl TranslationSSADD��D��HPSLcl RotationSLcl RotationSSAD�V@D�D�V@��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIs�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI.�5PSRotationLimitsVisibilitySboolSSIv�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI6�1PSScalingRefVisibilitySboolSSI}�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@J�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI,�(PSCullingModeSenumSSIg�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?O�%PSFitImageSboolSSI~�!PSCropSboolSSI��#PSCenterSboolSSI��&PS	KeepRatioSboolSSI#�2PSForegroundTransparentSboolSSIe�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOffT�7ModelL�|:SCamera SwitcherModelSCameraSwitcherR�VersionI��Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI5�8PSDefaultAttributeIndexSintSIntegerSIo�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI
�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDJ�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIP�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI[�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI%�3PSDefaultKeyingGroupEnumSenumSSIX�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI$�ShadingCWG�CullingS
CullingOff��+ModelL�|:SReferenceModelSLimbNode��VersionI�:�Properties70��+PSRotationActiveSboolSSI2�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI �EPSVisibility InheritanceSVisibility InheritanceSSIZ�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD5�/PSSetPreferedAngleSActionSSIp�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI;�2PSRotationRefVisibilitySboolSSI|�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIF�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIC�%PSPickableSboolSSI{�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI-�3PSlockInfluenceWeightsSBoolSSAUIP�ShadingCYs�CullingS
CullingOff��&ModelL�|:SHipsModelSLimbNode��VersionI���Properties70#�+PSRotationActiveSboolSSIY�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIQ�OPSLcl TranslationSLcl TranslationSSA+DD HX@D��IPSLcl RotationSLcl RotationSSA+DDD��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?P�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI(�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDe�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI+�:PSLocalTranslationRefVisibilitySboolSSIk�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI2�9PSHierarchicalCenterVisibilitySboolSSIv�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI@�3PSDefaultKeyingGroupEnumSenumSSIs�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIL�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff`�'ModelL�|:SSpineModelSLimbNodeB�VersionI��Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDe�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD@�D�s"@D�;�?�IPSLcl RotationSLcl RotationSSA+DDDm�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 �|:SChestModelSLimbNode��VersionI���Properties70�+PSRotationActiveSboolSSI:�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI1�NPSLcl TranslationSLcl TranslationSSADDA0@D�2ſ��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI\�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI_�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIf�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@3�5PSDefaultKeyingGroupSintSIntegerSIt�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIP�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��&ModelL(�|:SNeckModelSLimbNodeu�VersionI�M�Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIR�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD`��9@D <�	�K�IPSLcl RotationSLcl RotationSSA+DDD��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI-�,PS	MultiTakeSintSIntegerSIh�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIC�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIO�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI_�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIN�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI@�CPSLimbLength 1SNumberSSAUD�?DDY@c�ShadingCY��CullingS
CullingOff&ModelL0�|:SHeadModelSLimbNode��VersionI��Properties706�+PSRotationActiveSboolSSIl�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIc�NPSLcl TranslationSLcl TranslationSSAD@;D 4� @D s�?��IPSLcl RotationSLcl RotationSSA+DDDGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?bEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI:UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDw/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI=:PSLocalTranslationRefVisibilitySboolSSI}2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSID9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIR3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI.-PSShowTrajectoriesSboolSSI^"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�
)ModelL8�|:SLeftEyeModelSLimbNodeVVersionI��
Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI3GPS
ScalingMaxSVector3DSVectorSDDDy8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD෭@D`#� @D��+@(EPSVisibility InheritanceSVisibility InheritanceSSIb,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI	UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD=	/PSSetPreferedAngleSActionSSIx	-PSPivotsVisibilitySenumSSI�	5PSRotationLimitsVisibilitySboolSSI
:PSLocalTranslationRefVisibilitySboolSSIC
2PSRotationRefVisibilitySboolSSI�
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI
9PSHierarchicalCenterVisibilitySboolSSIN6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSIK%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI$
"PSliwSBoolSSAUIu
CPSLimbLength 1SNumberSSAUD�?DDY@�
ShadingCY�
CullingS
CullingOff�*ModelL@�|:SRightEyeModelSLimbNodeVersionI��Properties70n*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI2GPS
ScalingMaxSVector3DSVectorSDDDx8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���D %� @D�+@'EPSVisibility InheritanceSVisibility InheritanceSSIa,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD</PSSetPreferedAngleSActionSSIw-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIB2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI	9PSHierarchicalCenterVisibilitySboolSSIM6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSIJ%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI#"PSliwSBoolSSAUItCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff$%ModelLH�|:S
JawModelSLimbNodeVersionI��Properties70i+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD97PSPreferedAngleXSdoubleSNumberSDUs\O,T9@8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@�D@���?D`)��?1HPSLcl RotationSLcl RotationSSADD�Y	�<D����<�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI\UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSI_:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIf9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@35PSDefaultKeyingGroupSintSIntegerSIt3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIP-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff�%,ModelLP�|:STongueBackModelSLimbNode{VersionI��%Properties70�+PSRotationActiveSboolSSI(PSInheritTypeSenumSSIXGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@<D��K�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�-+ModelLX�|:STongueTipModelSLimbNodeC&VersionI�o-Properties70�&+PSRotationActiveSboolSSI�&(PSInheritTypeSenumSSI 'GPS
ScalingMaxSVector3DSVectorSDDDf'8PSDefaultAttributeIndexSintSIntegerSI�'NPSLcl TranslationSLcl TranslationSSAD@<D@���D�}�@(EPSVisibility InheritanceSVisibility InheritanceSSIO(,PS	MultiTakeSintSIntegerSI�(-PSManipulationModeSenumSSI�(UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD*)/PSSetPreferedAngleSActionSSIe)-PSPivotsVisibilitySenumSSI�)5PSRotationLimitsVisibilitySboolSSI�):PSLocalTranslationRefVisibilitySboolSSI0*2PSRotationRefVisibilitySboolSSIq*3PSRotationAxisVisibilitySboolSSI�*1PSScalingRefVisibilitySboolSSI�*9PSHierarchicalCenterVisibilitySboolSSI;+6PSGeometricCenterVisibilitySboolSSI�+8PSReferentialSizeSdoubleSNumberSD(@�+5PSDefaultKeyingGroupSintSIntegerSI,3PSDefaultKeyingGroupEnumSenumSSI8,%PSPickableSboolSSIp,*PS
TransformableSboolSSI�,(PSCullingModeSenumSSI�,-PSShowTrajectoriesSboolSSI-"PSliwSBoolSSAUIb-CPSLimbLength 1SNumberSSAUD�?DDY@�-ShadingCY�-CullingS
CullingOff�5.ModelL ��<SLeftLipLowerModelSLimbNode.VersionI�:5Properties70`.+PSRotationActiveSboolSSI�.(PSInheritTypeSenumSSI�.GPS
ScalingMaxSVector3DSVectorSDDD1/8PSDefaultAttributeIndexSintSIntegerSI�/NPSLcl TranslationSLcl TranslationSSAD�"��?D��Y�D��r @�/EPSVisibility InheritanceSVisibility InheritanceSSI0,PS	MultiTakeSintSIntegerSIU0-PSManipulationModeSenumSSI�0UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�0/PSSetPreferedAngleSActionSSI01-PSPivotsVisibilitySenumSSIs15PSRotationLimitsVisibilitySboolSSI�1:PSLocalTranslationRefVisibilitySboolSSI�12PSRotationRefVisibilitySboolSSI<23PSRotationAxisVisibilitySboolSSI{21PSScalingRefVisibilitySboolSSI�29PSHierarchicalCenterVisibilitySboolSSI36PSGeometricCenterVisibilitySboolSSIL38PSReferentialSizeSdoubleSNumberSD(@�35PSDefaultKeyingGroupSintSIntegerSI�33PSDefaultKeyingGroupEnumSenumSSI4%PSPickableSboolSSI;4*PS
TransformableSboolSSIq4(PSCullingModeSenumSSI�4-PSShowTrajectoriesSboolSSI�4"PSliwSBoolSSAUI-5CPSLimbLength 1SNumberSSAUD�?DDY@P5ShadingCYs5CullingS
CullingOff}=(ModelL(��<S
JawENDModelSLimbNode�5VersionI�7=Properties70$6*PS
RotationOrderSenumSSI]6+PSRotationActiveSboolSSI�6(PSInheritTypeSenumSSI�6GPS
ScalingMaxSVector3DSVectorSDDD.78PSDefaultAttributeIndexSintSIntegerSI�7NPSLcl TranslationSLcl TranslationSSAD@<D��P�D���@�7EPSVisibility InheritanceSVisibility InheritanceSSI8,PS	MultiTakeSintSIntegerSIR8-PSManipulationModeSenumSSI�8UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�8/PSSetPreferedAngleSActionSSI-9-PSPivotsVisibilitySenumSSIp95PSRotationLimitsVisibilitySboolSSI�9:PSLocalTranslationRefVisibilitySboolSSI�92PSRotationRefVisibilitySboolSSI9:3PSRotationAxisVisibilitySboolSSIx:1PSScalingRefVisibilitySboolSSI�:9PSHierarchicalCenterVisibilitySboolSSI;6PSGeometricCenterVisibilitySboolSSII;8PSReferentialSizeSdoubleSNumberSD(@�;5PSDefaultKeyingGroupSintSIntegerSI�;3PSDefaultKeyingGroupEnumSenumSSI<%PSPickableSboolSSI8<*PS
TransformableSboolSSIn<(PSCullingModeSenumSSI�<-PSShowTrajectoriesSboolSSI�<"PSliwSBoolSSAUI*=CPSLimbLength 1SNumberSSAUD�?DDY@M=ShadingCYp=CullingS
CullingOffIE/ModelL0��<SRightLipLowerModelSLimbNode�=VersionI�EProperties70)>+PSRotationActiveSboolSSI_>(PSInheritTypeSenumSSI�>GPS
ScalingMaxSVector3DSVectorSDDD�>8PSDefaultAttributeIndexSintSIntegerSIV?NPSLcl TranslationSLcl TranslationSSAD�"���D��Y�D@�r @�?EPSVisibility InheritanceSVisibility InheritanceSSI�?,PS	MultiTakeSintSIntegerSI@-PSManipulationModeSenumSSI�@UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�@/PSSetPreferedAngleSActionSSI�@-PSPivotsVisibilitySenumSSI<A5PSRotationLimitsVisibilitySboolSSI�A:PSLocalTranslationRefVisibilitySboolSSI�A2PSRotationRefVisibilitySboolSSIB3PSRotationAxisVisibilitySboolSSIDB1PSScalingRefVisibilitySboolSSI�B9PSHierarchicalCenterVisibilitySboolSSI�B6PSGeometricCenterVisibilitySboolSSIC8PSReferentialSizeSdoubleSNumberSD(@XC5PSDefaultKeyingGroupSintSIntegerSI�C3PSDefaultKeyingGroupEnumSenumSSI�C%PSPickableSboolSSID*PS
TransformableSboolSSI:D(PSCullingModeSenumSSIuD-PSShowTrajectoriesSboolSSI�D"PSliwSBoolSSAUI�DCPSLimbLength 1SNumberSSAUD�?DDY@EShadingCY<ECullingS
CullingOffM0ModelL8��<SRightLipCornerModelSLimbNode�EVersionI��LProperties70�E+PSRotationActiveSboolSSI,F(PSInheritTypeSenumSSI�FGPS
ScalingMaxSVector3DSVectorSDDD�F8PSDefaultAttributeIndexSintSIntegerSI#GNPSLcl TranslationSLcl TranslationSSAD��E
�D����D@�r@vGEPSVisibility InheritanceSVisibility InheritanceSSI�G,PS	MultiTakeSintSIntegerSI�G-PSManipulationModeSenumSSINHUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�H/PSSetPreferedAngleSActionSSI�H-PSPivotsVisibilitySenumSSI	I5PSRotationLimitsVisibilitySboolSSIQI:PSLocalTranslationRefVisibilitySboolSSI�I2PSRotationRefVisibilitySboolSSI�I3PSRotationAxisVisibilitySboolSSIJ1PSScalingRefVisibilitySboolSSIXJ9PSHierarchicalCenterVisibilitySboolSSI�J6PSGeometricCenterVisibilitySboolSSI�J8PSReferentialSizeSdoubleSNumberSD(@%K5PSDefaultKeyingGroupSintSIntegerSIfK3PSDefaultKeyingGroupEnumSenumSSI�K%PSPickableSboolSSI�K*PS
TransformableSboolSSIL(PSCullingModeSenumSSIBL-PSShowTrajectoriesSboolSSIrL"PSliwSBoolSSAUI�LCPSLimbLength 1SNumberSSAUD�?DDY@�LShadingCY	MCullingS
CullingOff�T/ModelL@Ą<SLeftLipCornerModelSLimbNodepMVersionI��TProperties70�M+PSRotationActiveSboolSSI�M(PSInheritTypeSenumSSIMNGPS
ScalingMaxSVector3DSVectorSDDD�N8PSDefaultAttributeIndexSintSIntegerSI�NNPSLcl TranslationSLcl TranslationSSAD�LF
@D����D`�r@BOEPSVisibility InheritanceSVisibility InheritanceSSI|O,PS	MultiTakeSintSIntegerSI�O-PSManipulationModeSenumSSIPUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDWP/PSSetPreferedAngleSActionSSI�P-PSPivotsVisibilitySenumSSI�P5PSRotationLimitsVisibilitySboolSSIQ:PSLocalTranslationRefVisibilitySboolSSI]Q2PSRotationRefVisibilitySboolSSI�Q3PSRotationAxisVisibilitySboolSSI�Q1PSScalingRefVisibilitySboolSSI$R9PSHierarchicalCenterVisibilitySboolSSIhR6PSGeometricCenterVisibilitySboolSSI�R8PSReferentialSizeSdoubleSNumberSD(@�R5PSDefaultKeyingGroupSintSIntegerSI2S3PSDefaultKeyingGroupEnumSenumSSIeS%PSPickableSboolSSI�S*PS
TransformableSboolSSI�S(PSCullingModeSenumSSIT-PSShowTrajectoriesSboolSSI>T"PSliwSBoolSSAUI�TCPSLimbLength 1SNumberSSAUD�?DDY@�TShadingCY�TCullingS
CullingOff�\.ModelLHɄ<SLeftLipUpperModelSLimbNode;UVersionI�g\Properties70�U+PSRotationActiveSboolSSI�U(PSInheritTypeSenumSSIVGPS
ScalingMaxSVector3DSVectorSDDD^V8PSDefaultAttributeIndexSintSIntegerSI�VNPSLcl TranslationSLcl TranslationSSAD�3�?D��[�D |�"@
WEPSVisibility InheritanceSVisibility InheritanceSSIGW,PS	MultiTakeSintSIntegerSI�W-PSManipulationModeSenumSSI�WUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD"X/PSSetPreferedAngleSActionSSI]X-PSPivotsVisibilitySenumSSI�X5PSRotationLimitsVisibilitySboolSSI�X:PSLocalTranslationRefVisibilitySboolSSI(Y2PSRotationRefVisibilitySboolSSIiY3PSRotationAxisVisibilitySboolSSI�Y1PSScalingRefVisibilitySboolSSI�Y9PSHierarchicalCenterVisibilitySboolSSI3Z6PSGeometricCenterVisibilitySboolSSIyZ8PSReferentialSizeSdoubleSNumberSD(@�Z5PSDefaultKeyingGroupSintSIntegerSI�Z3PSDefaultKeyingGroupEnumSenumSSI0[%PSPickableSboolSSIh[*PS
TransformableSboolSSI�[(PSCullingModeSenumSSI�[-PSShowTrajectoriesSboolSSI	\"PSliwSBoolSSAUIZ\CPSLimbLength 1SNumberSSAUD�?DDY@}\ShadingCY�\CullingS
CullingOffwd-ModelLP΄<SLeftNostrilModelSLimbNode]VersionI�1dProperties70W]+PSRotationActiveSboolSSI�](PSInheritTypeSenumSSI�]GPS
ScalingMaxSVector3DSVectorSDDD(^8PSDefaultAttributeIndexSintSIntegerSI�^NPSLcl TranslationSLcl TranslationSSADף�?D�@D@i,"@�^EPSVisibility InheritanceSVisibility InheritanceSSI_,PS	MultiTakeSintSIntegerSIL_-PSManipulationModeSenumSSI�_UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�_/PSSetPreferedAngleSActionSSI'`-PSPivotsVisibilitySenumSSIj`5PSRotationLimitsVisibilitySboolSSI�`:PSLocalTranslationRefVisibilitySboolSSI�`2PSRotationRefVisibilitySboolSSI3a3PSRotationAxisVisibilitySboolSSIra1PSScalingRefVisibilitySboolSSI�a9PSHierarchicalCenterVisibilitySboolSSI�a6PSGeometricCenterVisibilitySboolSSICb8PSReferentialSizeSdoubleSNumberSD(@�b5PSDefaultKeyingGroupSintSIntegerSI�b3PSDefaultKeyingGroupEnumSenumSSI�b%PSPickableSboolSSI2c*PS
TransformableSboolSSIhc(PSCullingModeSenumSSI�c-PSShowTrajectoriesSboolSSI�c"PSliwSBoolSSAUI$dCPSLimbLength 1SNumberSSAUD�?DDY@GdShadingCYjdCullingS
CullingOff?l+ModelLXӄ<SLeftCheekModelSLimbNode�dVersionI��kProperties70e+PSRotationActiveSboolSSIUe(PSInheritTypeSenumSSI�eGPS
ScalingMaxSVector3DSVectorSDDD�e8PSDefaultAttributeIndexSintSIntegerSILfNPSLcl TranslationSLcl TranslationSSAD���@D�(�
@D`��@�fEPSVisibility InheritanceSVisibility InheritanceSSI�f,PS	MultiTakeSintSIntegerSIg-PSManipulationModeSenumSSIwgUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�g/PSSetPreferedAngleSActionSSI�g-PSPivotsVisibilitySenumSSI2h5PSRotationLimitsVisibilitySboolSSIzh:PSLocalTranslationRefVisibilitySboolSSI�h2PSRotationRefVisibilitySboolSSI�h3PSRotationAxisVisibilitySboolSSI:i1PSScalingRefVisibilitySboolSSI�i9PSHierarchicalCenterVisibilitySboolSSI�i6PSGeometricCenterVisibilitySboolSSIj8PSReferentialSizeSdoubleSNumberSD(@Nj5PSDefaultKeyingGroupSintSIntegerSI�j3PSDefaultKeyingGroupEnumSenumSSI�j%PSPickableSboolSSI�j*PS
TransformableSboolSSI0k(PSCullingModeSenumSSIkk-PSShowTrajectoriesSboolSSI�k"PSliwSBoolSSAUI�kCPSLimbLength 1SNumberSSAUD�?DDY@lShadingCY2lCullingS
CullingOffct1ModelL`؄<SLeftEyelidLowerModelSLimbNode�lVersionI�tProperties70�l+PSRotationActiveSboolSSI#m(PSInheritTypeSenumSSIxmGPS
ScalingMaxSVector3DSVectorSDDD�m8PSDefaultAttributeIndexSintSIntegerSInNPSLcl TranslationSLcl TranslationSSAD@�~@D�@D p~@pnHPSLcl RotationSLcl RotationSSAD�D�D�nEPSVisibility InheritanceSVisibility InheritanceSSI�n,PS	MultiTakeSintSIntegerSI8o-PSManipulationModeSenumSSI�oUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�o/PSSetPreferedAngleSActionSSIp-PSPivotsVisibilitySenumSSIVp5PSRotationLimitsVisibilitySboolSSI�p:PSLocalTranslationRefVisibilitySboolSSI�p2PSRotationRefVisibilitySboolSSIq3PSRotationAxisVisibilitySboolSSI^q1PSScalingRefVisibilitySboolSSI�q9PSHierarchicalCenterVisibilitySboolSSI�q6PSGeometricCenterVisibilitySboolSSI/r8PSReferentialSizeSdoubleSNumberSD(@rr5PSDefaultKeyingGroupSintSIntegerSI�r3PSDefaultKeyingGroupEnumSenumSSI�r%PSPickableSboolSSIs*PS
TransformableSboolSSITs(PSCullingModeSenumSSI�s-PSShowTrajectoriesSboolSSI�s"PSliwSBoolSSAUItCPSLimbLength 1SNumberSSAUD�?DDY@3tShadingCYVtCullingS
CullingOff1|1ModelLh݄<SLeftEyelidUpperModelSLimbNode�tVersionI��{Properties70u+PSRotationActiveSboolSSIGu(PSInheritTypeSenumSSI�uGPS
ScalingMaxSVector3DSVectorSDDD�u8PSDefaultAttributeIndexSintSIntegerSI>vNPSLcl TranslationSLcl TranslationSSAD`��@D#$@D�
 @�vEPSVisibility InheritanceSVisibility InheritanceSSI�v,PS	MultiTakeSintSIntegerSIw-PSManipulationModeSenumSSIiwUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�w/PSSetPreferedAngleSActionSSI�w-PSPivotsVisibilitySenumSSI$x5PSRotationLimitsVisibilitySboolSSIlx:PSLocalTranslationRefVisibilitySboolSSI�x2PSRotationRefVisibilitySboolSSI�x3PSRotationAxisVisibilitySboolSSI,y1PSScalingRefVisibilitySboolSSIsy9PSHierarchicalCenterVisibilitySboolSSI�y6PSGeometricCenterVisibilitySboolSSI�y8PSReferentialSizeSdoubleSNumberSD(@@z5PSDefaultKeyingGroupSintSIntegerSI�z3PSDefaultKeyingGroupEnumSenumSSI�z%PSPickableSboolSSI�z*PS
TransformableSboolSSI"{(PSCullingModeSenumSSI]{-PSShowTrajectoriesSboolSSI�{"PSliwSBoolSSAUI�{CPSLimbLength 1SNumberSSAUD�?DDY@|ShadingCY$|CullingS
CullingOff��/ModelLp�<SLeftInnerBrowModelSLimbNode�|VersionI���Properties70�|+PSRotationActiveSboolSSI}(PSInheritTypeSenumSSIh}GPS
ScalingMaxSVector3DSVectorSDDD�}8PSDefaultAttributeIndexSintSIntegerSI
~NPSLcl TranslationSLcl TranslationSSAD��L�?D ��'@D`��"@]~EPSVisibility InheritanceSVisibility InheritanceSSI�~,PS	MultiTakeSintSIntegerSI�~-PSManipulationModeSenumSSI5UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDr/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI8�:PSLocalTranslationRefVisibilitySboolSSIx�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI?�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIɁ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIM�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI)�-PSShowTrajectoriesSboolSSIY�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@̓ShadingCY��CullingS
CullingOff�0ModelLx�<SLeftIOuterBrowModelSLimbNodeX�VersionI���Properties70��*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIm�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@@D �&@D��@b�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI׆-PSManipulationModeSenumSSI:�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDw�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI=�:PSLocalTranslationRefVisibilitySboolSSI}�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSID�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIΉ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIR�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI.�-PSShowTrajectoriesSboolSSI^�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ҋShadingCY��CullingS
CullingOffϓ0ModelL 0K;SRightInnerBrowModelSLimbNode]�VersionI���Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI:�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI܍NPSLcl TranslationSLcl TranslationSSAD��L�D ��'@D`��"@/�EPSVisibility InheritanceSVisibility InheritanceSSIi�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSI
�:PSLocalTranslationRefVisibilitySboolSSIJ�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIʐ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIU�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ޑ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIR�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI+�"PSliwSBoolSSAUI|�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY“CullingS
CullingOff՛1ModelL(5K;SRightIOuterBrowModelSLimbNode+�VersionI���Properties70|�*PS
RotationOrderSenumSSI��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI@�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD��D���&@D��@5�EPSVisibility InheritanceSVisibility InheritanceSSIo�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI
�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDJ�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIȗ5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIP�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIИ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI[�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI%�3PSDefaultKeyingGroupEnumSenumSSIX�%PSPickableSboolSSI��*PS
TransformableSboolSSIƚ(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI1�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYțCullingS
CullingOff��2ModelL0:K;SRightEyelidUpperModelSLimbNode2�VersionI�^�Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDU�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD+��D�`$@D`�
 @�EPSVisibility InheritanceSVisibility InheritanceSSI>�,PS	MultiTakeSintSIntegerSIy�-PSManipulationModeSenumSSIܞUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIT�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIߟ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI`�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI*�6PSGeometricCenterVisibilitySboolSSIp�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI'�%PSPickableSboolSSI_�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIТ-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIQ�CPSLimbLength 1SNumberSSAUD�?DDY@t�ShadingCY��CullingS
CullingOffɫ2ModelL8?K;SRightEyelidLowerModelSLimbNode�VersionI���Properties70S�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIޤGPS
ScalingMaxSVector3DSVectorSDDD$�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��~�D u@D��~@֥HPSLcl RotationSLcl RotationSSAD�D�D)�EPSVisibility InheritanceSVisibility InheritanceSSIc�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD>�/PSSetPreferedAngleSActionSSIy�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSID�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIĨ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIO�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ة5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIL�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI%�"PSliwSBoolSSAUIv�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��,ModelL@DK;SRightCheekModelSLimbNode �VersionI�L�Properties70r�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDC�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD-��D�V�
@D�]�@�EPSVisibility InheritanceSVisibility InheritanceSSI,�,PS	MultiTakeSintSIntegerSIg�-PSManipulationModeSenumSSIʮUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIB�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIͯ:PSLocalTranslationRefVisibilitySboolSSI
�2PSRotationRefVisibilitySboolSSIN�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI԰9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI^�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIM�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI?�CPSLimbLength 1SNumberSSAUD�?DDY@b�ShadingCY��CullingS
CullingOff]�.ModelLHIK;SRightNostrilModelSLimbNode�VersionI��Properties70=�+PSRotationActiveSboolSSIs�(PSInheritTypeSenumSSIȴGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIj�NPSLcl TranslationSLcl TranslationSSADף��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)�/ModelLPNK;SRightLipUpperModelSLimbNode��VersionI���Properties70	�+PSRotationActiveSboolSSI?�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDڼ8PSDefaultAttributeIndexSintSIntegerSI6�NPSLcl TranslationSLcl TranslationSSAD�3��D��W�D@i�"@��EPSVisibility InheritanceSVisibility InheritanceSSIý,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIa�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIپ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSId�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI$�1PSScalingRefVisibilitySboolSSIk�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@8�5PSDefaultKeyingGroupSintSIntegerSIy�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIU�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��/ModelLXSK;SRightShoulderModelSLimbNode��VersionI���Properties70��HPSPreRotationSVector3DSVectorSDc�5ua f�De0��`@D�(�Vc�+�+PSRotationActiveSboolSSIa�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIX�NPSLcl TranslationSLcl TranslationSSAD����D`�)6@D@
M����IPSLcl RotationSLcl RotationSSA+DD ܥ�D e|�<�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?W�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI/�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDl�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI2�:PSLocalTranslationRefVisibilitySboolSSIr�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI9�9PSHierarchicalCenterVisibilitySboolSSI}�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIG�3PSDefaultKeyingGroupEnumSenumSSIz�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI#�-PSShowTrajectoriesSboolSSIS�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��*ModelL`XK;SRightArmModelSLimbNodeL�VersionI�z�Properties70��HPSPreRotationSVector3DSVectorSD�&(�|f�D�`����!�DOE�rc���+PSRotationActiveSboolSSI*�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI!�NPSLcl TranslationSLcl TranslationSSAD��$@D��a0�D@�վx�IPSLcl RotationSLcl RotationSSA+D@��D�D 	��<��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�? �EPSVisibility InheritanceSVisibility InheritanceSSIZ�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD5�/PSSetPreferedAngleSActionSSIp�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI;�2PSRotationRefVisibilitySboolSSI|�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIF�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIC�%PSPickableSboolSSI{�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIm�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��.ModelLh]K;SRightForeArmModelSLimbNode�VersionI�G�Properties70��HPSPreRotationSVector3DSVectorSD�@���D�D�e�:�D
>���?��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIL�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD`�W9�D �<�?D`,���E�IPSLcl RotationSLcl RotationSSA+D e|��D ܥܼD 2�弚�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI'�,PS	MultiTakeSintSIntegerSIb�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI=�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSII�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIY�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIH�*PS
TransformableSboolSSI~�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI:�CPSLimbLength 1SNumberSSAUD�?DDY@]�ShadingCY��CullingS
CullingOff�+ModelLpbK;SRightHandModelSLimbNode��VersionI���Properties705�+PSRotationActiveSboolSSIk�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIb�NPSLcl TranslationSLcl TranslationSSAD ��8�D <P@D����?��IPSLcl RotationSLcl RotationSSA+D� �<D ܥ��D�
��<�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?a�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI9�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDv�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI<�:PSLocalTranslationRefVisibilitySboolSSI|�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIC�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIQ�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI-�-PSShowTrajectoriesSboolSSI]�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��1ModelLxgK;SRightHandPinky1ModelSLimbNode]�VersionI���Properties70��HPSPreRotationSVector3DSVectorSD���P�οDrQ�'d�$@DH�Z~Q���+PSRotationActiveSboolSSI;�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI2�NPSLcl TranslationSLcl TranslationSSAD����D�K�ɿD�ۚ���IPSLcl RotationSLcl RotationSSA+D�K��D ܥ�<D����<��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?1�EPSVisibility InheritanceSVisibility InheritanceSSIk�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI	�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDF�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIL�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIW�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI!�3PSDefaultKeyingGroupEnumSenumSSIT�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI-�"PSliwSBoolSSAUI~�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��1ModelL���9SRightHandPinky2ModelSLimbNode-�VersionI�[�Properties70��HPSPreRotationSVector3DSVectorSD�	�SQ㋿DG~�)'��?DL����?��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI`�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���D�(���D`��Y�IPSLcl RotationSLcl RotationSSA+D�D3�<D��	=D��
ռ��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI;�,PS	MultiTakeSintSIntegerSIv�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIQ�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI]�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI'�6PSGeometricCenterVisibilitySboolSSIm�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI$�%PSPickableSboolSSI\�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIN�CPSLimbLength 1SNumberSSAUD�?DDY@q�ShadingCY��CullingS
CullingOff1ModelL���9SRightHandPinky3ModelSLimbNode��VersionI���Properties70O�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD �8PSDefaultAttributeIndexSintSIntegerSI|�NPSLcl TranslationSLcl TranslationSSAD�8$�D��V��D �@���IPSLcl RotationSLcl RotationSSA+DD ܥ�<D ܥ\�(�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?{�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIS�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIV�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI]�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@*�5PSDefaultKeyingGroupSintSIntegerSIk�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIG�-PSShowTrajectoriesSboolSSIw�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYCullingS
CullingOff�0ModelL���9SRightHandRing1ModelSLimbNodevVersionI��Properties70�HPSPreRotationSVector3DSVectorSD���=ģ�D�˘^�@Dm�a>4c�+PSRotationActiveSboolSSIT(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIKNPSLcl TranslationSLcl TranslationSSAD�H=�D�is�?D �m¬IPSLcl RotationSLcl RotationSSA+D e|u<D����<D��o���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?JEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI"UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD_/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI%:PSLocalTranslationRefVisibilitySboolSSIe2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI,9PSHierarchicalCenterVisibilitySboolSSIp6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI:3PSDefaultKeyingGroupEnumSenumSSIm%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSIF"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�0ModelL���9SRightHandRing2ModelSLimbNodeE	VersionI�sProperties70�	HPSPreRotationSVector3DSVectorSD-��	�ԿD!FWP*@D�@�?�{��	+PSRotationActiveSboolSSI#
(PSInheritTypeSenumSSIx
GPS
ScalingMaxSVector3DSVectorSDDD�
8PSDefaultAttributeIndexSintSIntegerSINPSLcl TranslationSLcl TranslationSSAD�'�D ښ��D@K�߿qIPSLcl RotationSLcl RotationSSA+D�a�D e|�<D�ja�<�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?EPSVisibility InheritanceSVisibility InheritanceSSIS,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD.
/PSSetPreferedAngleSActionSSIi
-PSPivotsVisibilitySenumSSI�
5PSRotationLimitsVisibilitySboolSSI�
:PSLocalTranslationRefVisibilitySboolSSI42PSRotationRefVisibilitySboolSSIu3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI?6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI	3PSDefaultKeyingGroupEnumSenumSSI<%PSPickableSboolSSIt*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUIfCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff20ModelL���9SRightHandRing3ModelSLimbNodeVersionI��Properties70f+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD78PSDefaultAttributeIndexSintSIntegerSI�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-PSManipulationModeSenumSSIjUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI%5PSRotationLimitsVisibilitySboolSSIm:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI-1PSScalingRefVisibilitySboolSSIt9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@A5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI#(PSCullingModeSenumSSI^-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY%CullingS
CullingOff#2ModelL���9SRightHandMiddle1ModelSLimbNode�VersionI��"Properties70�HPSPreRotationSVector3DSVectorSD�iaQ7؀�Dr3�k��D
��--�7+PSRotationActiveSboolSSIm(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD8PSDefaultAttributeIndexSintSIntegerSIdNPSLcl TranslationSLcl TranslationSSAD�QB�D<��?D@��?�IPSLcl RotationSLcl RotationSSA+D@�Q�<D ܥܼD���<GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?cEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI;UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDx/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI>:PSLocalTranslationRefVisibilitySboolSSI~2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIE 9PSHierarchicalCenterVisibilitySboolSSI� 6PSGeometricCenterVisibilitySboolSSI� 8PSReferentialSizeSdoubleSNumberSD(@!5PSDefaultKeyingGroupSintSIntegerSIS!3PSDefaultKeyingGroupEnumSenumSSI�!%PSPickableSboolSSI�!*PS
TransformableSboolSSI�!(PSCullingModeSenumSSI/"-PSShowTrajectoriesSboolSSI_""PSliwSBoolSSAUI�"CPSLimbLength 1SNumberSSAUD�?DDY@�"ShadingCY�"CullingS
CullingOff�+2ModelL���9SRightHandMiddle2ModelSLimbNode`#VersionI��+Properties70�#HPSPreRotationSVector3DSVectorSD�l�`�տDQT���@D��#W'9�$+PSRotationActiveSboolSSI>$(PSInheritTypeSenumSSI�$GPS
ScalingMaxSVector3DSVectorSDDD�$8PSDefaultAttributeIndexSintSIntegerSI5%NPSLcl TranslationSLcl TranslationSSAD`��D���?D@��?�%IPSLcl RotationSLcl RotationSSA+D`~�ʼD���=D@��%GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?4&EPSVisibility InheritanceSVisibility InheritanceSSIn&,PS	MultiTakeSintSIntegerSI�&-PSManipulationModeSenumSSI'UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDI'/PSSetPreferedAngleSActionSSI�'-PSPivotsVisibilitySenumSSI�'5PSRotationLimitsVisibilitySboolSSI(:PSLocalTranslationRefVisibilitySboolSSIO(2PSRotationRefVisibilitySboolSSI�(3PSRotationAxisVisibilitySboolSSI�(1PSScalingRefVisibilitySboolSSI)9PSHierarchicalCenterVisibilitySboolSSIZ)6PSGeometricCenterVisibilitySboolSSI�)8PSReferentialSizeSdoubleSNumberSD(@�)5PSDefaultKeyingGroupSintSIntegerSI$*3PSDefaultKeyingGroupEnumSenumSSIW*%PSPickableSboolSSI�**PS
TransformableSboolSSI�*(PSCullingModeSenumSSI+-PSShowTrajectoriesSboolSSI0+"PSliwSBoolSSAUI�+CPSLimbLength 1SNumberSSAUD�?DDY@�+ShadingCY�+CullingS
CullingOffO42ModelL���9SRightHandMiddle3ModelSLimbNode1,VersionI�	4Properties70�,+PSRotationActiveSboolSSI�,(PSInheritTypeSenumSSI-GPS
ScalingMaxSVector3DSVectorSDDDT-8PSDefaultAttributeIndexSintSIntegerSI�-NPSLcl TranslationSLcl TranslationSSAD >u
�D@�&�D�I��?.IPSLcl RotationSLcl RotationSSA+D ܥ��D ܥ�<D��h��\.GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�.EPSVisibility InheritanceSVisibility InheritanceSSI�.,PS	MultiTakeSintSIntegerSI$/-PSManipulationModeSenumSSI�/UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�//PSSetPreferedAngleSActionSSI�/-PSPivotsVisibilitySenumSSIB05PSRotationLimitsVisibilitySboolSSI�0:PSLocalTranslationRefVisibilitySboolSSI�02PSRotationRefVisibilitySboolSSI13PSRotationAxisVisibilitySboolSSIJ11PSScalingRefVisibilitySboolSSI�19PSHierarchicalCenterVisibilitySboolSSI�16PSGeometricCenterVisibilitySboolSSI28PSReferentialSizeSdoubleSNumberSD(@^25PSDefaultKeyingGroupSintSIntegerSI�23PSDefaultKeyingGroupEnumSenumSSI�2%PSPickableSboolSSI
3*PS
TransformableSboolSSI@3(PSCullingModeSenumSSI{3-PSShowTrajectoriesSboolSSI�3"PSliwSBoolSSAUI�3CPSLimbLength 1SNumberSSAUD�?DDY@4ShadingCYB4CullingS
CullingOff=1ModelL��9SRightHandIndex1ModelSLimbNode�4VersionI��<Properties705HPSPreRotationSVector3DSVectorSD(Qp�c�D���PNk"�Dk�	A��S5+PSRotationActiveSboolSSI�5(PSInheritTypeSenumSSI�5GPS
ScalingMaxSVector3DSVectorSDDD$68PSDefaultAttributeIndexSintSIntegerSI�6NPSLcl TranslationSLcl TranslationSSAD�e��D�yҿ�D��y@�6IPSLcl RotationSLcl RotationSSA+D`~۪�D e|�D`��ݼ,7GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?7EPSVisibility InheritanceSVisibility InheritanceSSI�7,PS	MultiTakeSintSIntegerSI�7-PSManipulationModeSenumSSIW8UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�8/PSSetPreferedAngleSActionSSI�8-PSPivotsVisibilitySenumSSI95PSRotationLimitsVisibilitySboolSSIZ9:PSLocalTranslationRefVisibilitySboolSSI�92PSRotationRefVisibilitySboolSSI�93PSRotationAxisVisibilitySboolSSI:1PSScalingRefVisibilitySboolSSIa:9PSHierarchicalCenterVisibilitySboolSSI�:6PSGeometricCenterVisibilitySboolSSI�:8PSReferentialSizeSdoubleSNumberSD(@.;5PSDefaultKeyingGroupSintSIntegerSIo;3PSDefaultKeyingGroupEnumSenumSSI�;%PSPickableSboolSSI�;*PS
TransformableSboolSSI<(PSCullingModeSenumSSIK<-PSShowTrajectoriesSboolSSI{<"PSliwSBoolSSAUI�<CPSLimbLength 1SNumberSSAUD�?DDY@�<ShadingCY=CullingS
CullingOff�E1ModelL�	�9SRightHandIndex2ModelSLimbNode{=VersionI��EProperties70�=HPSPreRotationSVector3DSVectorSD�tc�hQ�?D������D�+�}�\�#>+PSRotationActiveSboolSSIY>(PSInheritTypeSenumSSI�>GPS
ScalingMaxSVector3DSVectorSDDD�>8PSDefaultAttributeIndexSintSIntegerSIP?NPSLcl TranslationSLcl TranslationSSAD���
�D���?D�!C�?�?IPSLcl RotationSLcl RotationSSA+D`���<D��	�D���<�?GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?O@EPSVisibility InheritanceSVisibility InheritanceSSI�@,PS	MultiTakeSintSIntegerSI�@-PSManipulationModeSenumSSI'AUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDdA/PSSetPreferedAngleSActionSSI�A-PSPivotsVisibilitySenumSSI�A5PSRotationLimitsVisibilitySboolSSI*B:PSLocalTranslationRefVisibilitySboolSSIjB2PSRotationRefVisibilitySboolSSI�B3PSRotationAxisVisibilitySboolSSI�B1PSScalingRefVisibilitySboolSSI1C9PSHierarchicalCenterVisibilitySboolSSIuC6PSGeometricCenterVisibilitySboolSSI�C8PSReferentialSizeSdoubleSNumberSD(@�C5PSDefaultKeyingGroupSintSIntegerSI?D3PSDefaultKeyingGroupEnumSenumSSIrD%PSPickableSboolSSI�D*PS
TransformableSboolSSI�D(PSCullingModeSenumSSIE-PSShowTrajectoriesSboolSSIKE"PSliwSBoolSSAUI�ECPSLimbLength 1SNumberSSAUD�?DDY@�EShadingCY�ECullingS
CullingOffiN1ModelL�9SRightHandIndex3ModelSLimbNodeKFVersionI�#NProperties70�F+PSRotationActiveSboolSSI�F(PSInheritTypeSenumSSI(GGPS
ScalingMaxSVector3DSVectorSDDDnG8PSDefaultAttributeIndexSintSIntegerSI�GNPSLcl TranslationSLcl TranslationSSAD�.�D��߿D@���?!HIPSLcl RotationSLcl RotationSSA+D e|ռD ܥ��D`���vHGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�HEPSVisibility InheritanceSVisibility InheritanceSSII,PS	MultiTakeSintSIntegerSI>I-PSManipulationModeSenumSSI�IUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�I/PSSetPreferedAngleSActionSSIJ-PSPivotsVisibilitySenumSSI\J5PSRotationLimitsVisibilitySboolSSI�J:PSLocalTranslationRefVisibilitySboolSSI�J2PSRotationRefVisibilitySboolSSI%K3PSRotationAxisVisibilitySboolSSIdK1PSScalingRefVisibilitySboolSSI�K9PSHierarchicalCenterVisibilitySboolSSI�K6PSGeometricCenterVisibilitySboolSSI5L8PSReferentialSizeSdoubleSNumberSD(@xL5PSDefaultKeyingGroupSintSIntegerSI�L3PSDefaultKeyingGroupEnumSenumSSI�L%PSPickableSboolSSI$M*PS
TransformableSboolSSIZM(PSCullingModeSenumSSI�M-PSShowTrajectoriesSboolSSI�M"PSliwSBoolSSAUINCPSLimbLength 1SNumberSSAUD�?DDY@9NShadingCY\NCullingS
CullingOff9W1ModelL�9SRightHandThumb1ModelSLimbNode�NVersionI��VProperties704OHPSPreRotationSVector3DSVectorSD�#uS�L<D��t[��?D��*�mO+PSRotationActiveSboolSSI�O(PSInheritTypeSenumSSI�OGPS
ScalingMaxSVector3DSVectorSDDD>P8PSDefaultAttributeIndexSintSIntegerSI�PNPSLcl TranslationSLcl TranslationSSAD�~��D����D༯@�PIPSLcl RotationSLcl RotationSSA+D@�B��D ܥ��D�>��FQGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�QEPSVisibility InheritanceSVisibility InheritanceSSI�Q,PS	MultiTakeSintSIntegerSIR-PSManipulationModeSenumSSIqRUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�R/PSSetPreferedAngleSActionSSI�R-PSPivotsVisibilitySenumSSI,S5PSRotationLimitsVisibilitySboolSSItS:PSLocalTranslationRefVisibilitySboolSSI�S2PSRotationRefVisibilitySboolSSI�S3PSRotationAxisVisibilitySboolSSI4T1PSScalingRefVisibilitySboolSSI{T9PSHierarchicalCenterVisibilitySboolSSI�T6PSGeometricCenterVisibilitySboolSSIU8PSReferentialSizeSdoubleSNumberSD(@HU5PSDefaultKeyingGroupSintSIntegerSI�U3PSDefaultKeyingGroupEnumSenumSSI�U%PSPickableSboolSSI�U*PS
TransformableSboolSSI*V(PSCullingModeSenumSSIeV-PSShowTrajectoriesSboolSSI�V"PSliwSBoolSSAUI�VCPSLimbLength 1SNumberSSAUD�?DDY@	WShadingCY,WCullingS
CullingOff�_1ModelLh�N:SRightHandThumb2ModelSLimbNode�WVersionI�m_Properties70�W+PSRotationActiveSboolSSIX(PSInheritTypeSenumSSIrXGPS
ScalingMaxSVector3DSVectorSDDD�X8PSDefaultAttributeIndexSintSIntegerSIYNPSLcl TranslationSLcl TranslationSSAD`�2��D`���D��@kYIPSLcl RotationSLcl RotationSSA+DD�D ���9�YGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?ZEPSVisibility InheritanceSVisibility InheritanceSSIMZ,PS	MultiTakeSintSIntegerSI�Z-PSManipulationModeSenumSSI�ZUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD([/PSSetPreferedAngleSActionSSIc[-PSPivotsVisibilitySenumSSI�[5PSRotationLimitsVisibilitySboolSSI�[:PSLocalTranslationRefVisibilitySboolSSI.\2PSRotationRefVisibilitySboolSSIo\3PSRotationAxisVisibilitySboolSSI�\1PSScalingRefVisibilitySboolSSI�\9PSHierarchicalCenterVisibilitySboolSSI9]6PSGeometricCenterVisibilitySboolSSI]8PSReferentialSizeSdoubleSNumberSD(@�]5PSDefaultKeyingGroupSintSIntegerSI^3PSDefaultKeyingGroupEnumSenumSSI6^%PSPickableSboolSSIn^*PS
TransformableSboolSSI�^(PSCullingModeSenumSSI�^-PSShowTrajectoriesSboolSSI_"PSliwSBoolSSAUI`_CPSLimbLength 1SNumberSSAUD�?DDY@�_ShadingCY�_CullingS
CullingOff�h1ModelLp�N:SRightHandThumb3ModelSLimbNode`VersionI�=hProperties70~`HPSPreRotationSVector3DSVectorSD$�rOϸ>DD�`+PSRotationActiveSboolSSI�`(PSInheritTypeSenumSSIBaGPS
ScalingMaxSVector3DSVectorSDDD�a8PSDefaultAttributeIndexSintSIntegerSI�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 InheritanceSSIc,PS	MultiTakeSintSIntegerSIXc-PSManipulationModeSenumSSI�cUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�c/PSSetPreferedAngleSActionSSI3d-PSPivotsVisibilitySenumSSIvd5PSRotationLimitsVisibilitySboolSSI�d:PSLocalTranslationRefVisibilitySboolSSI�d2PSRotationRefVisibilitySboolSSI?e3PSRotationAxisVisibilitySboolSSI~e1PSScalingRefVisibilitySboolSSI�e9PSHierarchicalCenterVisibilitySboolSSI	f6PSGeometricCenterVisibilitySboolSSIOf8PSReferentialSizeSdoubleSNumberSD(@�f5PSDefaultKeyingGroupSintSIntegerSI�f3PSDefaultKeyingGroupEnumSenumSSIg%PSPickableSboolSSI>g*PS
TransformableSboolSSItg(PSCullingModeSenumSSI�g-PSShowTrajectoriesSboolSSI�g"PSliwSBoolSSAUI0hCPSLimbLength 1SNumberSSAUD�?DDY@ShShadingCYvhCullingS
CullingOffPq.ModelLx�N:SLeftShoulderModelSLimbNode�hVersionI�
qProperties70KiHPSPreRotationSVector3DSVectorSD�2e��D�Z��_@D�OZ2�I9��i+PSRotationActiveSboolSSI�i(PSInheritTypeSenumSSIjGPS
ScalingMaxSVector3DSVectorSDDDUj8PSDefaultAttributeIndexSintSIntegerSI�jNPSLcl TranslationSLcl TranslationSSAD��@D@�)6@D@
M��kIPSLcl RotationSLcl RotationSSA+D e|�D����D`�s=]kGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�kEPSVisibility InheritanceSVisibility InheritanceSSI�k,PS	MultiTakeSintSIntegerSI%l-PSManipulationModeSenumSSI�lUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�l/PSSetPreferedAngleSActionSSIm-PSPivotsVisibilitySenumSSICm5PSRotationLimitsVisibilitySboolSSI�m:PSLocalTranslationRefVisibilitySboolSSI�m2PSRotationRefVisibilitySboolSSIn3PSRotationAxisVisibilitySboolSSIKn1PSScalingRefVisibilitySboolSSI�n9PSHierarchicalCenterVisibilitySboolSSI�n6PSGeometricCenterVisibilitySboolSSIo8PSReferentialSizeSdoubleSNumberSD(@_o5PSDefaultKeyingGroupSintSIntegerSI�o3PSDefaultKeyingGroupEnumSenumSSI�o%PSPickableSboolSSIp*PS
TransformableSboolSSIAp(PSCullingModeSenumSSI|p-PSShowTrajectoriesSboolSSI�p"PSliwSBoolSSAUI�pCPSLimbLength 1SNumberSSAUD�?DDY@ qShadingCYCqCullingS
CullingOffz)ModelL��N:SLeftArmModelSLimbNode�qVersionI��yProperties70rHPSPreRotationSVector3DSVectorSD��.�&��D�t�r%�D����9@Lr+PSRotationActiveSboolSSI�r(PSInheritTypeSenumSSI�rGPS
ScalingMaxSVector3DSVectorSDDDs8PSDefaultAttributeIndexSintSIntegerSIzsOPSLcl TranslationSLcl TranslationSSA+D��$@D0=D�<�sIPSLcl RotationSLcl RotationSSA+D���ռD ܥ�<D`*4!�&tGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?ytEPSVisibility InheritanceSVisibility InheritanceSSI�t,PS	MultiTakeSintSIntegerSI�t-PSManipulationModeSenumSSIQuUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�u/PSSetPreferedAngleSActionSSI�u-PSPivotsVisibilitySenumSSIv5PSRotationLimitsVisibilitySboolSSITv:PSLocalTranslationRefVisibilitySboolSSI�v2PSRotationRefVisibilitySboolSSI�v3PSRotationAxisVisibilitySboolSSIw1PSScalingRefVisibilitySboolSSI[w9PSHierarchicalCenterVisibilitySboolSSI�w6PSGeometricCenterVisibilitySboolSSI�w8PSReferentialSizeSdoubleSNumberSD(@(x5PSDefaultKeyingGroupSintSIntegerSIix3PSDefaultKeyingGroupEnumSenumSSI�x%PSPickableSboolSSI�x*PS
TransformableSboolSSI
y(PSCullingModeSenumSSIEy-PSShowTrajectoriesSboolSSIuy"PSliwSBoolSSAUI�yCPSLimbLength 1SNumberSSAUD�?DDY@�yShadingCYzCullingS
CullingOff�-ModelL��N:SLeftForeArmModelSLimbNodeqzVersionI���Properties70�zHPSPreRotationSVector3DSVectorSD0�]��D�Q�e�:�Dy�=���?{+PSRotationActiveSboolSSIO{(PSInheritTypeSenumSSI�{GPS
ScalingMaxSVector3DSVectorSDDD�{8PSDefaultAttributeIndexSintSIntegerSIG|OPSLcl TranslationSLcl TranslationSSA+D��g9@D0=D�<�|IPSLcl RotationSLcl RotationSSA+D��硼D����D�s���|GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?F}EPSVisibility InheritanceSVisibility InheritanceSSI�},PS	MultiTakeSintSIntegerSI�}-PSManipulationModeSenumSSI~UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD[~/PSSetPreferedAngleSActionSSI�~-PSPivotsVisibilitySenumSSI�~5PSRotationLimitsVisibilitySboolSSI!:PSLocalTranslationRefVisibilitySboolSSIa2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI(�9PSHierarchicalCenterVisibilitySboolSSIl�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI6�3PSDefaultKeyingGroupEnumSenumSSIi�%PSPickableSboolSSI��*PS
TransformableSboolSSIׁ(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIB�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYقCullingS
CullingOffY�*ModelL��N:SLeftHandModelSLimbNode;�VersionI��Properties70��+PSRotationActiveSboolSSIÃ(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD^�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD���8@DD���IPSLcl RotationSLcl RotationSSA+D ܥl�D ܥ��D )�<f�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI.�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDΆ/PSSetPreferedAngleSActionSSI	�-PSPivotsVisibilitySenumSSIL�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIԇ2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIT�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI߈6PSGeometricCenterVisibilitySboolSSI%�8PSReferentialSizeSdoubleSNumberSD(@h�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI܉%PSPickableSboolSSI�*PS
TransformableSboolSSIJ�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@)�ShadingCYL�CullingS
CullingOff(�0ModelL��N:SLeftHandPinky1ModelSLimbNode��VersionI��Properties70#�HPSPreRotationSVector3DSVectorSD�^�P�οDQ�'d�$@DU�Z~Q��\�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD-�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD �C@D�S
�D@�	���IPSLcl RotationSLcl RotationSSA+D��F�<D ܥ�<D���5�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSIŽ,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI`�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI؏-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIc�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI#�1PSScalingRefVisibilitySboolSSIj�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@7�5PSDefaultKeyingGroupSintSIntegerSIx�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSIT�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIՓCPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��0ModelL��N:SLeftHandPinky2ModelSLimbNode��VersionI���Properties70�HPSPreRotationSVector3DSVectorSD�޶UQ㋿D,��)'��?DhO����?+�+PSRotationActiveSboolSSIa�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIX�NPSLcl TranslationSLcl TranslationSSAD���@D�Ji�D��¿��IPSLcl RotationSLcl RotationSSA+D����D ܥ=D���<�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?W�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI̗-PSManipulationModeSenumSSI/�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDl�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI2�:PSLocalTranslationRefVisibilitySboolSSIr�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI9�9PSHierarchicalCenterVisibilitySboolSSI}�6PSGeometricCenterVisibilitySboolSSIÚ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIG�3PSDefaultKeyingGroupEnumSenumSSIz�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI#�-PSShowTrajectoriesSboolSSIS�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ǜShadingCY�CullingS
CullingOffp�0ModelL��N:SLeftHandPinky3ModelSLimbNodeR�VersionI�*�Properties70��+PSRotationActiveSboolSSIڝ(PSInheritTypeSenumSSI/�GPS
ScalingMaxSVector3DSVectorSDDDu�8PSDefaultAttributeIndexSintSIntegerSIўNPSLcl TranslationSLcl TranslationSSAD@�s@D���D�D@���>(�IPSLcl RotationSLcl RotationSSA+D e|�<D�D���}�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?ПEPSVisibility InheritanceSVisibility InheritanceSSI
�,PS	MultiTakeSintSIntegerSIE�-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��N:SLeftHandRing1ModelSLimbNodeʥVersionI���Properties709�HPSPreRotationSVector3DSVectorSD�E��=ģ�DM�˘^�@D��a>4c�r�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDC�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��@D�P�׿D EB���IPSLcl RotationSLcl RotationSSA+D� �<D ܥ̼D�#ڼK�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSIب,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIv�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI1�5PSRotationLimitsVisibilitySboolSSIy�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI9�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIī6PSGeometricCenterVisibilitySboolSSI
�8PSReferentialSizeSdoubleSNumberSD(@M�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI/�(PSCullingModeSenumSSIj�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY1�CullingS
CullingOff�/ModelL��N:SLeftHandRing2ModelSLimbNode��VersionI�ƶProperties70�HPSPreRotationSVector3DSVectorSD0[�	�ԿD�DWP*@DA�?�{�@�+PSRotationActiveSboolSSIv�(PSInheritTypeSenumSSI˯GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIm�NPSLcl TranslationSLcl TranslationSSAD A@D`Va�D�;�̿İIPSLcl RotationSLcl RotationSSA+D e|�<D ܥ�<D`�x�<�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?l�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSID�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIG�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIȳ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIN�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIش8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI\�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIǵ*PS
TransformableSboolSSI��(PSCullingModeSenumSSI8�-PSShowTrajectoriesSboolSSIh�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ܶShadingCY��CullingS
CullingOff��/ModelL��N:SLeftHandRing3ModelSLimbNodef�VersionI�>�Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIC�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	MultiTakeSintSIntegerSIY�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI4�-PSPivotsVisibilitySenumSSIw�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI@�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIƼ9PSHierarchicalCenterVisibilitySboolSSI
�6PSGeometricCenterVisibilitySboolSSIP�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIԽ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI?�*PS
TransformableSboolSSIu�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI1�CPSLimbLength 1SNumberSSAUD�?DDY@T�ShadingCYw�CullingS
CullingOffT�1ModelL�^�9SLeftHandMiddle1ModelSLimbNode�VersionI��Properties70O�HPSPreRotationSVector3DSVectorSDR��Q7؀�D�5�k��D���--���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDY�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�h@D`5!ȿD�9�?�IPSLcl RotationSLcl RotationSSA+D`~ۚ�D����D�n�<a�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI)�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIG�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIO�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI �8PSReferentialSizeSdoubleSNumberSD(@c�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIE�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@$�ShadingCYG�CullingS
CullingOff$�1ModelL�c�9SLeftHandMiddle2ModelSLimbNode��VersionI���Properties70�HPSPreRotationSVector3DSVectorSD��`�տD`���@D8�#W'9�X�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD)�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD Q�@D�,s??D�ǥ���IPSLcl RotationSLcl RotationSSA+D e|��D ܥ�<D��Q��1�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI\�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI_�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIf�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@3�5PSDefaultKeyingGroupSintSIntegerSIt�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIP�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��1ModelL�h�9SLeftHandMiddle3ModelSLimbNode��VersionI�X�Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI]�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD �+@D��v��D��5�>V�IPSLcl RotationSLcl RotationSSA+D� �<D ܥ�<D@������GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI8�,PS	MultiTakeSintSIntegerSIs�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIN�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIZ�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI$�6PSGeometricCenterVisibilitySboolSSIj�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI!�%PSPickableSboolSSIY�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIK�CPSLimbLength 1SNumberSSAUD�?DDY@n�ShadingCY��CullingS
CullingOffm�0ModelL�m�9SLeftHandIndex1ModelSLimbNode��VersionI�'�Properties70h�HPSPreRotationSVector3DSVectorSD4�t�c�D���PNk"�Dʴ	A����+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI,�GPS
ScalingMaxSVector3DSVectorSDDDr�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��@D���D�B
@%�IPSLcl RotationSLcl RotationSSA+D�K��D�D��ּz�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIB�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI`�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI)�3PSRotationAxisVisibilitySboolSSIh�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI9�8PSReferentialSizeSdoubleSNumberSD(@|�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI(�*PS
TransformableSboolSSI^�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@=�ShadingCY`�CullingS
CullingOff<�0ModelL�r�9SLeftHandIndex2ModelSLimbNode��VersionI���Properties707�HPSPreRotationSVector3DSVectorSD�&^�hQ�?D�������D�+�}�\�p�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDA�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�{�@D@�ft?D�Z�?��IPSLcl RotationSLcl RotationSSA+D ���D ܥ�<D���I�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIt�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI/�5PSRotationLimitsVisibilitySboolSSIw�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI7�1PSScalingRefVisibilitySboolSSI~�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@K�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI-�(PSCullingModeSenumSSIh�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY/�CullingS
CullingOff��0ModelL�w�9SLeftHandIndex3ModelSLimbNode��VersionI�o�Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIt�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD��_@D���D�?�վm�IPSLcl RotationSLcl RotationSSA+D e|żD ܥ�<D@6��<��GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSIO�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD*�/PSSetPreferedAngleSActionSSIe�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI0�2PSRotationRefVisibilitySboolSSIq�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI;�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI8�%PSPickableSboolSSIp�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIb�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��0ModelL�|�9SLeftHandThumb1ModelSLimbNode�VersionI�>�Properties70�HPSPreRotationSVector3DSVectorSDD��t[��?D2��*���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIC�GPS
ScalingMaxSVector3DSVectorSDDD��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	MultiTakeSintSIntegerSIY�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI4�-PSPivotsVisibilitySenumSSIw�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI@�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI
�6PSGeometricCenterVisibilitySboolSSIP�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI?�*PS
TransformableSboolSSIu�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI1�CPSLimbLength 1SNumberSSAUD�?DDY@T�ShadingCYw�CullingS
CullingOff�0ModelL聬9SLeftHandThumb2ModelSLimbNode��VersionI��Properties701�+PSRotationActiveSboolSSIg�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI^�NPSLcl TranslationSLcl TranslationSSAD`�2�?D`���D`
�@��IPSLcl RotationSLcl RotationSSA+DD�DTn��
�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?]�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI5UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDr/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI8:PSLocalTranslationRefVisibilitySboolSSIx2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI?9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIM3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI)-PSShowTrajectoriesSboolSSIY"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�
0ModelL���9SLeftHandThumb3ModelSLimbNodeXVersionI��
Properties70�HPSPreRotationSVector3DSVectorSD��cܥ�>DD+PSRotationActiveSboolSSI6(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI-NPSLcl TranslationSLcl TranslationSSAD@5^@D �r�D@��@�IPSLcl RotationSLcl RotationSSA+D��L�>DTn�DTn���GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?,EPSVisibility InheritanceSVisibility InheritanceSSIf,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI	UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDA	/PSSetPreferedAngleSActionSSI|	-PSPivotsVisibilitySenumSSI�	5PSRotationLimitsVisibilitySboolSSI
:PSLocalTranslationRefVisibilitySboolSSIG
2PSRotationRefVisibilitySboolSSI�
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSIR6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSIO%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI(
"PSliwSBoolSSAUIy
CPSLimbLength 1SNumberSSAUD�?DDY@�
ShadingCY�
CullingS
CullingOffA,ModelL���9SRightUpLegModelSLimbNode#VersionI��Properties70u+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDDF8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@.�D �C�D�IPSLcl RotationSLcl RotationSSA+DDDNGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI-PSManipulationModeSenumSSIyUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI45PSRotationLimitsVisibilitySboolSSI|:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI<1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI
8PSReferentialSizeSdoubleSNumberSD(@P5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI2(PSCullingModeSenumSSIm-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY4CullingS
CullingOff�*ModelL��9SRightLegModelSLimbNode�VersionI�nProperties70�+PSRotationActiveSboolSSI(PSInheritTypeSenumSSIsGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSINPSLcl TranslationSLcl TranslationSSAD`�p�D@�tD�D@�e��lIPSLcl RotationSLcl RotationSSA+DDD�GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?EPSVisibility InheritanceSVisibility InheritanceSSIN,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD)/PSSetPreferedAngleSActionSSId-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI/2PSRotationRefVisibilitySboolSSIp3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI:6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSI7%PSPickableSboolSSIo*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUIaCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff('+ModelL��9SRightFootModelSLimbNode
VersionI��&Properties70\+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD- 8PSDefaultAttributeIndexSintSIntegerSI� NPSLcl TranslationSLcl TranslationSSAD`V}�D@e(E�D |�� IPSLcl RotationSLcl RotationSSA+DDD5!GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�!EPSVisibility InheritanceSVisibility InheritanceSSI�!,PS	MultiTakeSintSIntegerSI�!-PSManipulationModeSenumSSI`"UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�"/PSSetPreferedAngleSActionSSI�"-PSPivotsVisibilitySenumSSI#5PSRotationLimitsVisibilitySboolSSIc#:PSLocalTranslationRefVisibilitySboolSSI�#2PSRotationRefVisibilitySboolSSI�#3PSRotationAxisVisibilitySboolSSI#$1PSScalingRefVisibilitySboolSSIj$9PSHierarchicalCenterVisibilitySboolSSI�$6PSGeometricCenterVisibilitySboolSSI�$8PSReferentialSizeSdoubleSNumberSD(@7%5PSDefaultKeyingGroupSintSIntegerSIx%3PSDefaultKeyingGroupEnumSenumSSI�%%PSPickableSboolSSI�%*PS
TransformableSboolSSI&(PSCullingModeSenumSSIT&-PSShowTrajectoriesSboolSSI�&"PSliwSBoolSSAUI�&CPSLimbLength 1SNumberSSAUD�?DDY@�&ShadingCY'CullingS
CullingOff�.+ModelL°9SRightToesModelSLimbNode~'VersionI��.Properties70�'+PSRotationActiveSboolSSI((PSInheritTypeSenumSSI[(GPS
ScalingMaxSVector3DSVectorSDDD�(8PSDefaultAttributeIndexSintSIntegerSI�(NPSLcl TranslationSLcl TranslationSSAD�Y��D�TD�D`�-@P)EPSVisibility InheritanceSVisibility InheritanceSSI�),PS	MultiTakeSintSIntegerSI�)-PSManipulationModeSenumSSI(*UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDe*/PSSetPreferedAngleSActionSSI�*-PSPivotsVisibilitySenumSSI�*5PSRotationLimitsVisibilitySboolSSI++:PSLocalTranslationRefVisibilitySboolSSIk+2PSRotationRefVisibilitySboolSSI�+3PSRotationAxisVisibilitySboolSSI�+1PSScalingRefVisibilitySboolSSI2,9PSHierarchicalCenterVisibilitySboolSSIv,6PSGeometricCenterVisibilitySboolSSI�,8PSReferentialSizeSdoubleSNumberSD(@�,5PSDefaultKeyingGroupSintSIntegerSI@-3PSDefaultKeyingGroupEnumSenumSSIs-%PSPickableSboolSSI�-*PS
TransformableSboolSSI�-(PSCullingModeSenumSSI.-PSShowTrajectoriesSboolSSIL."PSliwSBoolSSAUI�.CPSLimbLength 1SNumberSSAUD�?DDY@�.ShadingCY�.CullingS
CullingOffd7+ModelLǰ9SLeftUpLegModelSLimbNodeF/VersionI�7Properties70�/+PSRotationActiveSboolSSI�/(PSInheritTypeSenumSSI#0GPS
ScalingMaxSVector3DSVectorSDDDi08PSDefaultAttributeIndexSintSIntegerSI�0NPSLcl TranslationSLcl TranslationSSAD`.@D��C�D1IPSLcl RotationSLcl RotationSSA+DDDq1GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�1EPSVisibility InheritanceSVisibility InheritanceSSI�1,PS	MultiTakeSintSIntegerSI92-PSManipulationModeSenumSSI�2UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�2/PSSetPreferedAngleSActionSSI3-PSPivotsVisibilitySenumSSIW35PSRotationLimitsVisibilitySboolSSI�3:PSLocalTranslationRefVisibilitySboolSSI�32PSRotationRefVisibilitySboolSSI 43PSRotationAxisVisibilitySboolSSI_41PSScalingRefVisibilitySboolSSI�49PSHierarchicalCenterVisibilitySboolSSI�46PSGeometricCenterVisibilitySboolSSI058PSReferentialSizeSdoubleSNumberSD(@s55PSDefaultKeyingGroupSintSIntegerSI�53PSDefaultKeyingGroupEnumSenumSSI�5%PSPickableSboolSSI6*PS
TransformableSboolSSIU6(PSCullingModeSenumSSI�6-PSShowTrajectoriesSboolSSI�6"PSliwSBoolSSAUI7CPSLimbLength 1SNumberSSAUD�?DDY@47ShadingCYW7CullingS
CullingOff�?)ModelL ̰9SLeftLegModelSLimbNode�7VersionI��?Properties70
8+PSRotationActiveSboolSSI@8(PSInheritTypeSenumSSI�8GPS
ScalingMaxSVector3DSVectorSDDD�88PSDefaultAttributeIndexSintSIntegerSI79NPSLcl TranslationSLcl TranslationSSAD�p@D �tD�D@�e���9IPSLcl RotationSLcl RotationSSA+DDD�9GPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?6:EPSVisibility InheritanceSVisibility InheritanceSSIp:,PS	MultiTakeSintSIntegerSI�:-PSManipulationModeSenumSSI;UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDK;/PSSetPreferedAngleSActionSSI�;-PSPivotsVisibilitySenumSSI�;5PSRotationLimitsVisibilitySboolSSI<:PSLocalTranslationRefVisibilitySboolSSIQ<2PSRotationRefVisibilitySboolSSI�<3PSRotationAxisVisibilitySboolSSI�<1PSScalingRefVisibilitySboolSSI=9PSHierarchicalCenterVisibilitySboolSSI\=6PSGeometricCenterVisibilitySboolSSI�=8PSReferentialSizeSdoubleSNumberSD(@�=5PSDefaultKeyingGroupSintSIntegerSI&>3PSDefaultKeyingGroupEnumSenumSSIY>%PSPickableSboolSSI�>*PS
TransformableSboolSSI�>(PSCullingModeSenumSSI?-PSShowTrajectoriesSboolSSI2?"PSliwSBoolSSAUI�?CPSLimbLength 1SNumberSSAUD�?DDY@�?ShadingCY�?CullingS
CullingOffIH*ModelL(Ѱ9SLeftFootModelSLimbNode+@VersionI�HProperties70}@+PSRotationActiveSboolSSI�@(PSInheritTypeSenumSSIAGPS
ScalingMaxSVector3DSVectorSDDDNA8PSDefaultAttributeIndexSintSIntegerSI�ANPSLcl TranslationSLcl TranslationSSAD`V}�?D@e(E�D |�BIPSLcl RotationSLcl RotationSSA+DDDVBGPSLcl ScalingSLcl ScalingSSA+D�?D�?D�?�BEPSVisibility InheritanceSVisibility InheritanceSSI�B,PS	MultiTakeSintSIntegerSIC-PSManipulationModeSenumSSI�CUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�C/PSSetPreferedAngleSActionSSI�C-PSPivotsVisibilitySenumSSI<D5PSRotationLimitsVisibilitySboolSSI�D:PSLocalTranslationRefVisibilitySboolSSI�D2PSRotationRefVisibilitySboolSSIE3PSRotationAxisVisibilitySboolSSIDE1PSScalingRefVisibilitySboolSSI�E9PSHierarchicalCenterVisibilitySboolSSI�E6PSGeometricCenterVisibilitySboolSSIF8PSReferentialSizeSdoubleSNumberSD(@XF5PSDefaultKeyingGroupSintSIntegerSI�F3PSDefaultKeyingGroupEnumSenumSSI�F%PSPickableSboolSSIG*PS
TransformableSboolSSI:G(PSCullingModeSenumSSIuG-PSShowTrajectoriesSboolSSI�G"PSliwSBoolSSAUI�GCPSLimbLength 1SNumberSSAUD�?DDY@HShadingCY<HCullingS
CullingOffP*ModelL0ְ9SLeftToesModelSLimbNode�HVersionI��OProperties70�H+PSRotationActiveSboolSSI&I(PSInheritTypeSenumSSI{IGPS
ScalingMaxSVector3DSVectorSDDD�I8PSDefaultAttributeIndexSintSIntegerSIJNPSLcl TranslationSLcl TranslationSSAD�Y��?D�TD�D��-@pJEPSVisibility InheritanceSVisibility InheritanceSSI�J,PS	MultiTakeSintSIntegerSI�J-PSManipulationModeSenumSSIHKUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�K/PSSetPreferedAngleSActionSSI�K-PSPivotsVisibilitySenumSSIL5PSRotationLimitsVisibilitySboolSSIKL:PSLocalTranslationRefVisibilitySboolSSI�L2PSRotationRefVisibilitySboolSSI�L3PSRotationAxisVisibilitySboolSSIM1PSScalingRefVisibilitySboolSSIRM9PSHierarchicalCenterVisibilitySboolSSI�M6PSGeometricCenterVisibilitySboolSSI�M8PSReferentialSizeSdoubleSNumberSD(@N5PSDefaultKeyingGroupSintSIntegerSI`N3PSDefaultKeyingGroupEnumSenumSSI�N%PSPickableSboolSSI�N*PS
TransformableSboolSSIO(PSCullingModeSenumSSI<O-PSShowTrajectoriesSboolSSIlO"PSliwSBoolSSAUI�OCPSLimbLength 1SNumberSSAUD�?DDY@�OShadingCYPCullingS
CullingOffQ&AnimationStackL��Z:STake 001AnimStackS�PProperties70�P/PS	LocalStopSKTimeSTimeSLp6��5�P3PS
ReferenceStopSKTimeSTimeSLp6��5�R7AnimationStackL@�Z:S$Run_JumpDownHigh_Roll_RunAnimStackSxRProperties70�Q0PS
LocalStartSKTimeSTimeSL\l�t8�Q/PS	LocalStopSKTimeSTimeSL:zp_*R4PSReferenceStartSKTimeSTimeSL\l�t8kR3PS
ReferenceStopSKTimeSTimeSL:zp_'U4AnimationLayerL�f�:S!Take 001:BaseAnimationAnimLayerSUProperties70<SAPSColorSColorRGBSColorSD�������?DD�������?S5PSBlendModeBypassS	ULongLongSSL�S,PS	MultiTakeSintSIntegerSI�S+PSmLayerIDSintSIntegerSI)T)PSMutedForSoloSboolSSIaT*PS
MutedByParentSboolSSI�T+PSLockedByParentSboolSSI�T5PSParentCollapseVisibilitySboolSSI
U"PSEmptySboolSSI�W1AnimationLayerLg�:STake 001:AnimLayer1AnimLayerS�WProperties70�UAPSColorSColorRGBSColorSD�������?DD�������?V5PSBlendModeBypassS	ULongLongSSLXV,PS	MultiTakeSintSIntegerSI�V+PSmLayerIDSintSIntegerSI�V)PSMutedForSoloSboolSSIW*PS
MutedByParentSboolSSI9W+PSLockedByParentSboolSSI|W5PSParentCollapseVisibilitySboolSSI�W"PSEmptySboolSSIvZBAnimationLayerLH��:S/Run_JumpDownHigh_Roll_Run:AnimLayer1AnimLayerSiZProperties70�XAPSColorSColorRGBSColorSD�������?DD�������?�X5PSBlendModeBypassS	ULongLongSSLY,PS	MultiTakeSintSIntegerSIAY+PSmLayerIDSintSIntegerSIxY)PSMutedForSoloSboolSSI�Y*PS
MutedByParentSboolSSI�Y+PSLockedByParentSboolSSI,Z5PSParentCollapseVisibilitySboolSSI\Z"PSEmptySboolSSI)]EAnimationLayerL��:S2Run_JumpDownHigh_Roll_Run:BaseAnimationAnimLayerS]Properties70>[APSColorSColorRGBSColorSD�������?DD�������?�[5PSBlendModeBypassS	ULongLongSSL�[,PS	MultiTakeSintSIntegerSI�[+PSmLayerIDSintSIntegerSI+\)PSMutedForSoloSboolSSIc\*PS
MutedByParentSboolSSI�\+PSLockedByParentSboolSSI�\5PSParentCollapseVisibilitySboolSSI]"PSEmptySboolSSIh^#AnimationCurveNodeL�w�:STAnimCurveNodeS[^Properties70�]PSdSCompoundSS�]'PSd|XSNumberSSAD^'PSd|YSNumberSSAD HX@N^'PSd|ZSNumberSSAD�_#AnimationCurveNodeL��:SRAnimCurveNodeS�_Properties70�^PSdSCompoundSS#_'PSd|XSNumberSSADX_'PSd|YSNumberSSAD��_'PSd|ZSNumberSSAD�`#AnimationCurveNodeL�k�:SSAnimCurveNodeS�`Properties70-`PSdSCompoundSSb`'PSd|XSNumberSSAD�?�`'PSd|YSNumberSSAD�?�`'PSd|ZSNumberSSAD�?%b#AnimationCurveNodeL�H�:SRAnimCurveNodeSbProperties70laPSdSCompoundSS�a'PSd|XSNumberSSAD�a'PSd|YSNumberSSAD�b'PSd|ZSNumberSSADdc#AnimationCurveNodeLP��:SSAnimCurveNodeSWcProperties70�bPSdSCompoundSS�b'PSd|XSNumberSSAD�?c'PSd|YSNumberSSAD�?Jc'PSd|ZSNumberSSAD�?�d#AnimationCurveNodeLXM�:SRAnimCurveNodeS�dProperties70�cPSdSCompoundSSd'PSd|XSNumberSSADTd'PSd|YSNumberSSAD��d'PSd|ZSNumberSSAD�e#AnimationCurveNodeL�7�:SSAnimCurveNodeS�eProperties70)ePSdSCompoundSS^e'PSd|XSNumberSSAD�?�e'PSd|YSNumberSSAD�?�e'PSd|ZSNumberSSAD�?!g#AnimationCurveNodeL���:SRAnimCurveNodeSgProperties70hfPSdSCompoundSS�f'PSd|XSNumberSSAD�f'PSd|YSNumberSSAD�g'PSd|ZSNumberSSAD`h#AnimationCurveNodeL��:SSAnimCurveNodeSShProperties70�gPSdSCompoundSS�g'PSd|XSNumberSSAD�?h'PSd|YSNumberSSAD�?Fh'PSd|ZSNumberSSAD�?�i#AnimationCurveNodeL0W�:SRAnimCurveNodeS�iProperties70�hPSdSCompoundSSi'PSd|XSNumberSSADPi'PSd|YSNumberSSAD ܥ켅i'PSd|ZSNumberSSAD e|�<�j#AnimationCurveNodeL�9�:SSAnimCurveNodeS�jProperties70%jPSdSCompoundSSZj'PSd|XSNumberSSAD�?�j'PSd|YSNumberSSAD�?�j'PSd|ZSNumberSSAD�?l#AnimationCurveNodeL�݅:SRAnimCurveNodeSlProperties70dkPSdSCompoundSS�k'PSd|XSNumberSSAD@���k'PSd|YSNumberSSAD�l'PSd|ZSNumberSSAD 	��<\m#AnimationCurveNodeL�A�:SSAnimCurveNodeSOmProperties70�lPSdSCompoundSS�l'PSd|XSNumberSSAD�?
m'PSd|YSNumberSSAD�?Bm'PSd|ZSNumberSSAD�?�n#AnimationCurveNodeL-�:SRAnimCurveNodeS�nProperties70�mPSdSCompoundSSn'PSd|XSNumberSSAD e|��Ln'PSd|YSNumberSSAD ܥܼ�n'PSd|ZSNumberSSAD 2���o#AnimationCurveNodeL��:SSAnimCurveNodeS�oProperties70!oPSdSCompoundSSVo'PSd|XSNumberSSAD�?�o'PSd|YSNumberSSAD�?�o'PSd|ZSNumberSSAD�?q#AnimationCurveNodeL��:SRAnimCurveNodeSqProperties70`pPSdSCompoundSS�p'PSd|XSNumberSSAD� �<�p'PSd|YSNumberSSAD ܥ���p'PSd|ZSNumberSSAD�
��<Xr#AnimationCurveNodeL���:SSAnimCurveNodeSKrProperties70�qPSdSCompoundSS�q'PSd|XSNumberSSAD�?	r'PSd|YSNumberSSAD�?>r'PSd|ZSNumberSSAD�?�s#AnimationCurveNodeL�:SRAnimCurveNodeS�sProperties70�rPSdSCompoundSSs'PSd|XSNumberSSAD�K��Hs'PSd|YSNumberSSAD ܥ�<}s'PSd|ZSNumberSSAD����<�t#AnimationCurveNodeL [�:SSAnimCurveNodeS�tProperties70tPSdSCompoundSSRt'PSd|XSNumberSSAD�?�t'PSd|YSNumberSSAD�?�t'PSd|ZSNumberSSAD�?v#AnimationCurveNodeLp�:SRAnimCurveNodeSvProperties70\uPSdSCompoundSS�u'PSd|XSNumberSSAD�D3�<�u'PSd|YSNumberSSAD��	=�u'PSd|ZSNumberSSAD��
ռTw#AnimationCurveNodeL��:SSAnimCurveNodeSGwProperties70�vPSdSCompoundSS�v'PSd|XSNumberSSAD�?w'PSd|YSNumberSSAD�?:w'PSd|ZSNumberSSAD�?�x#AnimationCurveNodeL�w�:SRAnimCurveNodeS�xProperties70�wPSdSCompoundSSx'PSd|XSNumberSSADDx'PSd|YSNumberSSAD ܥ�<yx'PSd|ZSNumberSSAD ܥ\��y#AnimationCurveNodeL���:SSAnimCurveNodeS�yProperties70yPSdSCompoundSSNy'PSd|XSNumberSSAD�?�y'PSd|YSNumberSSAD�?�y'PSd|ZSNumberSSAD�?{#AnimationCurveNodeL��:SRAnimCurveNodeS{Properties70XzPSdSCompoundSS�z'PSd|XSNumberSSAD e|u<�z'PSd|YSNumberSSAD����<�z'PSd|ZSNumberSSAD��o��P|#AnimationCurveNodeL�@�:SSAnimCurveNodeSC|Properties70�{PSdSCompoundSS�{'PSd|XSNumberSSAD�?|'PSd|YSNumberSSAD�?6|'PSd|ZSNumberSSAD�?�}#AnimationCurveNodeL˅:SRAnimCurveNodeS�}Properties70�|PSdSCompoundSS}'PSd|XSNumberSSAD�a�@}'PSd|YSNumberSSAD e|�<u}'PSd|ZSNumberSSAD�ja�<�~#AnimationCurveNodeL2�:SSAnimCurveNodeS�~Properties70~PSdSCompoundSSJ~'PSd|XSNumberSSAD�?~'PSd|YSNumberSSAD�?�~'PSd|ZSNumberSSAD�?
�#AnimationCurveNodeLx�:SRAnimCurveNodeS�Properties70TPSdSCompoundSS�'PSd|XSNumberSSAD ܥ���'PSd|YSNumberSSAD ܥܼ�'PSd|ZSNumberSSAD�9p��L�#AnimationCurveNodeL��:SSAnimCurveNodeS?�Properties70��PSdSCompoundSSȀ'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?2�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL���:SRAnimCurveNodeS~�Properties70ҁPSdSCompoundSS�'PSd|XSNumberSSAD@�Q�<<�'PSd|YSNumberSSAD ܥܼq�'PSd|ZSNumberSSAD���<ʃ#AnimationCurveNodeL��:SSAnimCurveNodeS��Properties70�PSdSCompoundSSF�'PSd|XSNumberSSAD�?{�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?	�#AnimationCurveNodeL�-�:SRAnimCurveNodeS��Properties70P�PSdSCompoundSS��'PSd|XSNumberSSAD`~�ʼ��'PSd|YSNumberSSAD���=�'PSd|ZSNumberSSAD@�H�#AnimationCurveNodeL م:SSAnimCurveNodeS;�Properties70��PSdSCompoundSSą'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?.�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL`'�:SRAnimCurveNodeSz�Properties70ΆPSdSCompoundSS�'PSd|XSNumberSSAD ܥ��8�'PSd|YSNumberSSAD ܥ�<m�'PSd|ZSNumberSSAD��h��ƈ#AnimationCurveNodeLhR�:SSAnimCurveNodeS��Properties70
�PSdSCompoundSSB�'PSd|XSNumberSSAD�?w�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeLh�:SRAnimCurveNodeS��Properties70L�PSdSCompoundSS��'PSd|XSNumberSSAD`~۪���'PSd|YSNumberSSAD e|��'PSd|ZSNumberSSAD`��ݼD�#AnimationCurveNodeL�U�:SSAnimCurveNodeS7�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?*�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�م:SRAnimCurveNodeSv�Properties70ʋPSdSCompoundSS��'PSd|XSNumberSSAD`���<4�'PSd|YSNumberSSAD��	�i�'PSd|ZSNumberSSAD���<#AnimationCurveNodeL���:SSAnimCurveNodeS��Properties70	�PSdSCompoundSS>�'PSd|XSNumberSSAD�?s�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL`ۅ:SRAnimCurveNodeS�Properties70H�PSdSCompoundSS}�'PSd|XSNumberSSAD e|ռ��'PSd|YSNumberSSAD ܥ���'PSd|ZSNumberSSAD`���@�#AnimationCurveNodeL�…:SSAnimCurveNodeS3�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?&�'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL0{�:SRAnimCurveNodeSr�Properties70ƐPSdSCompoundSS��'PSd|XSNumberSSAD@�B��0�'PSd|YSNumberSSAD ܥ��e�'PSd|ZSNumberSSAD�>����#AnimationCurveNodeL"�:SSAnimCurveNodeS��Properties70�PSdSCompoundSS:�'PSd|XSNumberSSAD�?o�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL���:SRAnimCurveNodeS�Properties70D�PSdSCompoundSSy�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD ���9<�#AnimationCurveNodeL�:SSAnimCurveNodeS/�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?"�'PSd|ZSNumberSSAD�?{�#AnimationCurveNodeL�O�:SRAnimCurveNodeSn�Properties70•PSdSCompoundSS��'PSd|XSNumberSSAD e|��,�'PSd|YSNumberSSAD@��R8a�'PSd|ZSNumberSSAD ���9��#AnimationCurveNodeLHƅ:SSAnimCurveNodeS��Properties70�PSdSCompoundSS6�'PSd|XSNumberSSAD�?k�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�҅:SRAnimCurveNodeS�Properties70@�PSdSCompoundSSu�'PSd|XSNumberSSAD e|弪�'PSd|YSNumberSSAD����ߘ'PSd|ZSNumberSSAD`�s=8�#AnimationCurveNodeL8��:SSAnimCurveNodeS+�Properties70�PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?w�#AnimationCurveNodeL�b�:STAnimCurveNodeSj�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD��$@(�'PSd|YSNumberSSAD0=]�'PSd|ZSNumberSSAD�<��#AnimationCurveNodeL0��:SRAnimCurveNodeS��Properties70��PSdSCompoundSS2�'PSd|XSNumberSSAD���ռg�'PSd|YSNumberSSAD ܥ�<��'PSd|ZSNumberSSAD`*4!���#AnimationCurveNodeLH�:SSAnimCurveNodeS�Properties70<�PSdSCompoundSSq�'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?۝'PSd|ZSNumberSSAD�?4�#AnimationCurveNodeL`B�:STAnimCurveNodeS'�Properties70{�PSdSCompoundSS��'PSd|XSNumberSSAD��g9@�'PSd|YSNumberSSAD0=�'PSd|ZSNumberSSAD�<s�#AnimationCurveNodeL I�:SRAnimCurveNodeSf�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD��硼$�'PSd|YSNumberSSAD����Y�'PSd|ZSNumberSSAD�s����#AnimationCurveNodeL�q�:SSAnimCurveNodeS��Properties70��PSdSCompoundSS.�'PSd|XSNumberSSAD�?c�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL�E�:SRAnimCurveNodeS�Properties708�PSdSCompoundSSm�'PSd|XSNumberSSAD ܥl���'PSd|YSNumberSSAD ܥ��ע'PSd|ZSNumberSSAD )�<0�#AnimationCurveNodeL�&�:SSAnimCurveNodeS#�Properties70w�PSdSCompoundSS��'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?o�#AnimationCurveNodeL��:SRAnimCurveNodeSb�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD��F�< �'PSd|YSNumberSSAD ܥ�<U�'PSd|ZSNumberSSAD�����#AnimationCurveNodeL�:SSAnimCurveNodeS��Properties70��PSdSCompoundSS*�'PSd|XSNumberSSAD�?_�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeLhI�:SRAnimCurveNodeS�Properties704�PSdSCompoundSSi�'PSd|XSNumberSSAD������'PSd|YSNumberSSAD ܥ=ӧ'PSd|ZSNumberSSAD���<,�#AnimationCurveNodeL��:SSAnimCurveNodeS�Properties70s�PSdSCompoundSS��'PSd|XSNumberSSAD�?ݨ'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?k�#AnimationCurveNodeLp�:SRAnimCurveNodeS^�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD e|�<�'PSd|YSNumberSSAD�Q�'PSd|ZSNumberSSAD�����#AnimationCurveNodeL(Y�:SSAnimCurveNodeS��Properties70�PSdSCompoundSS&�'PSd|XSNumberSSAD�?[�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeLX��:SRAnimCurveNodeSܬProperties700�PSdSCompoundSSe�'PSd|XSNumberSSAD� �<��'PSd|YSNumberSSAD ܥ̼Ϭ'PSd|ZSNumberSSAD�#ڼ(�#AnimationCurveNodeL���:SSAnimCurveNodeS�Properties70o�PSdSCompoundSS��'PSd|XSNumberSSAD�?٭'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?g�#AnimationCurveNodeL�ą:SRAnimCurveNodeSZ�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD e|�<�'PSd|YSNumberSSAD ܥ�<M�'PSd|ZSNumberSSAD`�x�<��#AnimationCurveNodeL�N�:SSAnimCurveNodeS��Properties70�PSdSCompoundSS"�'PSd|XSNumberSSAD�?W�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL R�:SRAnimCurveNodeSرProperties70,�PSdSCompoundSSa�'PSd|XSNumberSSAD ܥ�<��'PSd|YSNumberSSAD����˱'PSd|ZSNumberSSAD���$�#AnimationCurveNodeL�	�:SSAnimCurveNodeS�Properties70k�PSdSCompoundSS��'PSd|XSNumberSSAD�?ղ'PSd|YSNumberSSAD�?
�'PSd|ZSNumberSSAD�?c�#AnimationCurveNodeL��:SRAnimCurveNodeSV�Properties70��PSdSCompoundSS߳'PSd|XSNumberSSAD`~ۚ��'PSd|YSNumberSSAD����I�'PSd|ZSNumberSSAD�n�<��#AnimationCurveNodeL8C�:SSAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?S�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL���:SRAnimCurveNodeSԶProperties70(�PSdSCompoundSS]�'PSd|XSNumberSSAD e|����'PSd|YSNumberSSAD ܥ�<Ƕ'PSd|ZSNumberSSAD��Q�� �#AnimationCurveNodeL(5�:SSAnimCurveNodeS�Properties70g�PSdSCompoundSS��'PSd|XSNumberSSAD�?ѷ'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?_�#AnimationCurveNodeL�G�:SRAnimCurveNodeSR�Properties70��PSdSCompoundSS۸'PSd|XSNumberSSAD� �<�'PSd|YSNumberSSAD ܥ�<E�'PSd|ZSNumberSSAD@������#AnimationCurveNodeL�3�:SSAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?O�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?ݻ#AnimationCurveNodeL8�:SRAnimCurveNodeSлProperties70$�PSdSCompoundSSY�'PSd|XSNumberSSAD�K����'PSd|YSNumberSSAD�û'PSd|ZSNumberSSAD��ּ�#AnimationCurveNodeL(,�:SSAnimCurveNodeS�Properties70c�PSdSCompoundSS��'PSd|XSNumberSSAD�?ͼ'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?[�#AnimationCurveNodeL@��:SRAnimCurveNodeSN�Properties70��PSdSCompoundSS׽'PSd|XSNumberSSAD ����'PSd|YSNumberSSAD ܥ�<A�'PSd|ZSNumberSSAD�����#AnimationCurveNodeLȔ�:SSAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?K�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLh��:SRAnimCurveNodeS��Properties70 �PSdSCompoundSSU�'PSd|XSNumberSSAD e|ż��'PSd|YSNumberSSAD ܥ�<��'PSd|ZSNumberSSAD@6��<�#AnimationCurveNodeLȦ�:SSAnimCurveNodeS�Properties70_�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?W�#AnimationCurveNodeLp��:SRAnimCurveNodeSJ�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�e
z<�'PSd|YSNumberSSAD ܥ��=�'PSd|ZSNumberSSAD������#AnimationCurveNodeL�+�:SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?G�'PSd|YSNumberSSAD�?|�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL`��:SRAnimCurveNodeS��Properties70�PSdSCompoundSSQ�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD���'PSd|ZSNumberSSADTn���#AnimationCurveNodeL�n�:SSAnimCurveNodeS�Properties70[�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?S�#AnimationCurveNodeLH��:SRAnimCurveNodeSF�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��L�>�'PSd|YSNumberSSADTn�9�'PSd|ZSNumberSSADTn����#AnimationCurveNodeLl�:SSAnimCurveNodeS��Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?C�'PSd|YSNumberSSAD�?x�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�d�:SRAnimCurveNodeS��Properties70�PSdSCompoundSSM�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD�#AnimationCurveNodeLP�:SSAnimCurveNodeS�Properties70W�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?O�#AnimationCurveNodeL�%�:SRAnimCurveNodeSB�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'PSd|YSNumberSSAD�5�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�߅:SSAnimCurveNodeS��Properties70��PSdSCompoundSS
�'PSd|XSNumberSSAD�??�'PSd|YSNumberSSAD�?t�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL��:SRAnimCurveNodeS��Properties70�PSdSCompoundSSI�'PSd|XSNumberSSAD~�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD�#AnimationCurveNodeL���:SSAnimCurveNodeS��Properties70S�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?K�#AnimationCurveNodeL0!�:SRAnimCurveNodeS>�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�1�'PSd|ZSNumberSSAD��#AnimationCurveNodeL�e�:SSAnimCurveNodeS}�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?;�'PSd|YSNumberSSAD�?p�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL`Ʌ:SRAnimCurveNodeS��Properties70�PSdSCompoundSSE�'PSd|XSNumberSSADz�'PSd|YSNumberSSAD���'PSd|ZSNumberSSAD�#AnimationCurveNodeLж�:SSAnimCurveNodeS��Properties70O�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?G�#AnimationCurveNodeL�P�:SRAnimCurveNodeS:�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�-�'PSd|ZSNumberSSAD��#AnimationCurveNodeL���:SSAnimCurveNodeSy�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�?7�'PSd|YSNumberSSAD�?l�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL~�9STAnimCurveNodeS��Properties70�PSdSCompoundSSA�'PSd|XSNumberSSAD�i7x�v�'PSd|YSNumberSSAD��V@��'PSd|ZSNumberSSAD���J��#AnimationCurveNodeL�{�9SRAnimCurveNodeS��Properties70K�PSdSCompoundSS��'PSd|XSNumberSSAD��/+@��'PSd|YSNumberSSAD��U���'PSd|ZSNumberSSAD��2@C�#AnimationCurveNodeL�w�9SSAnimCurveNodeS6�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?)�'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLu�9SRAnimCurveNodeSu�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD|Q,@3�'PSd|YSNumberSSAD��@h�'PSd|ZSNumberSSAD���'���#AnimationCurveNodeLr�9SSAnimCurveNodeS��Properties70�PSdSCompoundSS=�'PSd|XSNumberSSAD�?r�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL�o�9SRAnimCurveNodeS��Properties70G�PSdSCompoundSS|�'PSd|XSNumberSSAD�^3(���'PSd|YSNumberSSAD 
���'PSd|ZSNumberSSAD�X�ؿ?�#AnimationCurveNodeL�l�9SSAnimCurveNodeS2�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?%�'PSd|ZSNumberSSAD�?~�#AnimationCurveNodeL j�9SRAnimCurveNodeSq�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�ܔ�/�'PSd|YSNumberSSAD`��
�d�'PSd|ZSNumberSSAD�c�
@��#AnimationCurveNodeLxf�9SSAnimCurveNodeS��Properties70�PSdSCompoundSS9�'PSd|XSNumberSSAD�?n�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�c�9SRAnimCurveNodeS��Properties70C�PSdSCompoundSSx�'PSd|XSNumberSSAD�E	"���'PSd|YSNumberSSAD`��.@��'PSd|ZSNumberSSAD Oǿ;�#AnimationCurveNodeL a�9SSAnimCurveNodeS.�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?!�'PSd|ZSNumberSSAD�?z�#AnimationCurveNodeL�^�9SRAnimCurveNodeSm�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�'O@@+�'PSd|YSNumberSSAD��v4@`�'PSd|ZSNumberSSAD}�Q@��#AnimationCurveNodeL��9SSAnimCurveNodeS��Properties70�PSdSCompoundSS5�'PSd|XSNumberSSAD�?j�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�Z�9SRAnimCurveNodeS��Properties70?�PSdSCompoundSSt�'PSd|XSNumberSSAD`�4�?��'PSd|YSNumberSSAD�dC@��'PSd|ZSNumberSSAD��u!�7�#AnimationCurveNodeLHW�9SSAnimCurveNodeS*�Properties70~�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?v�#AnimationCurveNodeL�T�9SRAnimCurveNodeSi�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD�|Rq?'�'PSd|YSNumberSSADd)��\�'PSd|ZSNumberSSAD`�M(���#AnimationCurveNodeLQ�9SSAnimCurveNodeS��Properties70��PSdSCompoundSS1�'PSd|XSNumberSSAD�?f�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL�N�9SRAnimCurveNodeS��Properties70;�PSdSCompoundSSp�'PSd|XSNumberSSAD �W���'PSd|YSNumberSSAD�+z0@��'PSd|ZSNumberSSAD _A9@3�#AnimationCurveNodeL�J�9SSAnimCurveNodeS&�Properties70z�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?r�#AnimationCurveNodeLH�9SRAnimCurveNodeSe�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD`��#�'PSd|YSNumberSSAD`G�?X�'PSd|ZSNumberSSAD�<@��#AnimationCurveNodeL�E�9SSAnimCurveNodeS��Properties70��PSdSCompoundSS-�'PSd|XSNumberSSAD�?b�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL���9SRAnimCurveNodeS��Properties707�PSdSCompoundSSl�'PSd|XSNumberSSAD@!����'PSd|YSNumberSSAD@{��?��'PSd|ZSNumberSSAD���;@/�#AnimationCurveNodeL�A�9SSAnimCurveNodeS"�Properties70v�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?n�#AnimationCurveNodeL`?�9SRAnimCurveNodeSa�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD`�^ؿ�'PSd|YSNumberSSAD [>@T�'PSd|ZSNumberSSAD�R:@��#AnimationCurveNodeL�;�9SSAnimCurveNodeS��Properties70��PSdSCompoundSS)�'PSd|XSNumberSSAD�?^�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeLH��9SRAnimCurveNodeS��Properties703�PSdSCompoundSSh�'PSd|XSNumberSSAD@P����'PSd|YSNumberSSAD��?��'PSd|ZSNumberSSAD`�<@+�#AnimationCurveNodeL�7�9SSAnimCurveNodeS�Properties70r�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?j�#AnimationCurveNodeL�5�9SRAnimCurveNodeS]�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD`4���'PSd|YSNumberSSAD`���?P�'PSd|ZSNumberSSAD �m<@��#AnimationCurveNodeL�2�9SSAnimCurveNodeS��Properties70��PSdSCompoundSS%�'PSd|XSNumberSSAD�?Z�'PSd|YSNumberSSAD�?��'PSd|ZSNumberSSAD�?��#AnimationCurveNodeL00�9SRAnimCurveNodeS��Properties70/�PSdSCompoundSSd�'PSd|XSNumberSSAD@U�@��'PSd|YSNumberSSAD@k/���'PSd|ZSNumberSSAD�b�9@'�#AnimationCurveNodeL�,�9SSAnimCurveNodeS�Properties70n�PSdSCompoundSS��'PSd|XSNumberSSAD�?��'PSd|YSNumberSSAD�?
�'PSd|ZSNumberSSAD�?f#AnimationCurveNodeLX��9SRAnimCurveNodeSYProperties70��PSdSCompoundSS��'PSd|XSNumberSSAD���?'PSd|YSNumberSSAD ��L'PSd|ZSNumberSSAD�f6?@�#AnimationCurveNodeL�(�9SSAnimCurveNodeS�Properties70�PSdSCompoundSS!'PSd|XSNumberSSAD�?V'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL0'�9SRAnimCurveNodeS�Properties70+PSdSCompoundSS`'PSd|XSNumberSSAD`P;�?�'PSd|YSNumberSSAD =^ÿ�'PSd|ZSNumberSSAD ��@@##AnimationCurveNodeL�#�9SSAnimCurveNodeSProperties70jPSdSCompoundSS�'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?	'PSd|ZSNumberSSAD�?b#AnimationCurveNodeL!�9SRAnimCurveNodeSUProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�ה?'PSd|YSNumberSSAD���&�H'PSd|ZSNumberSSAD@��1@�#AnimationCurveNodeL0�9SSAnimCurveNodeS�Properties70�PSdSCompoundSS'PSd|XSNumberSSAD�?R'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL8�9SRAnimCurveNodeS�Properties70'PSdSCompoundSS\'PSd|XSNumberSSAD�ð@�'PSd|YSNumberSSAD�����'PSd|ZSNumberSSAD`p�>@	#AnimationCurveNodeL@�9SSAnimCurveNodeS	Properties70fPSdSCompoundSS�'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?	'PSd|ZSNumberSSAD�?^
#AnimationCurveNodeL�9SRAnimCurveNodeSQ
Properties70�	PSdSCompoundSS�	'PSd|XSNumberSSAD!��?
'PSd|YSNumberSSAD��C��D
'PSd|ZSNumberSSAD�5@�#AnimationCurveNodeLX�9SSAnimCurveNodeS�Properties70�
PSdSCompoundSS'PSd|XSNumberSSAD�?N'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL��9SRAnimCurveNodeS�Properties70#PSdSCompoundSSX'PSd|XSNumberSSAD@�B)@�'PSd|YSNumberSSAD � ��'PSd|ZSNumberSSAD �@#AnimationCurveNodeL��9SSAnimCurveNodeSProperties70b
PSdSCompoundSS�
'PSd|XSNumberSSAD�?�
'PSd|YSNumberSSAD�?'PSd|ZSNumberSSAD�?Z#AnimationCurveNodeL0��9SRAnimCurveNodeSMProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD���?'PSd|YSNumberSSAD�� �@'PSd|ZSNumberSSAD�`�Ͽ�#AnimationCurveNodeL��9SSAnimCurveNodeS�Properties70�PSdSCompoundSS'PSd|XSNumberSSAD�?J'PSd|YSNumberSSAD�?'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL���9SRAnimCurveNodeS�Properties70PSdSCompoundSST'PSd|XSNumberSSAD C@�'PSd|YSNumberSSAD`99��'PSd|ZSNumberSSADw�#AnimationCurveNodeL@�9SSAnimCurveNodeS
Properties70^PSdSCompoundSS�'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?V#AnimationCurveNodeLH�9SRAnimCurveNodeSIProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD��$@'PSd|YSNumberSSAD�^.�<'PSd|ZSNumberSSAD`�,��#AnimationCurveNodeLx�9SSAnimCurveNodeS�Properties70�PSdSCompoundSS'PSd|XSNumberSSAD�?F'PSd|YSNumberSSAD�?{'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL��9STAnimCurveNodeS�Properties70PSdSCompoundSSP'PSd|XSNumberSSAD��$@�'PSd|YSNumberSSAD0=�'PSd|ZSNumberSSAD��#AnimationCurveNodeL���9SRAnimCurveNodeSProperties70ZPSdSCompoundSS�'PSd|XSNumberSSAD���+@�'PSd|YSNumberSSAD�v+��'PSd|ZSNumberSSAD�
L�R#AnimationCurveNodeL(��9SSAnimCurveNodeSEProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�?'PSd|YSNumberSSAD�?8'PSd|ZSNumberSSAD�?�#AnimationCurveNodeL���9STAnimCurveNodeS�Properties70�PSdSCompoundSS
'PSd|XSNumberSSAD��g9@B'PSd|YSNumberSSAD0=w'PSd|ZSNumberSSAD�<�#AnimationCurveNodeL���9SRAnimCurveNodeS�Properties70PSdSCompoundSSL'PSd|XSNumberSSAD|0��'PSd|YSNumberSSAD�
���'PSd|ZSNumberSSAD�jkܿ#AnimationCurveNodeL���9SSAnimCurveNodeSProperties70VPSdSCompoundSS�'PSd|XSNumberSSAD�?�'PSd|YSNumberSSAD�?�'PSd|ZSNumberSSAD�?N#AnimationCurveNodeL��9SRAnimCurveNodeSAProperties70�PSdSCompoundSS�'PSd|XSNumberSSAD�4��'PSd|YSNumberSSAD��)!@4'PSd|ZSNumberSSAD@�C��#AnimationCurveNodeL��9SSAnimCurveNodeS�Properties70�PSdSCompoundSS	'PSd|XSNumberSSAD�?>'PSd|YSNumberSSAD�?s'PSd|ZSNumberSSAD�?� #AnimationCurveNodeL���9SRAnimCurveNodeS� Properties70 PSdSCompoundSSH 'PSd|XSNumberSSAD �$@} 'PSd|YSNumberSSAD`p�-�� 'PSd|ZSNumberSSAD���<�"#AnimationCurveNodeL���9SSAnimCurveNodeS�!Properties70R!PSdSCompoundSS�!'PSd|XSNumberSSAD�?�!'PSd|YSNumberSSAD�?�!'PSd|ZSNumberSSAD�?J##AnimationCurveNodeLp��9SRAnimCurveNodeS=#Properties70�"PSdSCompoundSS�"'PSd|XSNumberSSAD@FD@�"'PSd|YSNumberSSAD�@b�?0#'PSd|ZSNumberSSAD@�K<��$#AnimationCurveNodeLX��9SSAnimCurveNodeS|$Properties70�#PSdSCompoundSS$'PSd|XSNumberSSAD�?:$'PSd|YSNumberSSAD�?o$'PSd|ZSNumberSSAD�?�%#AnimationCurveNodeL@��9SRAnimCurveNodeS�%Properties70%PSdSCompoundSSD%'PSd|XSNumberSSAD`,a
@y%'PSd|YSNumberSSAD�M��?�%'PSd|ZSNumberSSAD�V�1�'#AnimationCurveNodeL(��9SSAnimCurveNodeS�&Properties70N&PSdSCompoundSS�&'PSd|XSNumberSSAD�?�&'PSd|YSNumberSSAD�?�&'PSd|ZSNumberSSAD�?F(#AnimationCurveNodeL��9SRAnimCurveNodeS9(Properties70�'PSdSCompoundSS�''PSd|XSNumberSSAD`��?�''PSd|YSNumberSSAD����,('PSd|ZSNumberSSAD�9��)#AnimationCurveNodeL���9SSAnimCurveNodeSx)Properties70�(PSdSCompoundSS)'PSd|XSNumberSSAD�?6)'PSd|YSNumberSSAD�?k)'PSd|ZSNumberSSAD�?�*#AnimationCurveNodeL��9SRAnimCurveNodeS�*Properties70*PSdSCompoundSS@*'PSd|XSNumberSSAD�G��?u*'PSd|YSNumberSSAD`ܥ�?�*'PSd|ZSNumberSSAD`�S<�,#AnimationCurveNodeLȵ�9SSAnimCurveNodeS�+Properties70J+PSdSCompoundSS+'PSd|XSNumberSSAD�?�+'PSd|YSNumberSSAD�?�+'PSd|ZSNumberSSAD�?B-#AnimationCurveNodeL���9SRAnimCurveNodeS5-Properties70�,PSdSCompoundSS�,'PSd|XSNumberSSAD���?�,'PSd|YSNumberSSAD�W$�?(-'PSd|ZSNumberSSAD��1��.#AnimationCurveNodeL���9SSAnimCurveNodeSt.Properties70�-PSdSCompoundSS�-'PSd|XSNumberSSAD�?2.'PSd|YSNumberSSAD�?g.'PSd|ZSNumberSSAD�?�/#AnimationCurveNodeL���9SRAnimCurveNodeS�/Properties70/PSdSCompoundSS</'PSd|XSNumberSSAD�*�q/'PSd|YSNumberSSAD@�;�?�/'PSd|ZSNumberSSAD���;��0#AnimationCurveNodeLh��9SSAnimCurveNodeS�0Properties70F0PSdSCompoundSS{0'PSd|XSNumberSSAD�?�0'PSd|YSNumberSSAD�?�0'PSd|ZSNumberSSAD�?>2#AnimationCurveNodeLP��9SRAnimCurveNodeS12Properties70�1PSdSCompoundSS�1'PSd|XSNumberSSAD�����1'PSd|YSNumberSSAD��ֿ$2'PSd|ZSNumberSSAD@�@�}3#AnimationCurveNodeL���9SSAnimCurveNodeSp3Properties70�2PSdSCompoundSS�2'PSd|XSNumberSSAD�?.3'PSd|YSNumberSSAD�?c3'PSd|ZSNumberSSAD�?�4#AnimationCurveNodeL ��9SRAnimCurveNodeS�4Properties704PSdSCompoundSS84'PSd|XSNumberSSAD�C�m4'PSd|YSNumberSSAD�4ƿ�4'PSd|ZSNumberSSAD@��6��5#AnimationCurveNodeLx��9SSAnimCurveNodeS�5Properties70B5PSdSCompoundSSw5'PSd|XSNumberSSAD�?�5'PSd|YSNumberSSAD�?�5'PSd|ZSNumberSSAD�?:7#AnimationCurveNodeL��9SRAnimCurveNodeS-7Properties70�6PSdSCompoundSS�6'PSd|XSNumberSSAD���6'PSd|YSNumberSSAD��"@ 7'PSd|ZSNumberSSAD@la3�y8#AnimationCurveNodeLH��9SSAnimCurveNodeSl8Properties70�7PSdSCompoundSS�7'PSd|XSNumberSSAD�?*8'PSd|YSNumberSSAD�?_8'PSd|ZSNumberSSAD�?�9#AnimationCurveNodeL���9SRAnimCurveNodeS�9Properties70�8PSdSCompoundSS49'PSd|XSNumberSSAD$ �i9'PSd|YSNumberSSAD���9'PSd|ZSNumberSSAD@o@��:#AnimationCurveNodeL��9SSAnimCurveNodeS�:Properties70>:PSdSCompoundSSs:'PSd|XSNumberSSAD�?�:'PSd|YSNumberSSAD�?�:'PSd|ZSNumberSSAD�?6<#AnimationCurveNodeL���9SRAnimCurveNodeS)<Properties70};PSdSCompoundSS�;'PSd|XSNumberSSAD`t��;'PSd|YSNumberSSAD���?<'PSd|ZSNumberSSAD ��"�u=#AnimationCurveNodeL��9SSAnimCurveNodeSh=Properties70�<PSdSCompoundSS�<'PSd|XSNumberSSAD�?&='PSd|YSNumberSSAD�?[='PSd|ZSNumberSSAD�?�>#AnimationCurveNodeL`��9SRAnimCurveNodeS�>Properties70�=PSdSCompoundSS0>'PSd|XSNumberSSAD���+@e>'PSd|YSNumberSSAD�
@�>'PSd|ZSNumberSSAD}f��?#AnimationCurveNodeL���9SSAnimCurveNodeS�?Properties70:?PSdSCompoundSSo?'PSd|XSNumberSSAD�?�?'PSd|YSNumberSSAD�?�?'PSd|ZSNumberSSAD�?2A#AnimationCurveNodeL0��9SRAnimCurveNodeS%AProperties70y@PSdSCompoundSS�@'PSd|XSNumberSSAD����?�@'PSd|YSNumberSSADǂ @A'PSd|ZSNumberSSAD����?qB#AnimationCurveNodeL0�n;SSAnimCurveNodeSdBProperties70�APSdSCompoundSS�A'PSd|XSNumberSSAD�?"B'PSd|YSNumberSSAD�?WB'PSd|ZSNumberSSAD�?�C#AnimationCurveNodeL�o;SRAnimCurveNodeS�CProperties70�BPSdSCompoundSS,C'PSd|XSNumberSSAD D@aC'PSd|YSNumberSSAD�99@�C'PSd|ZSNumberSSAD��s@�D#AnimationCurveNodeL�n;SSAnimCurveNodeS�DProperties706DPSdSCompoundSSkD'PSd|XSNumberSSAD�?�D'PSd|YSNumberSSAD�?�D'PSd|ZSNumberSSAD�?.F#AnimationCurveNodeLo;SRAnimCurveNodeS!FProperties70uEPSdSCompoundSS�E'PSd|XSNumberSSAD��0@��E'PSd|YSNumberSSAD�)^,�F'PSd|ZSNumberSSAD�^�@mG#AnimationCurveNodeLHo;SSAnimCurveNodeS`GProperties70�FPSdSCompoundSS�F'PSd|XSNumberSSAD�?G'PSd|YSNumberSSAD�?SG'PSd|ZSNumberSSAD�?�H#AnimationCurveNodeL �n;SRAnimCurveNodeS�HProperties70�GPSdSCompoundSS(H'PSd|XSNumberSSAD�V�P@]H'PSd|YSNumberSSAD�
�@�H'PSd|ZSNumberSSAD �%��I#AnimationCurveNodeL��n;SSAnimCurveNodeS�IProperties702IPSdSCompoundSSgI'PSd|XSNumberSSAD�?�I'PSd|YSNumberSSAD�?�I'PSd|ZSNumberSSAD�?*K#AnimationCurveNodeL�o;SRAnimCurveNodeSKProperties70qJPSdSCompoundSS�J'PSd|XSNumberSSAD@��$��J'PSd|YSNumberSSAD��F�K'PSd|ZSNumberSSAD�Dž@iL#AnimationCurveNodeLXo;SSAnimCurveNodeS\LProperties70�KPSdSCompoundSS�K'PSd|XSNumberSSAD�?L'PSd|YSNumberSSAD�?OL'PSd|ZSNumberSSAD�?�M#AnimationCurveNodeL��n;SRAnimCurveNodeS�MProperties70�LPSdSCompoundSS$M'PSd|XSNumberSSAD�ffM�YM'PSd|YSNumberSSAD B�@�M'PSd|ZSNumberSSAD�}���N#AnimationCurveNodeL(�n;SSAnimCurveNodeS�NProperties70.NPSdSCompoundSScN'PSd|XSNumberSSAD�?�N'PSd|YSNumberSSAD�?�N'PSd|ZSNumberSSAD�?&P#AnimationCurveNodeL��n;SRAnimCurveNodeSPProperties70mOPSdSCompoundSS�O'PSd|XSNumberSSAD`W�L@�O'PSd|YSNumberSSAD �"�P'PSd|ZSNumberSSAD�^�?eQ#AnimationCurveNodeL8�n;SSAnimCurveNodeSXQProperties70�PPSdSCompoundSS�P'PSd|XSNumberSSAD�?Q'PSd|YSNumberSSAD�?KQ'PSd|ZSNumberSSAD�?�R#AnimationCurveNodeL��n;SRAnimCurveNodeS�RProperties70�QPSdSCompoundSS R'PSd|XSNumberSSAD@+4�UR'PSd|YSNumberSSAD@��?�R'PSd|ZSNumberSSAD��
+@�S#AnimationCurveNodeLh�n;SSAnimCurveNodeS�SProperties70*SPSdSCompoundSS_S'PSd|XSNumberSSAD�?�S'PSd|YSNumberSSAD�?�S'PSd|ZSNumberSSAD�?kZAnimationCurveLX$N;SAnimCurveS9T	DefaultD�i7x�QTKeyVerI��W�KeyTimelox��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�Y�
KeyValueFloatfo�k?�C�
�C&��C��C�|�C���C��C+��C��CE-�C\u�C:�C��C��C*ɜCJ�C#ӓCQH�C�#�C��Cn�~C�-uC��lC�eC
=]CItUCu�MC&FC�N?C�8C*2C��+C�%C�C�C �C�qC�b�B"��B�u�B~��B���B�O�B�k�B��YB�d1Bh�B ��A�uAg��@XD�����=�r������LD���@�"F+¨�[�Ÿ������|��A���|Y��n�
�pfÖ�ún'���.�X�3�Y�6�b�:�}�>�٭A�3E���I�[�OÞvVÆ�]�oe���l�n�s�,*zè�����g@���F�ÕE��^C���b�����w0�������/��	Ș��k�ÛF���x�à��P�Á���\���Fl���������}��à7�����z��Á��%l���YKeyAttrFlagsi!1ZKeyAttrDataFloatf

^ZKeyAttrRefCountio�`AnimationCurveL&N;SAnimCurveS�Z	DefaultD��V@�ZKeyVerI�r^�KeyTimelox��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_U`�
KeyValueFloatfo��E�C�(�CRߛCp�C'�C���C�]�CІ�C=ŚC��C���C)›C�͛CM��C�U�C�
�C՚C��C�&�C���C�!�C�H�Cw�C#"�C'�C���C.��C��C���C��C\��C^��C�-�C|�C�r�C�J�CJ��CƛCxq�C��C�:�Cq5�Cۣ�C�C��qC��cC�IUC�/FCƘ5Cj#C�yC���B0��B9y�BZ��B�;�BޏB�ɌB�h�B�(�B��BVR�B�lB�RBx:5B>RB���A�˞AR!XA} AKA}�4ARbQA�
dAd�`A�<jA���Av��Ab��A2��A-��A_H�A��A$�B�Bq�B:z)B=K9B[3IBXZYB:�jBb�{B�F�Bi��B�Z�B b�BSa�B���B�ğB�{�B�ɠB<ءBpǢBBE�B~�B�0�B�ڢB���B{ТBD��BW��B`KeyAttrFlagsi!�`KeyAttrDataFloatf

�`KeyAttrRefCountio{gAnimationCurveL�#N;SAnimCurveSIa	DefaultD���J�aaKeyVerI��d�KeyTimelox��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�f�
KeyValueFloatfo�s�c�gUc�/�b�jb�}�a�)``��^‹_\¨�Y��Y�3�Zµa[·a\��+^��^��	^�΀]��\���[�	[�B�Y¿�W��QV�#eT¸�P�*�K�5�F��C�ܹA�nm?��=�	�<¿�;¹v:„�8�J6��3�w�/��,��x)�T�&�P$�у"��"!�7I�L��.���e�Oq�w�¶���V
�Z�²��6���%��&���:>��@I���{������t��⢳�5D��03���&�������e��������Q��nv���f���p��?���]����j\��l5�T��i������H�S���t�8�����6ꤾ4����z�C@�����u|�	ո�#���L��1��H��_��)s�)���!���V���ߩ�xն�&�������u3��e���U��t0���.������gKeyAttrFlagsi!AgKeyAttrDataFloatf

ngKeyAttrRefCountio0uAnimationCurveL�&N;SAnimCurveS�g	DefaultD��/+@�gKeyVerI��l�KeyTimel��x�}8x�Eɩ�%yy*g�(�FS[i��Ȱ�V�Hy�=ы���N�6rZ��i�������ݡ7��F<�\,�c�����Ƕ��àP(Z�
O(l�"ͦO�:5�7�L�/X�cL�r�>3\�?n���.:��-'s��Ik�١���^��UQ�.&�=�Kq���9�<&{�Yn|�\��w#6���;�58jN`#6�[?����C8��U�P�{�ȗXy�-3*���7��D|���V̚U�6��gp��w���ƦC/����z	ya�4�m�bbgc<.��Z��JO��1�y)����-xl‰]���jΪئ�	��J�k������<f�`������~Ѐu\�]��d���sz������{]B��G	I�.�7�%��al���{�}c�[Mb�on����;a�D�;��w��#��_�	ט<�0���u�OX_�����.���)�L<c�\�*�z�d�VԬĭ����G�����������y��L[�,#�jW�ߛ�Sdn�x�a{�j�P`���,�޿���q;��Rh3�Ȣ��Y���h'6I)+�ꝉ~8:.f�8ۘ�1�s����"���q|)�_�)��1+��[r_�c���(��m�;�\e�fcnv�l~��=Vn~Kf��iqi��ؔ�7�KfHB���N��͓�c�+�;�,O/ށ�"�T�Eߑ��%�;��%n�_��s�<U��Y�ަj�	'��b�ɮ���Vq�qS=vi���+��
bں�t7�����p:Nkz��7�ʰ^��N���ǟ3����ﵷZI��Ν�u���8���Z� ���`�r�#/��%]�Ǹ����H�m��op���
X{_vO,Km�"!W;Ο% S�R�XS;���V�X�yG\k�R_#��YE�O���ǖ��xN]\���:̫�ցo�f���p�S4yا�g�����'2q��T�g|�`%/ـ��E}�5��&���ϣ�R��Xl�`�M{-Vܸ`�}�B2#l;[Ǧa�U�滴a9{�
~Ly��=ٿ�9w-�sK�8�W���v�q��p��w�%{4��>�։3��ȴ�c���6��%�QLN	�b�F����^��0N���mL�l��
~5<u��k5�ް;Kj2��.=:��j�V32e
YD���)�kX��=�,85i�̾�W���%s=%�|��%V�=\Of�<�M3��0�{��:���S����2̘�_��,	�p�
KeyValueFloatf���~YA:�A@��AZ��AT��A���A��B��B�lB*2*B�8=B7MB�B_B"�rB��B��B6NwB<�eBB�YB0�mB1<�BP[�B�;�B�{�B��B���B���B��B���B�}�B���B^��B}f�B�2�BŸ�B�^C;�Cc�CX�C��Cy�C�C�vCۀC��Ce�C�ECC~C`GCS@�B��B���B��B��B���BF�B�f�B�H�B��B/C�B���B&+�BNLB\�gBn�XB�EB�4B��$B��B|R�A]��A��A��A6Bj�B��$B�,1B�{?B�WBH�jBC�xB9�B��Bh��BX��B�ӬBI��B�ػB�8�B���B�B��B���BN��B��BU�Bӄ�Bg��B��B�V�B]�B�C�FCD�C,C�WCF�C��C�%C�|*C+�,C��*C�+C�-/C�K3C�B7C�s<C�qACHDC�pBC��BCU�DC>cHC�
JC�zIC LOC٘TC�ZC��`C�XgC��kC�)sC��zCw?C�CjdžC���Cc��C�q�C���C��C��~CJ�{C�xC��vC��tCe#sC�rC�qC�9pC��oCu�oCV�pCqCa�qCzNsC,�tC wCϓyC�1zCG{Cl�|C��|Cr�}C�F~C%�C�ǀC�T�CĹC���C�?�C�ĀC�=�C��~C�|C0�zC�ZxC�uCK�sC�$qC֏nC��kC)�hC\%fCm�cC aC1�^CF\C��YC-�VC,�SC�aQC#OCwHLC��KC@�LC�>OC�RC�SC�uPC�LCkIC=�ECbxCC��@C��<C�8Cؖ2C�o/C��+C�A&C�#CI�C�C�EC��CWC�;C$ChCR|CFSC��C��C"�Cx�!C|%C!I)C��-C4�0C4C�rKeyAttrFlagsi}�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!s;KeyAttrDataFloatf�.xc`�V^V^(L��G�c4= B`4?��Dj``M��a0����#uKeyAttrRefCounti}�
�AnimationCurveLhAN;SAnimCurveS�u	DefaultD��U��uKeyVerI��z�KeyTimel��x�}8x�Eɩ�%yy*g�(�FS[i��Ȱ�V�Hy�=ы���N�6rZ��i�������ݡ7��F<�\,�c�����Ƕ��àP(Z�
O(l�"ͦO�:5�7�L�/X�cL�r�>3\�?n���.:��-'s��Ik�١���^��UQ�.&�=�Kq���9�<&{�Yn|�\��w#6���;�58jN`#6�[?����C8��U�P�{�ȗXy�-3*���7��D|���V̚U�6��gp��w���ƦC/����z	ya�4�m�bbgc<.��Z��JO��1�y)����-xl‰]���jΪئ�	��J�k������<f�`������~Ѐu\�]��d���sz������{]B��G	I�.�7�%��al���{�}c�[Mb�on����;a�D�;��w��#��_�	ט<�0���u�OX_�����.���)�L<c�\�*�z�d�VԬĭ����G�����������y��L[�,#�jW�ߛ�Sdn�x�a{�j�P`���,�޿���q;��Rh3�Ȣ��Y���h'6I)+�ꝉ~8:.f�8ۘ�1�s����"���q|)�_�)��1+��[r_�c���(��m�;�\e�fcnv�l~��=Vn~Kf��iqi��ؔ�7�KfHB���N��͓�c�+�;�,O/ށ�"�T�Eߑ��%�;��%n�_��s�<U��Y�ަj�	'��b�ɮ���Vq�qS=vi���+��
bں�t7�����p:Nkz��7�ʰ^��N���ǟ3����ﵷZI��Ν�u���8���Z� ���`�r�#/��%]�Ǹ����H�m��op���
X{_vO,Km�"!W;Ο% S�R�XS;���V�X�yG\k�R_#��YE�O���ǖ��xN]\���:̫�ցo�f���p�S4yا�g�����'2q��T�g|�`%/ـ��E}�5��&���ϣ�R��Xl�`�M{-Vܸ`�}�B2#l;[Ǧa�U�滴a9{�
~Ly��=ٿ�9w-�sK�8�W���v�q��p��w�%{4��>�։3��ȴ�c���6��%�QLN	�b�F����^��0N���mL�l��
~5<u��k5�ް;Kj2��.=:��j�V32e
YD���)�kX��=�,85i�̾�W���%s=%�|��%V�=\Of�<�M3��0�{��:���S����2̘�_��,	I~�
KeyValueFloatf���6��ܦ±����N�Œ�˜���D���k�����Š��˯���J�����Ю���o��͟¦���/��¸7���ѝº:�¶[��([�³1�€؜�.��V��.l�¢R���ǝ 
��X�®|��G������u���NQ��]I�����Ɣ�¼7���ˠ�4z��E��³���b�����Ƭ�����#�«3���=���7���]�¢r��wx���q��a��yH���)�����׵��t`�����|e�§۪�]���z
��1�œ����rT����&�©:��bϡ����(�³-�¹���E������㳦�;������Ω�›J��
֡�ઠ��o��|Ӡ��*�’���#�«(���y��g��…��J���53���(��̗��z����5��!R���^��wd�ƒY��������<��[s�»���Wo��5��ش��DM�Œ���Ԅ��q��X��텚�pk��w��¯���
�‡t��L׆�-p��:����ȉ���@ی�ԋ��Ň�«��ZH�®Y��3f��v��¼���]%�™N��p��ԅŽ����z®�m˜qa��Y�DFL¾U?�;o1�ע#�o!�^�ŠMF�����$�²�����Hm������c�����+���Ϊ�����]��k�_����޻�� !©�$�23)�Ɲ,��,��,���*�r�# ���j¨�����RY�h/��Ғ���g��T����,������1��2��#%��33�!�6�S`5¯#;�<JK�t'`„ljst�n�}�s\�’��«���e��C�®���P���т��%�œ���Š��s���K��b&��H��:��������¦��:��B��ƒ���o���4��c�KeyAttrFlagsi}�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!��;KeyAttrDataFloatf�.xc`�V^V^(L��G�c4= B`4?��Dj``M��a0����؂KeyAttrRefCounti}�
��AnimationCurveL�?N;SAnimCurveS;�	DefaultD��2@S�KeyVerI�7��KeyTimel��x�}8x�Eɩ�%yy*g�(�FS[i��Ȱ�V�Hy�=ы���N�6rZ��i�������ݡ7��F<�\,�c�����Ƕ��àP(Z�
O(l�"ͦO�:5�7�L�/X�cL�r�>3\�?n���.:��-'s��Ik�١���^��UQ�.&�=�Kq���9�<&{�Yn|�\��w#6���;�58jN`#6�[?����C8��U�P�{�ȗXy�-3*���7��D|���V̚U�6��gp��w���ƦC/����z	ya�4�m�bbgc<.��Z��JO��1�y)����-xl‰]���jΪئ�	��J�k������<f�`������~Ѐu\�]��d���sz������{]B��G	I�.�7�%��al���{�}c�[Mb�on����;a�D�;��w��#��_�	ט<�0���u�OX_�����.���)�L<c�\�*�z�d�VԬĭ����G�����������y��L[�,#�jW�ߛ�Sdn�x�a{�j�P`���,�޿���q;��Rh3�Ȣ��Y���h'6I)+�ꝉ~8:.f�8ۘ�1�s����"���q|)�_�)��1+��[r_�c���(��m�;�\e�fcnv�l~��=Vn~Kf��iqi��ؔ�7�KfHB���N��͓�c�+�;�,O/ށ�"�T�Eߑ��%�;��%n�_��s�<U��Y�ަj�	'��b�ɮ���Vq�qS=vi���+��
bں�t7�����p:Nkz��7�ʰ^��N���ǟ3����ﵷZI��Ν�u���8���Z� ���`�r�#/��%]�Ǹ����H�m��op���
X{_vO,Km�"!W;Ο% S�R�XS;���V�X�yG\k�R_#��YE�O���ǖ��xN]\���:̫�ցo�f���p�S4yا�g�����'2q��T�g|�`%/ـ��E}�5��&���ϣ�R��Xl�`�M{-Vܸ`�}�B2#l;[Ǧa�U�滴a9{�
~Ly��=ٿ�9w-�sK�8�W���v�q��p��w�%{4��>�։3��ȴ�c���6��%�QLN	�b�F����^��0N���mL�l��
~5<u��k5�ް;Kj2��.=:��j�V32e
YD���)�kX��=�,85i�̾�W���%s=%�|��%V�=\Of�<�M3��0�{��:���S����2̘�_��,	���
KeyValueFloatf����AZodAo�-A�
A�Ԓ@�q�?5������H
��G?��ȑ�2<��������£� “f$�S��
����đ���*½�=¬eL�(�a�A�v�<��J���&���W��6<��&Y���¶��\��
.����§������]m��)������0��E	�q�À��`�6A�Q{��������´0��,�±�ݴ�*����£l��嘍½����b|��&o���W��8E�J6�y�ª%��h����^���M��"T<��Z���n��j0�Jj�n����ַ�a%��HS���½�"��0�1<F��T[��Vo�Ch|�������¬g�‹F�•/�²���j���ٲ��x�����e��ܛ�–��P��E���a��������1��~�
�Ҧ�d�d����!�������ÌLÚ� ��$���)�u�.���3��4Á�5�7w7Ì9��P9��7�܂3�rl1�a�4øL6��68���8��:�o�;�C2<��<=�[�>�a�7�;o0��=)ö$�£�k��O�÷/��n��_�›���
R�‰������%����Y��9��”�����;H���q��#W���<�P+����%	��������|N6�����Z}?�@.@NAֈAyh�A%(�A
WB0�*B�%JBU_^B�{}B�BZ�BW	�B���B�v�B^O�BeF�B��B'M�B��BuRCxJC��
C�PCl�C�NC�D C��%C;�(Cù*Cm�,C0�/C>�4C��9C�>CxCC,�EC
aHC{WLC�QC�vVCj�YC��\C��bC��eC�(iC�mC�ZqC��uCJMuC�FsCbuC׬vC��qC�RmC�(lC�lCx/jC�ifC�aC-�\C��WC9HTCy�PC�KeyAttrFlagsi}�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!p�;KeyAttrDataFloatf�.xc`�V^V^(L��G�c4= B`4?��Dj``M��a0������KeyAttrRefCounti}�
��AnimationCurveL(EN;SAnimCurveS�	DefaultD�?�KeyVerI�1�KeyTimel��F8\�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiZ�AnimationCurveLX*N;SAnimCurveSP�	DefaultD�?h�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?�KeyAttrFlagsi! �KeyAttrDataFloatf

M�KeyAttrRefCounti��AnimationCurveL)N;SAnimCurveS��	DefaultD�?ȓKeyVerI��KeyTimel��F8�
KeyValueFloatf�?F�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�KN;SAnimCurveS�	DefaultD|Q,@(�KeyVerI�ј�KeyTimelq���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC��r�C�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K�#�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���
KeyValueFloatfq���bA�fA]LtA��|A2�~A_�zAl�oA?6`A��GA��8Ak�FA5�sA��AYo�AZj�A�>�AFͷA<��AQ+�AK�AՔ�A��oADdA$_SAj4A�C4AҋGA��^A�L�A�A���A�-B1�!B��2B�(NB�!bB	pB�rB�5jB�[B�FBDZ*B��B��AP�A�,�A1/�A̦}A"�A�"vA�e_A�OQA�E`AوmAe�gAr��A���A^�B��/B0�"B9�BcUB�HB�\B�X-B�:B�>B�#AB�?B59BM4B��/B�~&BS�B�8B�BF�B�B9�BnB��B��B��&Bܴ)B>&BjB`�
B�R�A$��A_�A�R�Al�A8��A��A&�A��A�AU��A�e�Am�A��A�A+W�A�BmA�=jA��vA�J�A��A�A���A�S�AGeA%TA��!KeyAttrFlagsi!	!!	!!p�]KeyAttrDataFloatfP









��!KeyAttrRefCounti 8��AnimationCurveLX-N;SAnimCurveS�	DefaultD��@(�KeyVerI�џ�KeyTimelq���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC��r�C�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K�#�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���
KeyValueFloatfq��v8@3��?�3=�࿲Yu�+5���*�����5�\�h�����ǃ�bX�X���7����z���@�/Ae�eA�7tA�rnA�BA���@������D���C����������i��e�X�M�t�G�>N=�d5��
�����ȿPzg��!����>���=�ݡ�ok���ÿ�f����Կ4D��K
�>،�>g����)��"謿���qH�N���V忠��5S��e+�7�,�pu��w��+@?�?f@ہ�@��?�����S��z�G��C�?�h�<�b��I�����5��i&�~�:?��=�cֿ�A�eI4��8�/F<��?ތ�>�a��?fY�0�?^�@��@xw�@4qQ?$�	�M���c����9Z&�=����Ø�az��������j8���
��:�?D�S@Cu�@9,�@D!A�[A��!KeyAttrFlagsi!	!!	!!p�]KeyAttrDataFloatfP









��!KeyAttrRefCounti 8��AnimationCurveLȏN;SAnimCurveS�	DefaultD���'�(�KeyVerI�Ѧ�KeyTimelq���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC��r�C�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K�#�K ���K�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���
KeyValueFloatfq�|t?���>���:��k#������G�����(@���@��A�A��<AؕhA��A2`�A(mA�7A��@eC�@ǃ,?�m��I�,�K���#����Cک?��.@��@,�A�+A�|#A6�A���@��@aO�@��\@/"�?�@3?�?zS�?J�@VeV@���@�K�@N{�@)�@��@&�@�f�@��@7�@(�@���@�z�@݋c@0r?�I�>4&(�3ܠ?��@-8Ap�A���A�s�A�AW7IA�V�@i�@z�z@���>+"Z� ���A���������QQ�?4�S@��?]�h��F�{{^��|�}�d��rM�7�:�
M%������
/�* �ő*��]������@��R�ɿϟP@��AJA@Ab�lA���AJ�A:��Ah˜A`řA��A��A'��A5�A�g�A���A�zA��6A�eA��!KeyAttrFlagsi!	!!	!!p�]KeyAttrDataFloatfP









��!KeyAttrRefCounti 8�AnimationCurveL('N;SAnimCurveS�	DefaultD�?(�KeyVerI�Q�KeyTimel��F8|�
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf


�KeyAttrRefCountiz�AnimationCurveLHLN;SAnimCurveSp�	DefaultD�?��KeyVerI���KeyTimel��F8ܫ
KeyValueFloatf�?�KeyAttrFlagsi!@�KeyAttrDataFloatf

m�KeyAttrRefCountiڭAnimationCurveL�*N;SAnimCurveSЬ	DefaultD�?�KeyVerI��KeyTimel��F8<�
KeyValueFloatf�?f�KeyAttrFlagsi!��KeyAttrDataFloatf

ͭKeyAttrRefCounti��AnimationCurveL��N;SAnimCurveS0�	DefaultD�^3(�H�KeyVerI�1��KeyTimely���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J|&|K��]FKz�N]K��Kxd!�K ���Kt��+L�a�YL!��Lp�k�LğM�L_/Ml?M���lM�ԚMh\��M���M�y$N�Y=�N`��NW�7O�Շ�O�i�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_<��
KeyValueFloatfy���A�]{D�k�I���L��I��(6�V&��Q����,�̤�k��Q��NZ��P��a�5�jC�[N>���E��s�7����V�~�"���^��5���J���?��@�^@3HP?�ފ�_Tc���������5��u��M��l#��W���,)�)�D��`X��<��^�hm���3@��AU�]ABsA��TA��A���@7�@��'?�B���A?�m����}����
¼��������\����Y�ɚ��&�߿��@u�SA�AD�A�y�AA�A�G�A%��A��A��A�k�AD?�A�\�A���A�ېA[�A��A�x�A��A�Z�A�9A.��@$�ߖ�����̹5��<���A�>vB�B���L��I\��z������������s�;�c���]��Jb�4�i�Rwc�;<P���5�B���������>e��+���t�N��$]&���.�'�,��� ������YKeyAttrFlagsiL!	!!	!!	!!	!!	!!	!!	!!	!!	!!�=KeyAttrDataFloatfL0





































}�YKeyAttrRefCountiL5-:�AnimationCurveL+N;SAnimCurveS�	DefaultD 
���KeyVerI���KeyTimely���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J|&|K��]FKz�N]K��Kxd!�K ���Kt��+L�a�YL!��Lp�k�LğM�L_/Ml?M���lM�ԚMh\��M���M�y$N�Y=�N`��NW�7O�Շ�O�i�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��
KeyValueFloatfy��P�+�C�C�,�%��� /v�,��>�f@(H�@u}�@���@�v�@��?@
[�?��h?�-�>�C�F�����o�.�������x������@��x�>��M�p��?��_@��@/l_@��!@���?�]�?H��?�]@��@�@�@��?m�?+@ <V@_Ȅ@=�@"�@4c�@M�Z@��G@�Ј@��@���@��@l��@��P@M�@+
@�G	@��@JŮ?c�?�9I?bM"?�u�>�Q?6�?���?���?��?��=�)�HB�����_A&�T<1���k������39$?��@h5�@I0�@;vn@i��?c�@#��@�
�@�,�@V�A�OA�pAf�Ai��Aw�A[�AGxrANlfAJq\A��^A1�jA��qA
�nA1[eA>�VA�tHArX?A��4A�\#AjA��@s�@��@\@� @@RH@
@�@R-�@��@蝉@5=D@P�?��?^�YKeyAttrFlagsiL!	!!	!!	!!	!!	!!	!!	!!	!!	!!��=KeyAttrDataFloatfL0





































-�YKeyAttrRefCountiL5-��AnimationCurveL�+N;SAnimCurveS��	DefaultD�X�ؿ��KeyVerI����KeyTimely���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J|&|K��]FKz�N]K��Kxd!�K ���Kt��+L�a�YL!��Lp�k�LğM�L_/Ml?M���lM�ԚMh\��M���M�y$N�Y=�N`��NW�7O�Շ�O�i�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���
KeyValueFloatfy��JǾ�%��|��GR��d.]��U���I��?y
�3�1���F���U��c�ȭ\���C�?2����˧��@R�ͩ���-@)/l@$v@1_@<�A@ڎ�?@���a2����r˯���Z���������h?�1@�H@�
<@�;@%�?|���W��d��,j�������ze��"'���������_-��%/��D���G��/�z����Y��\����i��a6�쾀�/W���ג�c	��mo_��S����\d�?�B�@�"A�e^A���A�y�A��A���Avs�Ah�A�4�A��NA�eA�ܸ@d'?sq������� ��T���x�L�j�\L@�6��">�Q2��+�pg-�Y*���_���
h�*���ڼ�`@���@�4A?,A�R"A��@���@Mw�@�ת@*�@�J\@�M@�1�? I�?M�?6c�?@��?b*@�I@y��@J��@H6�@t:�@�YKeyAttrFlagsiL!	!!	!!	!!	!!	!!	!!	!!	!!	!!h�=KeyAttrDataFloatfL0





































��YKeyAttrRefCountiL5-J�AnimationCurveLN;SAnimCurveS@�	DefaultD�?X�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

=�KeyAttrRefCounti��AnimationCurveL(BN;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8�
KeyValueFloatf�?6�KeyAttrFlagsi!p�KeyAttrDataFloatf

��KeyAttrRefCounti
�AnimationCurveLx(N;SAnimCurveS�	DefaultD�?�KeyVerI�A�KeyTimel��F8l�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL(�N;SAnimCurveS`�	DefaultD�ܔ�x�KeyVerI���KeyTimelp���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���Kt��+L�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��
KeyValueFloatfp����X/���c���ʲ�9���Y���w��B��]������������;v���?��O߿g�E����?�O�?�D�?+�j@"�@�g�@]b@��s@�.�@ *�@�;�@~�@̐�?s�:>��?3\�¶	�q�������e
�Xv�Dv	��ӹ��	��Ŗm@~�@_�/A��HA(PA�6RAb3A5AQ�@F�@=_�@]3�@��@�,D@,��@OOA�_�@��?����4���y�~}��F���4���G�چ*��)���%���/���>�ա)�"������UУ��_������E�gQ�Y<��k����>��F��E������~m��u�������m��������\����F,���;��`L�wY���a���m�@�x���x���j�ϸ]�0�W���Z�1�g�T�j�<^��K��O7���(�ʭ�*J�2�KeyAttrFlagsi!	!!��=KeyAttrDataFloatf0





��KeyAttrRefCounti87��AnimationCurveL�MN;SAnimCurveS$�	DefaultD`��
�<�KeyVerI����KeyTimelp���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���Kt��+L�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���
KeyValueFloatfp��U���M��K�=qR�Q�I�Q� ��j���j�����?i�6@�,@~e�?u�?,�D?	�?�^?:�?qZ>sͰ��[6�h�c��w_���W��eK�R��&-��h�?J@�G@�)k@��O@�'@�61@�+J@�b@+m@��Z@c65@6@��@�@�4@�Q%@f @��
@�K�?v�A�t�����(&�ݛ�E�
�G�>����>��F���l��[�	W,�K�6?�1j@��@T��@�ͼ@�ʞ@޸�@��X@�(@�b�?��M?,=��X�t�f��������(��"������t�rkk>��@���@W�A[%A,,AL-A�")A�"AuA}�A�tA�A��A�jAcAm�@:,�@�V�@���@��@=��@���@D�~@�I@�B!@�J<@ա�@�z�@z`�@1��@w�h@���?�u�?��KeyAttrFlagsi!	!!P�=KeyAttrDataFloatf0





��KeyAttrRefCounti87V�AnimationCurveL�(N;SAnimCurveS��	DefaultD�c�
@�KeyVerI����KeyTimelp���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���Kt��+L�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���
KeyValueFloatfp��l@k�@Q4�@lE�@�AP,AD�A֘A���@Ss�@9��@@�@�2?@	B�?�6?������I���g�L�L�-m
�]�D���>R`�?��?�v@��@���?,�@�u�?qDP�ܱ�T�e���
�fFL���2�}��Ϳ~᭾U�>�.�>L&1?���?�p�?��?X�@�@@G�?5�@|ق@1��@���@���@�Î@e��?�@���@mAn�!AO�dA��AD��AQ@QA�A<j�@�+@ڮ�?+��?��@!8��,�?�ڿG��]`�	�������OH�m�/��?[�ռZ�3�;��Y+����6���7�����2�rU�fw4=���>�j�d,�c(��*>��?��"@� T@�5K@�)-@��@Ȥ�?C��?x�@@p��?��?�Tk?�OQ?�I?s�'>&=�=4�>�.�>��KeyAttrFlagsi!	!!�=KeyAttrDataFloatf0





I�KeyAttrRefCounti87��AnimationCurveL�+N;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8�
KeyValueFloatf�?B�KeyAttrFlagsi!|�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLX�N;SAnimCurveS�	DefaultD�?$�KeyVerI�M�KeyTimel��F8x�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

	�KeyAttrRefCountiv�AnimationCurveL�(N;SAnimCurveSl�	DefaultD�?��KeyVerI���KeyTimel��F8��
KeyValueFloatf�?�KeyAttrFlagsi!<�KeyAttrDataFloatf

i�KeyAttrRefCounti��AnimationCurveLMN;SAnimCurveS��	DefaultD�E	"���KeyVerI����KeyTimelv���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H<1`:H��AhH�#�H8o�H���I4��MI�l�{I0�O�I�i3J��֎J(g��J|&|K��]FKxd!�K�#�K ���Kt��+L�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KPT��xP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���
KeyValueFloatfv�-J���<O���	�q��9n��b�Y���w��3��_�]����
��%���H�`�^�
rb���U�[�=��/%��]��{#�l�������t���ü���������}�����S�T�/��
M���j�9/���t��w
��SBo���L�%�*�e�An�_���L��Ê�?;H@'ٔ@y�@�AK`AsA�(A�>A��A�t�@B$�@�#@�b�\���v�����.!?���5�.�\�����#�-�0�NB$�R�&���6����ܗ��s��r0��
�1��+.�r0�����i-�& @���?�7;���D���R��.Y��&n�x������e���!�����R���e��U���d��N��F�w���e��mc��j��j��Qg��nd�#�d��f���]��wX�)w����捖��̒������g���;�R*��IKeyAttrFlagsi<!	!!	!!	!!	!!	!!	!!	!!0��KeyAttrDataFloatf<�





























��IKeyAttrRefCounti<-+��AnimationCurveL�'N;SAnimCurveS��	DefaultD`��.@�KeyVerI����KeyTimelv���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H<1`:H��AhH�#�H8o�H���I4��MI�l�{I0�O�I�i3J��֎J(g��J|&|K��]FKxd!�K�#�K ���Kt��+L�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KPT��xP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���
KeyValueFloatfv�4tApUqA�'nAy�hA{JXA<EXA�tA�̌Aޤ�A䴪A�M�A���A�Q�A�:�A���AU�A{��A���A���A�:�A��oA�erAq iANOAL?A�MA-�rAq�A^��A��xA��gA��WA�sSA+�[A"�fA�iA��bAO#RA�8A�A P�@:�@��@��@�>k?�`P��D*�}n)���/�ω@,�AGtAi��Ad�A�¾A`�A�nvAqAA�h]Av�A*��A_b�AY2�A6S�A���A���A�EB��B��A�;�A��A�h�A���A�a�A�ФA��A��A���A�َA�̋A�(�A��A��A�6�A��AV��AWz�A�j�A���A�X�A���A���A�}�A���A��A7��A��A�^�A�b�AO��Ak��A�X�A�A�Aw��A<�A�%�A{s�AκA�_�A��A�{�Ao��A{m�AҀ�A�W�A^ �A#�A�y�AB�IKeyAttrFlagsi<!	!!	!!	!!	!!	!!	!!	!!\��KeyAttrDataFloatf<�





























��IKeyAttrRefCounti<-+��AnimationCurveL��N;SAnimCurveS$�	DefaultD Oǿ<�KeyVerI�
��KeyTimelv���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H<1`:H��AhH�#�H8o�H���I4��MI�l�{I0�O�I�i3J��֎J(g��J|&|K��]FKxd!�K�#�K ���Kt��+L�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KPT��xP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��
KeyValueFloatfv�x:�5����i����Z�D?�[�?2 @g��@���@���@�v�@	�@�A-@��`�����H����s�����pƅ�7�����8�;m��.���>Co@4��@t6 A��CA�PA}�PA6�WA�nA �~A@}A�tA�hA�1SAHI:A?!A�
�@���@u�?#��]>9؃@�@�N:Aw�A��A�X�A�!�A�`�A!�A��A�t�Am�yA0�HAs;AsA�*`A���AC8�Ay��A�JB���A3��A.8�A�pA��jA�zjA0�{AܓAd��AY��A��BA]��@�1�?׺ֿ�ο��?�@�6@u%@�P�?�}@�1@��"@�@ q\?`� �����p�W�
�8���X�>�\����ޤ�i��7C������fP��9"��	��n�������)_���=�������������>����B�������i3�0%��45@��A@n�IKeyAttrFlagsi<!	!!	!!	!!	!!	!!	!!	!!���KeyAttrDataFloatf<�





























��IKeyAttrRefCounti<-+Z�AnimationCurveL($N;SAnimCurveSP�	DefaultD�?h�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi! �KeyAttrDataFloatf

M�KeyAttrRefCounti��AnimationCurveLH(N;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8�
KeyValueFloatf�?F�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiAnimationCurveL(N;SAnimCurveS	DefaultD�?(KeyVerI�QKeyTimel��F8|
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf


KeyAttrRefCounti�AnimationCurveL��N;SAnimCurveSp	DefaultD�'O@@�KeyVerI���KeyTimel��x�}Xx�=yi.Sd�,EҮbj�����je�F/���d(չˎ����٥���:�,١!gEw]��~Ӌ�˱���~��?j� �E�P�+�eX��1�)N�6�%m�ec��7�~�X��v�'�|�7/�؉��ͧq�ݺF<�o3���(^d#�A�%Gz��M �M.�uކ���
0;�x�-h}��j�#�
O�qZ6���{��#�}j��䞈IW�ji���Xn�`�Mv�~��B{Ռ�[~{��s��|���#1�,�[��Q��9�'x!�z6�,�������XG=4���K6�����1ӦϨ��{/:q]V��g�Y�+X2��VL=(��j
}�,:нS&ϴb�W[\|���QX���.ך���gC�����\:^���"ܸ�t?�K���a�q��_���[�9Y�2&�/�:b��Z5.�.��û3g���L�'�3r���0k״���ǝ���^��?��~1�DsV����2j�[���ťz�g�/g���C�-�B��6��m�!b��s�f�9��w�D�bc�U�rB��$�/Kn��Z�M�q�O�ɖM_`f\.*���;��dx���;Ty��v3i:�N�ُ���}����)�k�×̗���W&����.���Z����>v}�w5���bk-�ܱ��
;;�Jp;�i���ᢐB�J+*ǧ���󹗕XyS��#��8\��	�e���OT�K�[_�YO��R�ᶂ�Z���yf|b��k���cB�s<�n�W:�$gT�Y��^���
-��E�����P,�z�m��R�j-G�#s�'p�Զ/�_�O^���y��108��<��'��{���8����(����c�a�7�
`z�9A�$�9�X��&	'F��1�;�>�\'^'ǒJ�F6�	!GY^���GG��&M�
wN���}X$|�M�����ݲ�X�؛�)mf�XU�1;�l�����8�y�&�]�l����&����4W<,��|3�\ڼP����yadcӹ�X�Ќ}�˝6��y��p޽*fqS�B��K��Z���9��J�m8�UW����w�?t;OJ;��&�4��Ȟ��h�o���'�#Ɍ:�>�_Mo�2M�J��^r몷�D�R��LS?+�u.��XR)n"S���X����,r�9S��w�r��Qd��i��]c;PM�&���|�G�%��Vp�60o`c��s̍�CV�<��/{��b��³xxA��+�ǒYVCW���*x
�
KeyValueFloatf��?yBB�cB>F�A�$�A���AVB�BP@�A�J�A��A���A���Af�A�U�A஦AaO�A&ΞA���A�3�AX�AlZsA�MA��A�[�@3��@4u�@ުAh"OA���AY�A�A��A��ASsSA�K'AT��@C�@N�@�@�<�@���?�1��{��i�4;J�-�������x���������*��t�
�C��~��N0��"�9���Ø�������k���e�����d�Q�A���p��w1��l6@~��@�Z-A6�kA��tA��yA5�{A�wA`nwA��mA��TA��A���@>@U@�y|�)������c�t�%���OȮ�<���7N��%.¸���&��8]I�WeZ�q�j�s�z�H��<N����|R��'٤������?b���]��5��€���������1��S�xS	�XD���;���9�>�!6$�r*Õ!/�Q2ö6�(�4��/�v�,���(�;�"Í>öS�.���?#w�r3�/��V��������ͯ��Hy�,y�M�z���h+������������"T��\"����^P��0��|��K�����un�����R�����������/��|_�.��N™~���+�z,@²J��R��DC�$q=�
�A�>±
9��,�o��)���������$��f�g�T�����T������r�O�~�������R����#�+P/��"<�@g���z�:��S4��jJ��U��P��		�ߞ�߱�Jf@Ѱ�@ʍAgWAaP�Ah��A��A���AV�A�{�A5x�A���A���A��A�7�A�IBR�B~�B2�B�3B+c	B�BjB{FB��	B�B�B��A	��A߽A4ߦA��A;�}A�NAдA3N@&(�}i]�r�KeyAttrFlagsiu�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!�;KeyAttrDataFloatf�.xc`�V^V^(L��G�c4= B`4?��Dj``M��[z�u��KeyAttrRefCountiu�	�AnimationCurveL�)N;SAnimCurveS*	DefaultD��v4@BKeyVerI�K�KeyTimel��x�}Xx�=yi.Sd�,EҮbj�����je�F/���d(չˎ����٥���:�,١!gEw]��~Ӌ�˱���~��?j� �E�P�+�eX��1�)N�6�%m�ec��7�~�X��v�'�|�7/�؉��ͧq�ݺF<�o3���(^d#�A�%Gz��M �M.�uކ���
0;�x�-h}��j�#�
O�qZ6���{��#�}j��䞈IW�ji���Xn�`�Mv�~��B{Ռ�[~{��s��|���#1�,�[��Q��9�'x!�z6�,�������XG=4���K6�����1ӦϨ��{/:q]V��g�Y�+X2��VL=(��j
}�,:нS&ϴb�W[\|���QX���.ך���gC�����\:^���"ܸ�t?�K���a�q��_���[�9Y�2&�/�:b��Z5.�.��û3g���L�'�3r���0k״���ǝ���^��?��~1�DsV����2j�[���ťz�g�/g���C�-�B��6��m�!b��s�f�9��w�D�bc�U�rB��$�/Kn��Z�M�q�O�ɖM_`f\.*���;��dx���;Ty��v3i:�N�ُ���}����)�k�×̗���W&����.���Z����>v}�w5���bk-�ܱ��
;;�Jp;�i���ᢐB�J+*ǧ���󹗕XyS��#��8\��	�e���OT�K�[_�YO��R�ᶂ�Z���yf|b��k���cB�s<�n�W:�$gT�Y��^���
-��E�����P,�z�m��R�j-G�#s�'p�Զ/�_�O^���y��108��<��'��{���8����(����c�a�7�
`z�9A�$�9�X��&	'F��1�;�>�\'^'ǒJ�F6�	!GY^���GG��&M�
wN���}X$|�M�����ݲ�X�؛�)mf�XU�1;�l�����8�y�&�]�l����&����4W<,��|3�\ڼP����yadcӹ�X�Ќ}�˝6��y��p޽*fqS�B��K��Z���9��J�m8�UW����w�?t;OJ;��&�4��Ȟ��h�o���'�#Ɍ:�>�_Mo�2M�J��^r몷�D�R��LS?+�u.��XR)n"S���X����,r�9S��w�r��Qd��i��]c;PM�&���|�G�%��Vp�60o`c��s̍�CV�<��/{��b��³xxA��+�ǒYVCW���*2�
KeyValueFloatf�����AI�A@�=A�.�@��b�M����e9�r.���s�������
�]!��0���>§�F�)9���‡K��:���ꉗ�j�@��ү��x�?���@��BAS�|A��A1��Aʥ�AkѪA\�A��=A��@EB�@�`"@,`�>����F��j�������#��K�G]�����%���Z�3���n�+%�?�\@�0�@Dk�@�:#A��QA<QAC�A_�A
N�A���A��A���A`��A�0�AI�A.�A��Ay�A��&AVl@pK�����o�}s���>����n:£f<�ۉ\�p����֍‰�x��0W��`���Q��4p��_q�‰U�®���ʧ�T^��a٨™=�º��°ȩ‚��G�����!�“������Ž��½g���#�»������T��Js��A���X���빣�ա•
��v���-(�‚&����«��2���T��2š�	���,y������U��xR��C�$�‰�¸���ȹ�„f���ͱ�4���j������E��m�� ��gϘ�G����~�j{f�y*T¥�8�m.�
���������o������)�
��@s�	A�#iA{��AzV�A��A���AA�A
��A���ABnoB�B�'B�K�A%&�A)��A+/B��.B��AB�SUB��]B&iBonBVsB��mB��hB�u`B��VB!EB�*B/�B�5�Aj`�A�e�Aӽ.AC��@l�f�c����_'��:��/���I��Zp�@h�L�e�`�]�_Z�џS�Ý6��������4�C��R��bgr?;��@0(AAAB�)A�WOA@�'A��A���@�������ɴ
�W�B�Zo����������a���J���d��'��j��T�
�+	@)��@�7A:FwAi��A^��A�W�A�E�A��At�A,�KeyAttrFlagsiu�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!�;KeyAttrDataFloatf�.xc`�V^V^(L��G�c4= B`4?��Dj``M��[z�u��KeyAttrRefCountiu�	H*AnimationCurveL�MN;SAnimCurveS�	DefaultD}�Q@�KeyVerI�"�KeyTimel��x�}Xx�=yi.Sd�,EҮbj�����je�F/���d(չˎ����٥���:�,١!gEw]��~Ӌ�˱���~��?j� �E�P�+�eX��1�)N�6�%m�ec��7�~�X��v�'�|�7/�؉��ͧq�ݺF<�o3���(^d#�A�%Gz��M �M.�uކ���
0;�x�-h}��j�#�
O�qZ6���{��#�}j��䞈IW�ji���Xn�`�Mv�~��B{Ռ�[~{��s��|���#1�,�[��Q��9�'x!�z6�,�������XG=4���K6�����1ӦϨ��{/:q]V��g�Y�+X2��VL=(��j
}�,:нS&ϴb�W[\|���QX���.ך���gC�����\:^���"ܸ�t?�K���a�q��_���[�9Y�2&�/�:b��Z5.�.��û3g���L�'�3r���0k״���ǝ���^��?��~1�DsV����2j�[���ťz�g�/g���C�-�B��6��m�!b��s�f�9��w�D�bc�U�rB��$�/Kn��Z�M�q�O�ɖM_`f\.*���;��dx���;Ty��v3i:�N�ُ���}����)�k�×̗���W&����.���Z����>v}�w5���bk-�ܱ��
;;�Jp;�i���ᢐB�J+*ǧ���󹗕XyS��#��8\��	�e���OT�K�[_�YO��R�ᶂ�Z���yf|b��k���cB�s<�n�W:�$gT�Y��^���
-��E�����P,�z�m��R�j-G�#s�'p�Զ/�_�O^���y��108��<��'��{���8����(����c�a�7�
`z�9A�$�9�X��&	'F��1�;�>�\'^'ǒJ�F6�	!GY^���GG��&M�
wN���}X$|�M�����ݲ�X�؛�)mf�XU�1;�l�����8�y�&�]�l����&����4W<,��|3�\ڼP����yadcӹ�X�Ќ}�˝6��y��p޽*fqS�B��K��Z���9��J�m8�UW����w�?t;OJ;��&�4��Ȟ��h�o���'�#Ɍ:�>�_Mo�2M�J��^r몷�D�R��LS?+�u.��XR)n"S���X����,r�9S��w�r��Qd��i��]c;PM�&���|�G�%��Vp�60o`c��s̍�CV�<��/{��b��³xxA��+�ǒYVCW���*�%�
KeyValueFloatf���3�B̰�B�|�B惎B��B��B�#�Be��B�.wB&LmB�dB��ZB4�RB��JBS�FBz�GB#�JBP�KB�LB%�IB��FB�3DBn�@B�8GBLB��ZB?iB�xBaq�B�Bp�BA��B_�B�O|B�UmB�%\B�aKB�8B~�$B��B+C�Af��Az5�AӀA��KA*�A�~�@BC@�Ȍ�����1�����[�����ﯪ�fb��V��?�c�ޙ#�?��?�?��A�)�A�b�A�>�A?��AD�
B{B��#BR�+B�c5B�=BnsGB�UQB�$]B��iBQsB�~B�ԁB��BX��B�B��B���B�ժB��B��B�s�B�n�B��B���B��B��BX��B?��Bz)Cr<C�)	C��C�pC��C4�CQCXA!C~9%CC�(CD�-Ch�1Cn�6C��:C��?C�3DCt�GC2MCAQC�WVC�SYCz�\C�;_C[=aC�0dCTgCҺeC�eC��fC�cCw3]CFZCy
VC0fOC��CC>�-C�_	C%O�BjͰBpR�BeL�BfӆB�)wB��eB�kYB�{QB��MB#~HBk�DB
bBB��>B��:B�
6B߬.Bjm)B��%B��Bj�By�BCPBʠ�A7�A@}�A?��A��#AMj�@��>�W���2���:>� �@��6A�?AT�zA�~�Aa��AةhA9l�A��A�#�A���A�?�AM�B·B/T,B6.@BUQBv$TBdVB�VB{SB�$OB˟KBO�HB|�FB�JBɯNBP*ZB]�]BSn]B��[BR�XB�WB�OB��;Be�,B�VB�7B�o�A(f�A�&�AgɼA�ٱAwZ�A|�B`�BH�BQ�B��,B3DB}�XBN�iBpTyB��B��B�U�B�T�BZ�By�B���B]1�B�3tB�iB��^B��RB�PFBY;B9�.B؂#B\-B�
B׸�A��A\��AG�A�'�KeyAttrFlagsiu�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!>(;KeyAttrDataFloatf�.xc`�V^V^(L��G�c4= B`4?��Dj``M��[z�u;*�KeyAttrRefCountiu�	�+AnimationCurveLH+N;SAnimCurveS�*	DefaultD�?�*KeyVerI��*KeyTimel��F8
+
KeyValueFloatf�?4+KeyAttrFlagsi!n+KeyAttrDataFloatf

�+KeyAttrRefCounti-AnimationCurveL�N;SAnimCurveS�+	DefaultD�?,KeyVerI�?,KeyTimel��F8j,
KeyValueFloatf�?�,KeyAttrFlagsi!�,KeyAttrDataFloatf

�,KeyAttrRefCountih.AnimationCurveL�!N;SAnimCurveS^-	DefaultD�?v-KeyVerI��-KeyTimel��F8�-
KeyValueFloatf�?�-KeyAttrFlagsi!..KeyAttrDataFloatf

[.KeyAttrRefCounti�9AnimationCurveL�,N;SAnimCurveS�.	DefaultD`�4�?�.KeyVerI�j3�KeyTimel�sx�}8v�{��
�]�����H*�vt��܄rڅ��b!�[�[����L�v<8�1�a�DQ;�̮D��j4�mh�������<j��A�PĖ�r�W�);����f�1k�`O\�~�,�����)���zR�@��:z0�ĉb��0__>EW<�J:������9mt�Ap�rEL��q">�������!�[��fe0��Fg��VB&��2��X�U����)�]��%����#�֫�AI�Lm?1d��PHM�vB1���"�}3�)k�r(��v%r�nˁ+g'�a�J���[�_�y���ω΋mb8wNӍ�?�1�=P9#�r�����Y~Um^y
���]����H�=���uL�x�UKnB��)�7��=��lhZ��Ìˡ	�Vx� e�9�Ɨ߳�$J��x0V����'�094d҃wn8H��hdϿ��A�0&֩Ly�8;+_���$��H��ߥ�إX��WF%Ø��4�5���ў��+�"?K_��_�݅
�0�=�	��Kk�5	�aD@�:<�~u���H�t�L.�“��"�FΚ°������
C�)� շ�3/b�N՗P<�U��s�N{�f�gq�-���)�<`���`���h7��
�?N*��?��@���
������:�c�K��!?ݽ	�P�l�����P��'�:`����;z&5�u�S�O�Bݮ_�˞��Х#�><m-��Zr���� 4��'~گ�3�!oV�%��d��.C��o���U读�
u?�V�	
���~#��1�&������l�r�e�~����ƾ�4�����R��_��S��0q��"�r2�Pp \���Bg�v�/�����Q	�+˗a뒆��`%0a�:ߓPy�!��iz�`���"�m<�~����tuz��B�	ț�t;����ž����ќ�
�d�`��E=_�����������7�al��?"�Vxv�8>#v����4�d1���%��+Ps6�̟R˅T+[1�.k%�Y��C��\7���@�T�������aYy��@��1'��� +��nQ`8�
��3����
N����'�`b~�126�7��V���6i
KeyValueFloatf�\{��?!�*@H�ξ}i�>��?xJ�?�n�@��A�^�@��*@�m���P��Q�����@���@+�@�I�@V?�@�]�@>��@�^@�2@��?H�{?�,�?�L@�d�@�T�@��7@��@r�@��@s�@8��@cЍ@d{�?��??L�@Bq@Գ�@��A�X:A�=CA[R5AĻA�?@��?؁�"��et��F�ʲ�>�Ѓ@��@��5A��iA���A:i�A�x�A���Ar�B���AV��A=ƼA���Ar�FA�<CA�Q<A�W�@u��@�H�@~��@q��@���@�@5�T@��?z����AJ�����`���wK��Ŏ��������i��w��Œ�,�K�C�O�T»Xa�݅s±e���B���µJ��kA���@������D��V��¢<��߷��݄�����sW��2t��N����?e�1���B�3�ï��C(��6�ʇþ#�-�&â�*�V�.�'3Î�7�}�;õc@���D�jI�b8M��2Qá�T�Y�X�!�[���a�/?g���k�@�oî�u�iz���}�d|���f��ҕ��r�������	������á���EL���~��Ǜ����@�������¤�
��Ñͧ��N���$���m��d���$���s�ú��>N��6;���������xV�Èk�����Ö ��
	��S�ö2�þ����������Î)�øݫ��2��~"���q���&�Ý��H�ú��È��v��t=�þ�����ثÜ ��&�� e��nP��$����Ì���Z��-��`	�Ã��&=��	��ê��p������d�ôȯà���G8AKeyAttrFlagsiM4!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!�8/KeyAttrDataFloatf4"xc`�V^V^(L��G�c4= B`4?���
��9AKeyAttrRefCountiM4�EAnimationCurveL�LN;SAnimCurveSS:	DefaultD�dC@k:KeyVerI�?�KeyTimel�tx�}8v�{�Q7<v��Bu$#\*�vtB�ۅrڕ;]R�SjNy}ܚT��R�x�E�2�
��E�z�fWru]���r�2穴�w}��Cm��(��SQ
�u����2ڏ��8�
�n����3��e�!���|-���Ά��ܧ0hI�M,�9
��c�Uz&,�h��.B_�/���i�:���1�N�t�l[�] �ǁ�V��H�*�C����<�����P]�z�Vo��Dz~���G'aB.���H�gYێi�o ��=�9�N���9D�7�4H���B�l73���<�3�`��>�K�Kˡij���L>'Mt(�`�ak���YI��8�^����� >����y��խ�%��ڮ�^S�0{�Q!|x��*t����27=��3��]kS`F�s5t�|��g�!��w0���g8Q�K!�Rcb+tP���ǒ��;
�;W.�D���������x6��y�������b�����T��0��ٔ��Sr���[8c;|
��Q['d������<�*il��C�[��œvx)��W� ������=��n-Q���ɷp��_h��4}�+�/ݾ���a���R��?� ��.|	����P(���ދ��m�}�g��@Hy`���{�}A?�c64}�^�v-��H�X~@y	6���aR�{#���j����-����e�V��5i�+�d���_���M�]�������^�|�}�6�sdj�â-��Ӯ2���=?m0����P4:�%���,��l�{�̉$�����k����aK�jp���8�B}��������?�B�fQ�\�c/<���5�)(e�J��'f���p��-Dӝ�d��?^	�%8L���Wx|A��E7��п�z�OZ9�,N*̍��7Xr��p������G,���ۼ���3>�T�E'�n����l�c�}�;ѝm{:4�a��I�("�M�՟ҵ��ߙ�Pڪ�龕'��y�LX�,"ҔCe0>����l0C��B�hbl�T�^�J�����Nz\�@��pT��_*&�k-��y��G���`�"ϙ_M��� g�}Q��/�����s�X�;t�y��@ϝĢRgd-h��(��fBe
KeyValueFloatf�XG%B��B.�A�7�A{��AD�WAg�SA�G|A�g�A�J�A'�Aun�A���A���A��	B��!B�3B��EB�cB�hB�PB�$;B�7&B�BC�AQj�A�!�A�D�A��B
B6BG�BI�B�BB[B���ALp�A���A���A���A#��A���A_�A�v�AĔ�AD�A�AA�D�A�|�A�G�A��Bx%Bf0B��@B��QB�VhBB���B���BPD�BfբBd��B��B��Bb�B�'pBFWB��=B-�'BR�1B��9B��EBg�QBOvkB֙~B	c�Bx��B�m�B|:�B�E�B�3�B��B���B-��B�z�B��B�\�BŎ�B���B���Bsp�Bn8�B�Bx&�B��B���Bn��B
O�B��BF��B�b�B�B��BfZ�BA̜B.�B.��B���B̖�B���BC��B�ӱB�	�Bi0�B�g�B遲By��B��BỲBʲBiֲB�B��B��B*��B���B���B��Bp��BM��B8�BU�Bq�B�ӲB�IJBF��BB�u�B�X�Bw#�BxαB�u�Br-�B�B���B��B�S�B�!�B���B���B�T�B�(�B�6�B9�B��B&o�B�B_h�B�s�B2"�B�I�B�L�B+�B��B@n�B8
�B���B;i�B��BX�B�eyB�xkBiVB�GAB�/B��B��A�+�A�ܗA���A��cA@�AA��A@��@k�KAX�Ah��A���A���A���A�y�AсAR�[A@02A��A��A��A���@?l�@�A�@�ȗ@@^�@���@P�!A��fA8�A3�A���A�+BP�:BPB0XeBL/wB�CAKeyAttrFlagsiM4!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!%D/KeyAttrDataFloatf4"xc`�V^V^(L��G�c4= B`4?���
ՂEAKeyAttrRefCountiM4$QAnimationCurveL�N;SAnimCurveS�E	DefaultD��u!��EKeyVerI��J�KeyTimel�sx�}8v�{��
�]�����H*�vt��܄rڅ��b!�[�[����L�v<8�1�a�DQ;�̮D��j4�mh�������<j��A�PĖ�r�W�);����f�1k�`O\�~�,�����)���zR�@��:z0�ĉb��0__>EW<�J:������9mt�Ap�rEL��q">�������!�[��fe0��Fg��VB&��2��X�U����)�]��%����#�֫�AI�Lm?1d��PHM�vB1���"�}3�)k�r(��v%r�nˁ+g'�a�J���[�_�y���ω΋mb8wNӍ�?�1�=P9#�r�����Y~Um^y
���]����H�=���uL�x�UKnB��)�7��=��lhZ��Ìˡ	�Vx� e�9�Ɨ߳�$J��x0V����'�094d҃wn8H��hdϿ��A�0&֩Ly�8;+_���$��H��ߥ�إX��WF%Ø��4�5���ў��+�"?K_��_�݅
�0�=�	��Kk�5	�aD@�:<�~u���H�t�L.�“��"�FΚ°������
C�)� շ�3/b�N՗P<�U��s�N{�f�gq�-���)�<`���`���h7��
�?N*��?��@���
������:�c�K��!?ݽ	�P�l�����P��'�:`����;z&5�u�S�O�Bݮ_�˞��Х#�><m-��Zr���� 4��'~گ�3�!oV�%��d��.C��o���U读�
u?�V�	
���~#��1�&������l�r�e�~����ƾ�4�����R��_��S��0q��"�r2�Pp \���Bg�v�/�����Q	�+˗a뒆��`%0a�:ߓPy�!��iz�`���"�m<�~����tuz��B�	ț�t;����ž����ќ�
�d�`��E=_�����������7�al��?"�Vxv�8>#v����4�d1���%��+Ps6�̟R˅T+[1�.k%�Y��C��\7���@�T�������aYy��@��1'��� +��nQ`8�
��3����
N����'�`b~�126�7��V��Ni
KeyValueFloatf�\�������M������g�I���{?�BG@���@Yg�@*c�@��@cR@��?b�>����ֈ�,���Q=��DI
�`�"�@�0����
�������R߶��3�=kՂ=j����.%��|U���@s��ú��Dž��	��l��e����s������B������ɚ�r����@��D��ı��`N>��=
����+��]5G���]�y�]���s���]��7���p�����{u��wj��\�������`.�*�\���q�#�Y��D���5�?D��V���e����|�U�!�Տ5��G�
X�-�f�Js�G�¨��´%�¨#�¢���宵Ͽ�)��A�’���Oc������:���CÓ���p	æE
�һ�dSù�Ü�$Ú�)Ü�-�je-��G/�T�1è�4��)6��i7��9�Gf<�bGAü3D�G��I�`�N�p�Q�kVU��vXð�[�~b_ÿ(càg��8k�)po�)�sèx�F?|�53�Ë5��6"�����û��ÄK�Û<�����Ã�È��Ç���$ϗ��i��ʷ��sG��n��n%��y��âp��~E��E5����0��U	��	����ØQ�Û~��Jʻ�bI��T�����:���YF��zo��:��3o��rF��!B��)���ا������-|��fA��p���>
��H)��]���������е����؈�ã��8#��۞�����2��c��)ʴÎ��ü��ÈѶ�a���ά��f��ï���F��B����Ôʱ�%O��qc�����,F��P�è��e}���(��q��nK��e۴�y������k���I���Ƹ�nOAKeyAttrFlagsiM4!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!�O/KeyAttrDataFloatf4"xc`�V^V^(L��G�c4= B`4?���
�QAKeyAttrRefCountiM4�RAnimationCurveL�,N;SAnimCurveSzQ	DefaultD�?�QKeyVerI��QKeyTimel��F8�Q
KeyValueFloatf�?RKeyAttrFlagsi!JRKeyAttrDataFloatf

wRKeyAttrRefCounti�SAnimationCurveLH�N;SAnimCurveS�R	DefaultD�?�RKeyVerI�SKeyTimel��F8FS
KeyValueFloatf�?pSKeyAttrFlagsi!�SKeyAttrDataFloatf

�SKeyAttrRefCountiDUAnimationCurveL�'N;SAnimCurveS:T	DefaultD�?RTKeyVerI�{TKeyTimel��F8�T
KeyValueFloatf�?�TKeyAttrFlagsi!
UKeyAttrDataFloatf

7UKeyAttrRefCounti]AnimationCurveL8,N;SAnimCurveS�U	DefaultD�|Rq?�UKeyVerI�{Y�KeyTimelu���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�LğM�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R��CR�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U,�d�U��FV*�7V��@V(<
cV|��Vк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_v[�
KeyValueFloatfu�哊;§����>����<Ŀ-��B��'����/�D��)
꿙���Nۿ���I2���Ec>���>)�G�f�l�
���龿���Bb����W�5�B��!���¾�݂�����������E��sP��T'���������>�
!�4D&�c��������ؾ�H��Q�	@e��ᆬ}c���I>I�>M �>�rN=�#�9��x><�Ff�>�g�?�y?@���@�@@eE@�1@6�S@#�-@���?2kk?��
>o�ھt0��(0?E��>��ξ��ſ����L����7�<{�?���?��?���?��?��?���?��h>�^}>NB(>��=��뼉:��cuʾs�9�=����>�~=򏙾�����⑾P�־�����6���(�K����������o��j�ٿJ>���>ڤ	?t�G?8?��A?�.�?%��?�D@. @�[9KeyAttrFlagsi,!	!!	!!	!!	!!	!!�\�KeyAttrDataFloatf,�





















�\9KeyAttrRefCounti,:
�dAnimationCurveL�,N;SAnimCurveSZ]	DefaultDd)��r]KeyVerI�;a�KeyTimelu���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�LğM�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R��CR�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U,�d�U��FV*�7V��@V(<
cV|��Vк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_6c�
KeyValueFloatfu� Kѿ.�J�%R���j��$������E���n��aµ�����)���L���Z��N۩��j����_����uX���&��3T������@���EƂ�9�=�?8.���0�PS�4!��P��A#�ӣ��Q$�1�k�}�m�DHE�8������žGϗ�6M����0?�$�?���>���M�P���g�b���˿�>ӑ�?�n*@��@�{@��
@ü�������p�D҃��H���y���f�.`�Z�f�<T��6�_����^�����@)�@���@��@�z@@�!�@S�}@�%@<[%�����[��n'��h�������I���������o��M����Gq�����	S����?QT�@��@��?p;4?ۯ�?���?k/�>�4�S�W��C��C,���庿�g��;)���2�?h?1@�\@k�@^1�@UĄ@���@Q��@���@A�c9KeyAttrFlagsi,!	!!	!!	!!	!!	!!bd�KeyAttrDataFloatf,�





















�d9KeyAttrRefCounti,:
�lAnimationCurveLx�N;SAnimCurveSe	DefaultD`�M(�2eKeyVerI��h�KeyTimelu���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�LğM�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R��CR�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U,�d�U��FV*�7V��@V(<
cV|��Vк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�j�
KeyValueFloatfu�+lB�T�8�x������7��T����	���8���~��D[��/j�����[��Z'�+/�eL���`��dn�v�~wi���U�">���$�Í���*��3��4���1��U2�>n<�J%J���U�m�a���m�pq�cej��A_�YNM���<�qi��4���\��k�9��m�?U�?.ӿX���2B��U	��������χx�S���i����!���U�����K<���e��5¶|�Ò§�$���(�Y�/����E��GO��I����������+�������*�R��_,��/�
�6�W:�+�F½GA�;YC�>G�*P�@¸b,�U���t��N��κ���bv�K�-�-���9��N�R�$��s-�P'�/4���� ����U��Y��𞿝�;��T�Xf�5aſu�x^����ݤZ�Gٱ��F��L����� �\+-�Hk9KeyAttrFlagsi,!	!!	!!	!!	!!	!!"l�KeyAttrDataFloatf,�





















wl9KeyAttrRefCounti,:
�mAnimationCurveLxLN;SAnimCurveS�l	DefaultD�?�lKeyVerI�mKeyTimel��F8Fm
KeyValueFloatf�?pmKeyAttrFlagsi!�mKeyAttrDataFloatf

�mKeyAttrRefCountiDoAnimationCurveL�AN;SAnimCurveS:n	DefaultD�?RnKeyVerI�{nKeyTimel��F8�n
KeyValueFloatf�?�nKeyAttrFlagsi!
oKeyAttrDataFloatf

7oKeyAttrRefCounti�pAnimationCurveL�JN;SAnimCurveS�o	DefaultD�?�oKeyVerI��oKeyTimel��F8p
KeyValueFloatf�?0pKeyAttrFlagsi!jpKeyAttrDataFloatf

�pKeyAttrRefCounti0vAnimationCurveL��N;SAnimCurveS�p	DefaultD �W�qKeyVerI�t�KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�uu
KeyValueFloatfZh���������j�����^��&T��ic���������h�����l��:���d��N��P��*�p���:	�g3	�@j���I�%t������n���D���r��b��H�������G���N��P���3������5c��x|����������������y����������)h�������_������/��A����8�O��+��e�;������z��	�g3	�g3	�f3	�g3	��
	����
��&�����Y}���т�@���'���j���0���A%���*��_����h���'���4��,C�����#/���@�wc��h��?�|��g3	��uKeyAttrFlagsi!�uKeyAttrDataFloatf

#vKeyAttrRefCountiZ�{AnimationCurveL8;N;SAnimCurveS�v	DefaultD�+z0@�vKeyVerI��y�KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_{u
KeyValueFloatfZh^уA^уA�‚A@��Asa�A�~AX�|A�{A�3{Ak{Aܳ|A	*AV�A]��A��A���A��AB��A/v�A���A1�ANs�Aj�Ax�A�{AW�tAoA;;jACrfAz�cA"�aAy�`A	M`AOZ`A�`A�paA|bAD�cA��eA
�gA��jA��mA�qA��tA��xA��|ABb�AA8�A^уA�9�A_��A|ˇA#�A�A;׊At��A�0�A��A��A���A���A���A���A*ÌAQ"�AS-�A���A-��A��AB��Ao)�A�ǂAS��A�i�An�~AJs}AJX|A1�{Ak{A��{A��|A!�~A˔�A��A�A���A&�A�]�A9}�A���AH{KeyAttrFlagsi!�{KeyAttrDataFloatf

�{KeyAttrRefCountiZH�AnimationCurveLheN;SAnimCurveS|	DefaultD _A9@*|KeyVerI��KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��u
KeyValueFloatfZh�
�A�
�AN��A��A��A��A$E�A��BܜBXB"ABs�A_
�A���A�-�A�`�A}�AJK�AmՓAc��A7ܜA��A���A
q�A���A�hB>"
B��B7%B�w/B�7BK�=B�H@B�[@B�>BO�;B497B*�1B�T+B�?$BG�B
�B#�B��B���AC�AA'�AQ��A�
�AV��A��A�ٲA�P�A�w�A]�Ay�A��Af�A,��Ac��Ac��Ac��Ac��A;�A�ÙA�C�A�j�A&�A�j�A��A�6�A���AT-�A���A0��Ap��A��B0�BXBKB��A���A�[�A4�At��A@�A&��A�	�Ay—Ac��AԀKeyAttrFlagsi!�KeyAttrDataFloatf

;�KeyAttrRefCountiZ��AnimationCurveL/N;SAnimCurveS��	DefaultD�?��KeyVerI�߁KeyTimel��F8
�
KeyValueFloatf�?4�KeyAttrFlagsi!n�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLؑN;SAnimCurveS��	DefaultD�?�KeyVerI�?�KeyTimel��F8j�
KeyValueFloatf�?��KeyAttrFlagsi!΃KeyAttrDataFloatf

��KeyAttrRefCountih�AnimationCurveL.N;SAnimCurveS^�	DefaultD�?v�KeyVerI���KeyTimel��F8ʄ
KeyValueFloatf�?�KeyAttrFlagsi!.�KeyAttrDataFloatf

[�KeyAttrRefCounti�AnimationCurveL�.N;SAnimCurveS��	DefaultD`��օKeyVerI�Lj�KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_V�u
KeyValueFloatfZh�������&��'�����V������8���,����(��$��F����F���ݺ��%��)���du�m]X�aI��L�d}b��+�����)���+���[��@s�aG���!��,��/4�z�9�g&<�o%<�h�:�2}7�� 3�f�-��'����O����b��0������4���������1����ܝ����^��������v�X`j���_��W���Q���M�M�L�L�L�_�L�a�L��P���Y��h�/|�{_��1��`@��l۰��P���4��k ����������M��
����(��^���J������2E����3���*���!����u��HT���L���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiZt�AnimationCurveL�-N;SAnimCurveSJ�	DefaultD`G�?b�KeyVerI�K��KeyTimelY���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_֏q
KeyValueFloatfYd8�?8�?'��?M�?�-�?2�	@�@�/#@�P)@��(@�`@�_@V�?�-�?f3�?��V?W�?{��>�Т>)��>3�>`u5?��?.o�?���?~�#@nL@�v@B܏@���@�~�@��@���@���@���@R�@˜�@��@�Ù@���@��}@(�b@Q�G@j.@�?@�@���?���?�̡?���?�#s?<�Q?�f4?�M?17?��>�_�>OC�>8��>!ݬ>���>*��>t3�>r��>7M?��!?�H?��t?�`�?H�?sP�?f��?w�@r�
@{@�!@<�&@F�(@�z%@�@�;@���?���?y˲?by�?�5U?/?��>�4�>�KeyAttrFlagsi!:�KeyAttrDataFloatf

g�KeyAttrRefCountiY�AnimationCurveL�N;SAnimCurveSʐ	DefaultD�<@�KeyVerI�ӓ�KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_b�u
KeyValueFloatfZh�x�A�x�A{��A�Y�A7��A4LB��BP�
B��B��B^
BMB ��AVy�A�v�A�"�A���AX�A��A"�A{k�A��A$��Ag��A5��A�}
B£Bi B[*B�3B��9B��>B�ABgAB��?B;�<B�9B�P4B��.B��(B"B�BB�
B<3B?{�A���AR.�A�y�A&	�AP-�A6��A�O�A�[�A��A���A���Aw��A�w�A��A��A��A��A�4�A/x�A��A��AZ��A���A���A#a�A^��A&�A{�B�B��Be�
BTBw�B�B	3	Bm@B�5B���A=��Aج�Ae{�A���A�A��A��KeyAttrFlagsi!ƕKeyAttrDataFloatf

�KeyAttrRefCountiZ`�AnimationCurveL8/N;SAnimCurveSV�	DefaultD�?n�KeyVerI���KeyTimel��F8–
KeyValueFloatf�?�KeyAttrFlagsi!&�KeyAttrDataFloatf

S�KeyAttrRefCounti��AnimationCurveL�.N;SAnimCurveS��	DefaultD�?ΗKeyVerI���KeyTimel��F8"�
KeyValueFloatf�?L�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti �AnimationCurveLx.N;SAnimCurveS�	DefaultD�?.�KeyVerI�W�KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti(�AnimationCurveL8�N;SAnimCurveSv�	DefaultD@!����KeyVerI�'��KeyTimelOx��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��I
KeyValueFloatfO<
I��
I�����F����Š�����p�G=a�a(W��rS�g�V���`�L�n��=�ӌ���K��=)��x���z���
I��_[������f���/��������������)�|���o�rxd���[��U��rS�$�T���X�M_��g�'�p���z����ӌ��}��_���?�������)��*������
I��
I��
I��	I������(���)�������?��_��|��Ԍ�������z�*�p��g�O_���X�&�T��rS�
�U��!\���e�6"r����
����Q��&͖���a��
I����KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiO0�AnimationCurveLH.N;SAnimCurveS~�	DefaultD@{��?��KeyVerI�/��KeyTimelOx��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��I
KeyValueFloatfO<�#�?�#�?���?ڐl?��H?�*???s?IM�>��>��>#j?�m?T�&?8�A?�+`?E�?=�?�?�?�#�?�ʙ?�a�?n��?�T}?e?��L?��6?�#?5�?�^?@!�>5��>��>k]�>\�>\�?�#	?t�?� ?�$0?A�A?�aT?&h?w�{?XG�?���?�2�?a��?�#�?R�?L�?�#�?U��?o2�?���?WG�?f�{?�h?�aT?�A?�$0?&� ?U�?�#	?G�?�[�>V]�>���>t��>�L�>��?~�?
�'?>?2�X?��u?-��?ઘ?�#�?��KeyAttrFlagsi!��KeyAttrDataFloatf

#�KeyAttrRefCountiO8�AnimationCurveL�BN;SAnimCurveS��	DefaultD���;@��KeyVerI�7��KeyTimelOx��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��I
KeyValueFloatfO<���A���A�%�A���A
�As�A1�A69�AI��A��A�j�AƔA�$�AX��A�A�K�A(��A/�A�g�A���A�V�A�j�AAp�A	��A!#�A���Ay�A�A��A�a�A�g�A�{�A��Aj�A��A4˓A.%�AMz�A֋�A�A�A��A@F�A�W�A��A�AU'�A��A���A���A���A���A��AW'�A�A��A�W�AAF�A��A�A�AՋ�AMz�A0%�A4˓A��Aj�A��A���AtґAO�Ai��A".�Aۡ�Ay�AK<�A�s�AȨ�A���AĨKeyAttrFlagsi!��KeyAttrDataFloatf

+�KeyAttrRefCountiO��AnimationCurveL�BN;SAnimCurveS��	DefaultD�?��KeyVerI�ϩKeyTimel��F8��
KeyValueFloatf�?$�KeyAttrFlagsi!^�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLh�N;SAnimCurveS�	DefaultD�?�KeyVerI�/�KeyTimel��F8Z�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiX�AnimationCurveLCN;SAnimCurveSN�	DefaultD�?f�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

K�KeyAttrRefCounti̲AnimationCurveLXBN;SAnimCurveS��	DefaultD`�^ؿƭKeyVerI����KeyTimelX���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_.�m
KeyValueFloatfX`�¾�¾�⬾w���fCc�ܦ%���߽�h��zl����h���h����� ����H�:��T��>h��^r��q�4Ud��UN��L0�3U�!���E�w�;"�Q>��>�?܆;?2�W?Df?��h?��c?X?�G?F�1?v�??�>���>��>ah!>�HI=�?]�߬�
.s�|1����¾����o����L%�d#6���E���S�v�_�8i�co��q��q�X�n�YMh�v^��P�S�@���.��Z�r���'�k-���;����a���$�26��ѭ�����'���]�1.X�^��R�ξ<�������;��<U�>l��q�X�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiXL�AnimationCurveLHCN;SAnimCurveS"�	DefaultD [>@:�KeyVerI�#��KeyTimelY���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��q
KeyValueFloatfYd���@���@���@���@���@�)�@Y�@�U�@��@D �@�,�@>��@Y��@���@���@���@�1�@��@���@���@R��@�g�@���@���@�P�@s�@B#�@��@��@��@dj�@~U�@�@�،@ӭ�@fQ�@���@t��@�g�@��@'I�@�X�@���@&5�@��@�-�@�O�@���@���@8v�@���@���@���@��@���@q��@q��@и�@�u�@���@���@���@;8�@���@P��@���@[��@�U�@Է�@��@t��@b.�@� �@�t�@p>�@&��@7��@D �@"��@|p�@��@֙�@���@O}�@"��@���@u��@��@���@طKeyAttrFlagsi!�KeyAttrDataFloatf

?�KeyAttrRefCountiYؽAnimationCurveL��N;SAnimCurveS��	DefaultD�R:@��KeyVerI����KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_:�u
KeyValueFloatfZh���A���A
�A'5�A7��Ak�A��B5DB9#B��BB1�A��AXB�A��A���A���Aj/�A$�A&�A��A�A�Aj��A?�Aq�A�"BZB5B`3'B��0B�8B��=B�r@Bfy@B��>B��;B-�7Bh�2B�p,B��%B�kB��B�'B��BpB�'�A�O�A���A���A |�A���A�A�޳A�X�A^��A���A�`�A%�Aġ�A&�A&�A&�A&�A[`�A�آA�=�A�=�A߆�A���As��A��A@%�A��A�X�A��A��B��B�OB��B��B�%BN��A��A�K�A���A�`�A	I�A��A��A&�Ad�KeyAttrFlagsi!��KeyAttrDataFloatf

˽KeyAttrRefCountiZ8�AnimationCurveLxCN;SAnimCurveS.�	DefaultD�?F�KeyVerI�o�KeyTimel��F8��
KeyValueFloatf�?ľKeyAttrFlagsi!��KeyAttrDataFloatf

+�KeyAttrRefCounti��AnimationCurveL8DN;SAnimCurveS��	DefaultD�?��KeyVerI�ϿKeyTimel��F8��
KeyValueFloatf�?$�KeyAttrFlagsi!^�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLhDN;SAnimCurveS��	DefaultD�?�KeyVerI�/�KeyTimel��F8Z�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountix�AnimationCurveLȒN;SAnimCurveSN�	DefaultD@P��f�KeyVerI�O��KeyTimelY���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��q
KeyValueFloatfYd�J��J�O��(P�Oi*��7��B��^J�L�N���N��#H�2�;��N+�-��Nw�l߿�뼿c��Cە�爘�\c���ʿ�(���@�Y�,�p�G���b�'7|�x����*��鴚�wϟ�� ��������:ǝ�&���
���wp��;x��.����o�~�^�B�M�H=��p-�(������������J��Yٿ#�ʿ�D��"L��N&���碿r���*m��(W���x��Z{���y���褿����¿˖ֿ�>s�î����3�&�V1���:���B���H��L��-N�.�K���E�W<���/�Y� �{���\��XMݿ������k���KeyAttrFlagsi!>�KeyAttrDataFloatf

k�KeyAttrRefCountiY��AnimationCurveL�CN;SAnimCurveS��	DefaultD��?��KeyVerI����KeyTimelW���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_B�i
KeyValueFloatfW\xX>wX>�)�>�*�>؂�>�3�>�5?�F?�b$?��#?�\?�o?<�>H��>�W>AV>�$�=�=5al<܅�<�HK=29�=H>>�O�>��>
D?�O?��?JX�?�e�?z��?/b�?���?���?��?���?4}�?⨼?��?Um�?�X�?P�l?��J?h9+?�?5i�>�r�>~�>zy>CFL>�M%>��>3��=�О=YTo=~�0=�d=/�<B4�<�p�<��<N�=6Gd=H��=�g�=�&%>��W>:�>�+�>R�>��>�?C)?-�?�� ?�s#?TT?
?�e?V��>Ej�>�Ҍ>
�K>K�>!ə=d��<���<l�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiWl�AnimationCurveL�CN;SAnimCurveS6�	DefaultD`�<@N�KeyVerI�?��KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��u
KeyValueFloatfZh#��A#��A��A'�A�M�A�B(�	Bd{
B�xB4UB�qBWB-{�A���A�d�A:��A�a�AZ��A�:�A�g�A�Z�A��Aq��Aڙ�A�B
�B/�B��$B��/B�;9B
�@B]6FB�HB��HB�GBfDB��?B��:Bz�4B6�-Bݖ&B�B�OB��B�5B�-B#x�A��AH��AB��A�)�A�b�A�K�A��A�L�A�s�A�h�AR3�A�گAf�Af�A�e�A�e�Aå�A.�A���A��A�9�A_��Aѭ�Ay�A�n�A7{�ALpB�B�4
B��BY�B:VB�TB9�Bu4B$�B���As��AbW�A.�A�o�A60�AZh�A��KeyAttrFlagsi!2�KeyAttrDataFloatf

_�KeyAttrRefCountiZ��AnimationCurveL�eN;SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel��F8.�
KeyValueFloatf�?X�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti,�AnimationCurveL��N;SAnimCurveS"�	DefaultD�?:�KeyVerI�c�KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL8eN;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8��
KeyValueFloatf�?�KeyAttrFlagsi!R�KeyAttrDataFloatf

�KeyAttrRefCounti|�AnimationCurveL�eN;SAnimCurveS��	DefaultD`4����KeyVerI���uKeyTimelMh��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��A
KeyValueFloatfM4�������5���Ü⿦^ҿ��ÿv]��6%��^!����~ж��A¿�п~�޿���{���%��������������`�$���}�����>&ٿt�Ϳ<@ÿ���ٮ��/ݭ�a!��]I��
������J)���ÿ�s̿��տ��޿�0远�:_��3\�?q�����P��������P����?q�0\�1_����{0迁�޿��տzs̿�ÿO)�����	���\I��`!������2���#�� 9ſ�п�bݿ�D������b��������KeyAttrFlagsi!B�KeyAttrDataFloatf

o�KeyAttrRefCountiM0�AnimationCurveL(fN;SAnimCurveS��	DefaultD`���?��KeyVerI�K�MKeyTimelH@��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cCX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��-
KeyValueFloatfH +u�>'u�>,Z>�+>Ԣ>�3�=gӘ=z||=C^b=�b=`}z=���=�a�=�8�=3
>jB>�De>�>u�>�v�>��r>�1[>%�?>�">�<>��=L3�=�=G�=��l=M_=lHf=�Cv=��=���=��=/��=89�=��>�M&>��=>#�T>\ i>;�y>u�>u�> u�>�t�>��y>� i>"�T>g�=>�L&>�>�7�=P��=��=w��=C��=tBv=BGf=�U_=xAn=���=�7�=v�=S��=W�>ي6>@[>��>u�>��KeyAttrFlagsi!��KeyAttrDataFloatf

#�KeyAttrRefCountiH8�AnimationCurveLX�N;SAnimCurveS��	DefaultD �m<@��KeyVerI�7��KeyTimelOx��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��I
KeyValueFloatfO<!m�A!m�A6��Ai4�A��A�S�A��A�—AN��A-x�AِA�M�A�ѠA�_�A��Ax��Ad�AI��A-�A!m�A���A@�A��A?�Ad�A�ֽA9�A��A��A ��A��Al�A-x�Ail�A��A&O�AD��AH,�AxY�A!�A��A���A���Aٸ�A�&�A��A���A�x�A!m�A6m�A6m�A!m�A�x�A���A��A�&�Aٸ�A���A���A��A"�AxY�AH,�AE��A&O�A��Ail�A-x�A��A�N�A��A�K�A�	�Ad��Aԧ�A
��A���AN�A!m�A��KeyAttrFlagsi!��KeyAttrDataFloatf

+�KeyAttrRefCountiO��AnimationCurveL(�N;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8��
KeyValueFloatf�?$�KeyAttrFlagsi!^�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLXfN;SAnimCurveS��	DefaultD�?�KeyVerI�/�KeyTimel��F8Z�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiX�AnimationCurveL�fN;SAnimCurveSN�	DefaultD�?f�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

K�KeyAttrRefCounti��AnimationCurveL�fN;SAnimCurveS��	DefaultD@U�@��KeyVerI����KeyTimelU���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YL��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_
�a
KeyValueFloatfUT�j@�j@T�	@��@�@L@�@&�@}a@�@,�@��@|�@��@P@��@H>�?�C�?b��?�S�?�k@X@�
@�@[w@�#@	�)@��.@�2@%5@�B6@��6@K�6@�h6@��5@��4@��3@r
2@��/@w&-@��)@)&@��!@/@-d@ڙ@	@��
@�j@v�@8[@��@+R�?/H�?��?x��?P��?�S�?*�?�:�?��?��@�0@�@S	@��@�8@�[@�5@K�@��@��@�U@�@�8@�\@��@�@�Y@@@�@�@�#@	�?�S�?4�KeyAttrFlagsi!n�KeyAttrDataFloatf

��KeyAttrRefCountiU�AnimationCurveL�fN;SAnimCurveS��	DefaultD@k/��KeyVerI����KeyTimelX���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_~�m
KeyValueFloatfX`Z{!�Z{!��������	����h����K쿬>�u<��㿁�鿜Q�X��p�GG�^��o(!�'�%��j&��Z#����-$����	�SB�#������#f���k�^��H3��3�������0���B��Ĕ��L���*	����7��z���	�R�
������5�$�[{!��$���%�x&'���'�&(��(�:�'��^'���&�5p&��j&��j&�2�%��^#����׬����U���]��A�v�w9������56���u]��
�u<�)�㿧L�Ve�����*�s���
��:���[�$��j&���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiX��AnimationCurveLgN;SAnimCurveSr�	DefaultD�b�9@��KeyVerI�{��KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_
�u
KeyValueFloatfZh��A��A&��A:N�A���A��B4cB��
B�p
B�}
B][
BMB�P�A��A���A��A���A*R�AΊA~��A�ɤA��A�H�A�f�A��A��B�&Bl� B
�,BZ7B�m?B,EB��GB��GB}�EB��BB>B�?8B!�1B�%*BS4"B��B��B�-	BVB0��A��Ar��A��A��AiC�A�B�A��Aߨ�A��A�M�A�[�A>?�A���A���A���A~��A~��A���A���A�-�A�>�A�˹A�u�A���Aƨ�A�t�AV��Aĕ�A?�B�B_�
B��B�}
B�WBz"	Bb8B6��A#d�A ��AX7�A^��A#��AﱟA~��A4�KeyAttrFlagsi!n�KeyAttrDataFloatf

��KeyAttrRefCountiZ�AnimationCurveL8)N;SAnimCurveS��	DefaultD�?�KeyVerI�?�KeyTimel��F8j�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountih�AnimationCurveLx+N;SAnimCurveS^�	DefaultD�?v�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!.�KeyAttrDataFloatf

[�KeyAttrRefCounti��AnimationCurveLHgN;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8*�
KeyValueFloatf�?T�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti<AnimationCurveL��N;SAnimCurveS�	DefaultD���?6�KeyVerI��KeyTimelX���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�m
KeyValueFloatfX`�u6?�u6?agE?=�V?��h?Kz?���?;P�?���?E��?�c�?6Z�?�l?]�R?}7?:�?��?��>��>�?�>���>q�?��'?^�G?�j?��?Go�?���?���?�?b��?��?�y�?mt�?m��?���?&��?���?�R�?԰�?�"�?#ݠ?��?��?HA?�,i?J�T?�lB?�'3?�0&?sh?��?z?���>S��>#��>���>��>�>V��>	��>

�>1��>Wu�>}�?��?�%?M5?H�E?�7V?h�e?�Ct?+��?��?�7�?��?��?V�?ڇ?X�?�r?]^?��H?��1?�U?E?���>��>�KeyAttrFlagsi!KeyAttrDataFloatf

/KeyAttrRefCountiX�AnimationCurveLxgN;SAnimCurveS�	DefaultD ���KeyVerI�{�KeyTimelV���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�e
KeyValueFloatfVX�ؽ�ؽ0��$���H�
n�����™���:��L�l���i䂾f	S����b3޽���n���(���ޘ��̻����y�@�	�����	���J���\\���徢�	�����1���>�>�D�dD� @��e8�;�-���!����������̾���������t�zG��� �"����Ͻ80�������Q�@� �� ��ǭ��r�ny#���ػ;ʛ�z>�
�i��`Ҽ�)��Mo�#����nֽ�h��g%���C�J�b�ƃ��Ͻ�����lϞ�<&��Y���#������4�]��J5��0��{ʽ0L��~������N�$KeyAttrFlagsi!^KeyAttrDataFloatf

�KeyAttrRefCountiV$AnimationCurveL��M;SAnimCurveS�	DefaultD�f6?@	KeyVerI���KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�
u
KeyValueFloatfZh6��A6��A�B`	B�B��B��B�l"B%*%B�I%B,"BE�B��B�	B{p�A���A ��A��A**�A8��A/�A�\�A�D�Au�BlB��B�+B~�7BQ�CB�|NB��VB��\B/Y_B�C_B�n]B
ZB�RUB�rOB&�HB\AB	�8BÅ0B�'B�lB�,B�cBFBB���A��A��AT�A_��A���AR
�A;^�At��A�x�A�@�A���A���A��A��A�P�A�v�A[��A�E�A�*�A6�Ao�Ah�B�
B��B5!B�B�AB�z"B�$B�I%B�$B<� B�BDB��
B��BXF�A�u�A�~�A��A���A�
KeyAttrFlagsi!�
KeyAttrDataFloatf

KeyAttrRefCountiZ�AnimationCurveL�M;SAnimCurveSz	DefaultD�?�KeyVerI��KeyTimel��F8�
KeyValueFloatf�?KeyAttrFlagsi!JKeyAttrDataFloatf

wKeyAttrRefCounti�AnimationCurveL��M;SAnimCurveS�	DefaultD�?�KeyVerI�KeyTimel��F8F
KeyValueFloatf�?pKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiDAnimationCurveLX�M;SAnimCurveS:	DefaultD�?RKeyVerI�{KeyTimel��F8�
KeyValueFloatf�?�KeyAttrFlagsi!
KeyAttrDataFloatf

7KeyAttrRefCounti4AnimationCurveLؘM;SAnimCurveS�	DefaultD`P;�?�KeyVerI�;uKeyTimelMh��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�A
KeyValueFloatfM4��Q?��Q?qI?�??55?�w*?V� ?�?H?�G?n1?�\?��?��(?c�2?	<?'�D?^�K?�+P?��Q?��P?vN?�I?�D?��=?�X6?�.?�'?5� ?�x?��?cn?�9?;?�6?[�?��?�� ?��&?��,?b�2?;�8?�_>??�C?k\H?6GL?�DO?.Q?�Q?'�Q?_.Q?�DO?2GL?v\H?L�C?�_>?C�8?U�2?��,?��&?�� ?��?R�?�6?1?�8?��?��?58?��!?;x)?�1?��9?�B?��I?�ZP?��Q?�KeyAttrFlagsi!�KeyAttrDataFloatf

'KeyAttrRefCountiM�AnimationCurveL��M;SAnimCurveS�	DefaultD =^ÿ�KeyVerI��KeyTimelB��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�ZP�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_
KeyValueFloatfB������u���%�5��+���p��#;e���Q���Q��c�����l�x�����ս����ww�������^�V��eb��,�ڽ�����,������l���Y���`���q�{���ܶ�����������ȽXP޽�����"(
��k�9�]9�}l��'
���&���Q޽��Ƚ�������鵑�����d�q�?�`�
[�#o���PZ��Vt��u�ͽG8�a��!����,KeyAttrFlagsi!fKeyAttrDataFloatf

�KeyAttrRefCountiB� AnimationCurveLșM;SAnimCurveS�	DefaultD ��@@KeyVerI���KeyTimelOx��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_
 I
KeyValueFloatfO<1B1B��B�%�A=��A�s�Av��A)9�Ac8�A~��AY�A���AC��Aq�Aob�A�S�A�8�A�B��B1B�QB�DB�$B
^�A}@�A�k�A_Y�Ac��A�f�A�z�A;�A�!�A���A룷Axj�A���A�R�A���A'T�A�:�Aob�A`��A�p�A���A$9B)B5-Bz�B&B(B(B&B{�B5-B)B$9B���A�p�A`��Apb�A�:�A&T�A���A�R�A���Awj�A룷A���A�=�A窼A�r�A��A^ �A��A�`�A��A�&B��B1B4 KeyAttrFlagsi!n KeyAttrDataFloatf

� KeyAttrRefCountiO"AnimationCurveL(�M;SAnimCurveS� 	DefaultD�?!KeyVerI�?!KeyTimel��F8j!
KeyValueFloatf�?�!KeyAttrFlagsi!�!KeyAttrDataFloatf

�!KeyAttrRefCountih#AnimationCurveLx�M;SAnimCurveS^"	DefaultD�?v"KeyVerI��"KeyTimel��F8�"
KeyValueFloatf�?�"KeyAttrFlagsi!.#KeyAttrDataFloatf

[#KeyAttrRefCounti�$AnimationCurveLH�M;SAnimCurveS�#	DefaultD�?�#KeyVerI��#KeyTimel��F8*$
KeyValueFloatf�?T$KeyAttrFlagsi!�$KeyAttrDataFloatf

�$KeyAttrRefCountiT*AnimationCurveL��M;SAnimCurveS%	DefaultD�ה?6%KeyVerI�'(�KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�)u
KeyValueFloatfZh\��<\��<{)���,��B��z�Ⱦ����[��y��ޟ����G�����]�=γ�>X�?��9?2Xa?|�z?���?,�u?<�]?i';?z?��>�z>G����9��2n�2�?��%o��w��7��4��p씿7^�����z�~���h�9�P�l7�� �a9���Ӿv��J@e��_��_^�\��<���=��L>V6�>z��>�?n*?��E?R�]?��p?_�|?���?���?���?���?��|?�p?�3\?;�B?FX$?o�?킽>v�f>U0�=��x���E�!�Ӿa	����ޟ��1�S����؄0�
�;&ZN>�7�>TM?~K?Dw?���?�)KeyAttrFlagsi!*KeyAttrDataFloatf

G*KeyAttrRefCountiZ�/AnimationCurveL�M;SAnimCurveS�*	DefaultD���&��*KeyVerI��-�KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_B/u
KeyValueFloatfZh�7��7�'!/�;7%�8��/=�]��N������D���c8����	��&�%��4��D�i�Q�K\��b��za���Z���N���?�Ym.����O	����h��9��	@��u͆��t�Q�i�'3j�?�q�����É��x��C�������\���3���&�����:)�*��&�+�/��7�c�>�d�D�
�J���O�pYT�GX���[�|^�w�_��a��za��za��za��za�^?`�e�\�oW��P��H�p�?�8�6��W-��>$�ɟ�?�����
�Ϫ�0���D����{����������о���+�8�8���E���R�>�^��za�l/KeyAttrFlagsi!�/KeyAttrDataFloatf

�/KeyAttrRefCountiZl5AnimationCurveL8YN;SAnimCurveS60	DefaultD@��1@N0KeyVerI�?3�KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�4u
KeyValueFloatfZhү�Aү�A�f�A�"�A���AU�A���A��A;�A�-�A��A��A��A>١A���AJvA"�UAL�=A�k0A�1A�AA��[AAtAOf�A~ܭAM�AH�A���A;?B�BB�3B"n%B�O(BBS(BC�&B�#B/7B�3Bu=B0�	BS^Bw��A���A���A-��A~|�A���A���Aү�A+2�A�xA�}jAX�]A�_RA�HAЁ@AM:A_c5A��2A�1A�1A�1A�1AS4At*<AydHA�SXAKkA6M�ANjA���A���AZw�A���A�u�A���A=u�A���A�-�A��A�	�A&��A�ƸAAѩA	��A��A��qA�SAp�7A�1A�4KeyAttrFlagsi!25KeyAttrDataFloatf

_5KeyAttrRefCountiZ�6AnimationCurveL��M;SAnimCurveS�5	DefaultD�?�5KeyVerI�6KeyTimel��F8.6
KeyValueFloatf�?X6KeyAttrFlagsi!�6KeyAttrDataFloatf

�6KeyAttrRefCounti,8AnimationCurveL�2N;SAnimCurveS"7	DefaultD�?:7KeyVerI�c7KeyTimel��F8�7
KeyValueFloatf�?�7KeyAttrFlagsi!�7KeyAttrDataFloatf

8KeyAttrRefCounti�9AnimationCurveLxXN;SAnimCurveS�8	DefaultD�?�8KeyVerI��8KeyTimel��F8�8
KeyValueFloatf�?9KeyAttrFlagsi!R9KeyAttrDataFloatf

9KeyAttrRefCounti?AnimationCurveL�2N;SAnimCurveS�9	DefaultD�ð@�9KeyVerI��<�KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_z>u
KeyValueFloatfZh��@��@v��@���@��@0�@�U�@ft�@T�@l��@�Q�@X�@q޽@�M�@�O�@��o@��F@S?(@��@=@�3@�YZ@�O�@Ó�@�E�@ ��@��A��A��A��(AƬ1A1�7A�0:AO@:A-�8A:�5A1A�_+A�$A��A��A�
Aj�A���@E��@Xk�@�3�@n��@ ��@g?�@�.|@Z&h@�lV@�G@I�9@2Q/@j'@!@�@:[@�\@�@@=@��@%$*@
:@4�N@הf@љ�@Я�@��@A�@2Ҹ@�V�@yi�@&��@���@h;�@h��@�A�@�
�@/��@Vd�@XR�@�e�@�l�@��n@L�G@S$@=@�>KeyAttrFlagsi!�>KeyAttrDataFloatf

?KeyAttrRefCountiZ�DAnimationCurveLXN;SAnimCurveSn?	DefaultD�����?KeyVerI�oB�KeyTimelY���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�Cq
KeyValueFloatfYd������sѿ���M3�e���#�5�/���6�LE6�`�,��������Hݿ{C��D|��ѯ\�6��c$���)�}#G���z�좿�Կ	��-�U��H�:���(���e����>q��+_��K���e&������ݪ��N��ڐ����ij�Z�O�5�6������eV�-GԿ���D
��½��sڇ��av�g(a���O���A�hB7���/�p+��)���)���)�p�-�&:���M�lh����2��T4����ɿ��俀�˯
��h���%��e.�24�JE6���2�K�)�� �p��6���Ϳl����Y_��&3���)�$DKeyAttrFlagsi!^DKeyAttrDataFloatf

�DKeyAttrRefCountiY$JAnimationCurveL�2N;SAnimCurveS�D	DefaultD`p�>@EKeyVerI��G�KeyTimelZ���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�Iu
KeyValueFloatfZh���A���A���AnB�kB¢B!B;^B��B{�B'B.�B�CB��B9K�A���A��AF�A�A)��A�,�Ap��A��A�eBƅB=B$B�v/B�:B0CB��JB0�OB��QB��QB~+PBI/MB�IBT�CB�=B'7B�/B��(B� B[fB�BI1Bv�B��A���An��A|�A���A_o�A���A/��Aey�A���A
$�Ab�A?��A)��A��A)��A��A[��A�z�A���A���Aؚ�Ay�A^�BfB£B�B��B2�BxBmMB|�B��B	�BB�B�
B��B¬�A���A�v�A��A)��A�IKeyAttrFlagsi!�IKeyAttrDataFloatf

JKeyAttrRefCountiZ�KAnimationCurveLHXN;SAnimCurveSzJ	DefaultD�?�JKeyVerI��JKeyTimel��F8�J
KeyValueFloatf�?KKeyAttrFlagsi!JKKeyAttrDataFloatf

wKKeyAttrRefCounti�LAnimationCurveL(3N;SAnimCurveS�K	DefaultD�?�KKeyVerI�LKeyTimel��F8FL
KeyValueFloatf�?pLKeyAttrFlagsi!�LKeyAttrDataFloatf

�LKeyAttrRefCountiDNAnimationCurveLHFN;SAnimCurveS:M	DefaultD�?RMKeyVerI�{MKeyTimel��F8�M
KeyValueFloatf�?�MKeyAttrFlagsi!
NKeyAttrDataFloatf

7NKeyAttrRefCounti4SAnimationCurveL�WN;SAnimCurveS�N	DefaultD!��?�NKeyVerI�;QuKeyTimelMh��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�RA
KeyValueFloatfM4�=?	�=?u>2?ɏ$?�v?z-?�>U��>X@�>���>p��>���>���>��?�?��?&�+?6"5?yP;?	�=?4<?�o8?[�2?��*?��!?K\?��?��?��>8��>#��>[��>e��>Ѹ�>��>���>A�>���>4�?;4	?|?ˤ?+�"?xE*?[�0?�6?7:?��<?�=?�=?L�<?^:?�6?f�0?�E*?T�"?ޤ?|?O4	?F�?���>M�>ˎ�>(��>��>���>��>��>B�>UV�>��?A�?9�?P(?"�2?\�;?	�=?�RKeyAttrFlagsi!�RKeyAttrDataFloatf

'SKeyAttrRefCountiM$XAnimationCurveLxFN;SAnimCurveS�S	DefaultD��C���SKeyVerI�+VuKeyTimelMh��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�WA
KeyValueFloatfM4\ҿ]ҿ,�ʿ-�Ŀ�	��&��/���NĿ��ƿȿǿvvĿ���R3��~��� /ÿ�}ǿl̿zп_ҿ�ѿ�ο��ʿ�ǿ��ÿ�W��S.��DT��U���k�ÿ��ſ�lǿ	ȿ�ǿ"uƿ�Ŀ8
ÿQ~���n��9��y�������"Ŀ;�ƿw�ɿsͿ��Ͽ�rѿ^ҿ\ҿ�rѿ
�ϿgͿt�ɿ=�ƿ*"Ŀ��������4���n��`~��R
ÿ�Ŀ)uƿ��ǿȿ�`ǿ�ſ�Lÿ�G���*��t���f¿��ſ��ʿr�п_ҿ�WKeyAttrFlagsi!�WKeyAttrDataFloatf

XKeyAttrRefCountiM,]AnimationCurveL�WN;SAnimCurveSzX	DefaultD�5@�XKeyVerI�+[�KeyTimelOx��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�\I
KeyValueFloatfO<���A���A���A;��A��A˨cA�IA5%5Ab$'Az"AX�&A�44A �GA͠_AO�yAljA帕A���AW?�A���A�:�A3�A�ҜASݔA���AVׁA�zoA��[A��IA�9A<)-A�$A{"A��#AA�)A�'2A�X=AQ�JAdYA$9iAO�yA���A$�A�R�A��A[��A_�A߸�A���A���A���A���AḧA`�A[��A��A�R�A$�A���AO�yA$9iAdYAP�JA�X=A�'2A@�)A��#Az"A�/%A�.A��;A��LA6aA��vAцA�A�֜A���A���A�\KeyAttrFlagsi!�\KeyAttrDataFloatf

]KeyAttrRefCountiO�^AnimationCurveL�FN;SAnimCurveS�]	DefaultD�?�]KeyVerI��]KeyTimel��F8�]
KeyValueFloatf�?^KeyAttrFlagsi!R^KeyAttrDataFloatf

^KeyAttrRefCounti�_AnimationCurveL�WN;SAnimCurveS�^	DefaultD�?�^KeyVerI�#_KeyTimel��F8N_
KeyValueFloatf�?x_KeyAttrFlagsi!�_KeyAttrDataFloatf

�_KeyAttrRefCountiLaAnimationCurveL8GN;SAnimCurveSB`	DefaultD�?Z`KeyVerI��`KeyTimel��F8�`
KeyValueFloatf�?�`KeyAttrFlagsi!aKeyAttrDataFloatf

?aKeyAttrRefCountiTfAnimationCurveL�UN;SAnimCurveS�a	DefaultD@�B)@�aKeyVerI�Sd�KeyTimelOx��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�eI
KeyValueFloatfO<rJArJA!]LA�OA�5RAbiUACvXAx
[AT�\Ae�]A�o]A#,]A�\A�
\A;[AZ�YA��WA��TA�'PArJAL�AA2�6A�!*A�9AN�
A6x�@���@���@ձ@���@�&�@3؆@n��@,r�@���@|\�@�@��@�F�@i{�@��A]�A�,A�)A��3A��<A��CAxHArJArJArJArJA>EJA��JA��KAb�LA!�MA
zOA
%QAU�RA=�TA'�VA�cXA�ZA�n[A�\A�B]Ae�]A|]A��[A}=ZA�XAw�UA�9SAo�PA�iNAQMLA�}JArJA�eKeyAttrFlagsi!fKeyAttrDataFloatf

GfKeyAttrRefCountiO\kAnimationCurveL�HN;SAnimCurveS�f	DefaultD � ��fKeyVerI�[i�KeyTimelOx��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�jI
KeyValueFloatfO<�g��g�r�������������б����u���]��0U� �[�=n��τ�
��O���9"��}o��82��O���g�����n�@��
�V��������u8�x������<���h����5��4���_z�������J�
���c�������p�����g��g��g��g�w���N��U����.��m�����j��
d���c��,ٙ��4��'��S�p���a��X��0U�p�Z�ƪi�	g���.���Z�����{�������d�����g��jKeyAttrFlagsi!"kKeyAttrDataFloatf

OkKeyAttrRefCountiOdpAnimationCurveL�GN;SAnimCurveS�k	DefaultD �@�kKeyVerI�cn�KeyTimelOx��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�oI
KeyValueFloatfO<�.�@�.�@��@r�@P��@�Q�@���@"X�@V��@�3�@w��@u��@��@.��@��@���@헇@��@��@�.�@8�@���@�X�@7CAC}4A�QAR�nA�;�A�ڑA"��A\�A���A���A��Aٚ�Aq֟AP�A(��A��A*�iAhPA
�6A��Aj�AT��@`�@�j�@�@�@�.�@�.�@�.�@�.�@8�@�$�@3��@���@���@ ;�@�y�@���@�p�@f��@kF�@�@���@�T�@�0�@�3�@d��@��@�@r�@��@=[�@e��@ϧ@���@^|�@�.�@�oKeyAttrFlagsi!*pKeyAttrDataFloatf

WpKeyAttrRefCountiO�qAnimationCurveL�UN;SAnimCurveS�p	DefaultD�?�pKeyVerI��pKeyTimel��F8&q
KeyValueFloatf�?PqKeyAttrFlagsi!�qKeyAttrDataFloatf

�qKeyAttrRefCounti$sAnimationCurveL�GN;SAnimCurveSr	DefaultD�?2rKeyVerI�[rKeyTimel��F8�r
KeyValueFloatf�?�rKeyAttrFlagsi!�rKeyAttrDataFloatf

sKeyAttrRefCounti�tAnimationCurveLxUN;SAnimCurveSzs	DefaultD�?�sKeyVerI��sKeyTimel��F8�s
KeyValueFloatf�?tKeyAttrFlagsi!JtKeyAttrDataFloatf

wtKeyAttrRefCountiXwAnimationCurveL�TN;SAnimCurveS�t	DefaultD���?�tKeyVerI�v
KeyTimel ���<0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�v�
KeyValueFloatf ����?i�?��?���?_C�?S#�?c�?��?f��?$`�?�?���?��?��?��?���?��?���?���?���?8��?6��?ѷ�?
X�?���?�t�?q�?g��?���?B�?8��?c'�?�vKeyAttrFlagsi!wKeyAttrDataFloatf

KwKeyAttrRefCounti �zAnimationCurveLIN;SAnimCurveS�w	DefaultD�� ��wKeyVerI�/yUKeyTimel)H� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�y�
KeyValueFloatf)���{���������Q�����R��m��u�A����E����Av	�JB��
����У��3����#��F?��|�|J���M��B���r�����g�<���(�ܕ	�J����������SE�A�A�$zKeyAttrFlagsi!^zKeyAttrDataFloatf

�zKeyAttrRefCounti)l}AnimationCurveL�TN;SAnimCurveS�z	DefaultD�`�Ͽ{KeyVerI�'|
KeyTimel ���<0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�|�
KeyValueFloatf �G�u�s�[w���}��4���6��v���?���%�����������žd]ξ��վ��۾=�߾]
��߾f�ܾ��׾��Ѿ�ʾ�����߸�����ꔦ�x��������$���쇾#�����|KeyAttrFlagsi!2}KeyAttrDataFloatf

_}KeyAttrRefCounti �~AnimationCurveLxIN;SAnimCurveS�}	DefaultD�?�}KeyVerI�~KeyTimel��F8.~
KeyValueFloatf�?X~KeyAttrFlagsi!�~KeyAttrDataFloatf

�~KeyAttrRefCounti,�AnimationCurveLXTN;SAnimCurveS"	DefaultD�?:KeyVerI�cKeyTimel��F8�
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�SN;SAnimCurveS��	DefaultD�?��KeyVerI�ÀKeyTimel��F8�
KeyValueFloatf�?�KeyAttrFlagsi!R�KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveL�JN;SAnimCurveS�	DefaultD C@��KeyVerI�#�KeyTimel��F8N�
KeyValueFloatf��@x�KeyAttrFlagsi!��KeyAttrDataFloatf

߂KeyAttrRefCountiL�AnimationCurveL�HN;SAnimCurveSB�	DefaultD`99�Z�KeyVerI���KeyTimel��F8��
KeyValueFloatf[���؃KeyAttrFlagsi!�KeyAttrDataFloatf

?�KeyAttrRefCounti��AnimationCurveLhSN;SAnimCurveS��	DefaultDw���KeyVerI��KeyTimel��F8�
KeyValueFloatf0�s�8�KeyAttrFlagsi!r�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL8JN;SAnimCurveS�	DefaultD�?�KeyVerI�C�KeyTimel��F8n�
KeyValueFloatf�?��KeyAttrFlagsi!҆KeyAttrDataFloatf

��KeyAttrRefCountil�AnimationCurveL8SN;SAnimCurveSb�	DefaultD�?z�KeyVerI���KeyTimel��F8·
KeyValueFloatf�?��KeyAttrFlagsi!2�KeyAttrDataFloatf

_�KeyAttrRefCountỉAnimationCurveL�IN;SAnimCurveSˆ	DefaultD�?ڈKeyVerI��KeyTimel��F8.�
KeyValueFloatf�?X�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiؐAnimationCurveLxRN;SAnimCurveS"�	DefaultD��$@:�KeyVerI���KeyTimelr���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K�#�K ���K���LI?7L�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_ڏ�
KeyValueFloatfr���%Am�&A3�%AY"A�\+As1)AcA��@&ŷ@�@p��@��@��A��	A���@�f�@�݂@��?@4g,@�6@߁�?�`?٪�?4K�@͘@��L@�
@�@a'@lbd@0��@�D�@Z��@�N|@��_@�@���@dZ�@��@F��@>��@�>�@	��?��O������U��F�W����-�������79����P�����q辿6�>G?�?���?��?w\��*��;�fFE�Q-�%�8?Drq@U8�@x�@��@$^�@�ϱ@\�.@�9>o�R���ɽ��f?M�?���?��|@�@.��@(�A`"A�'AC�4ANk'A��A
�,A �7A�i1A��A��A A��A��A�}A�yA��A��@~��@���@\,�@ӫ�@��@/A�@S*�@Г�@R�G@d�!@���?d�?�m�?o@��;@�!KeyAttrFlagsi!	!!	!!��]KeyAttrDataFloatfP









ː!KeyAttrRefCounti77�AnimationCurveL�KN;SAnimCurveS.�	DefaultD�^.�F�KeyVerI����KeyTimelr���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K�#�K ���K���LI?7L�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��
KeyValueFloatfr���p���u��u��昈�y��)Q��S&������u��>_�{�T�I�\�)�Y�S�F�U�-��r��7���K���1�����c�����e?�.g�P��p3�3x���
������и�Sm��-��C������S��OR��♸��6�����S�
���b����kY��?	C�@�"A4WA�\JA��A��@ƫ��vȜ�Qm��������E���>������O��u��&�������<+��ܙ��ɷQ��XW���`����"��s��t��X���%&�����[ӈ�V(����������R6���s�r����I����������.���Oj��6#��w���)a����¬�� F���������G�������9�������*|��_W��C���/��M�C���f�|b�������	����w�^u,��Ҧ�.�2���2��x!�)	j� �!KeyAttrFlagsi!	!!	!!��]KeyAttrDataFloatfP









ח!KeyAttrRefCounti77�AnimationCurveLHRN;SAnimCurveS:�	DefaultD`�,�R�KeyVerI���KeyTimelr���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K�#�K ���K���LI?7L�a�YLp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��
KeyValueFloatfr��d��x`y��)���I��?��>@	��@��A�As�@��@^�@����;Es� b�����9T����q�Z�a�Co��6��n����s��$=�寧?\��@�QAo� AQf9A3�ZA�*�A�m�A��AW�A$��A2��AQ�A.��A�ձA�9�AZ�1A)��@���@�A�@��@	5AAHaAwKA�nAj��@)o�@y�@-G�@/�@�u�@�'MA��Am�A�o�A�r	B�$B��B��A���Ag�A��A��A�'�AW̞AH"jA/*AF5A��fA�eqAC�SA�CQA"�tA�}Aз_AAZA'FdA��WA�VPA�PAFA�FA�oQA9=TAp�WAB2^A@lAa�wA�|bA�Z/A��A���@�Vi@
b@���?��?pWL?3p���-G��[r�lq���_ ���=�	���?�.�������K�u�t�I�U��,�!KeyAttrFlagsi!	!!	!!��]KeyAttrDataFloatfP









�!KeyAttrRefCounti77P�AnimationCurveL�JN;SAnimCurveSF�	DefaultD�?^�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?ܟKeyAttrFlagsi!�KeyAttrDataFloatf

C�KeyAttrRefCounti��AnimationCurveLRN;SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel��F8�
KeyValueFloatf�?<�KeyAttrFlagsi!v�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�;N;SAnimCurveS�	DefaultD�?�KeyVerI�G�KeyTimel��F8r�
KeyValueFloatf�?��KeyAttrFlagsi!֢KeyAttrDataFloatf

�KeyAttrRefCounti�AnimationCurveLXQN;SAnimCurveSf�	DefaultD���+@~�KeyVerI�x��KeyTimel��x�{PvpZ6����(-5���t

1���
͕K�Z�,%�qj:�lb��dEN'=��k�JV\��";v�
����$o����s�ǢP(��;�V���=ww����)~�w�]V��.����F�a�o��pr���(lo�����a��R6l#ۼ�Xݬ���kcYl�j2��6��0[j����G^⩱�k"�,MC,��ɰ�!��C�Ᏸ���H�D�B0v��c��B��f�E������I�l��0�������U�h��T��r�$.4�\dž���#n�r�2ޛ�3���8O�zP+����u���
���1�0���8sh�)�4:� Ӹ]�ŧ�cj���)w.Y|b��,����}A;Ɏm\)�o������b�����f��V2���Wvx��-��17���F��/*h[��c��!�bn�ʍ��ՅoEx.�i9�~ݧǪk��a��2��ޒ��l�l<��s�-�5A��-<����x�̫)������'؜�C.8��E�������~��g9z�2��	3�4���E��3o|�i:���%�����؜���ř�Z�������d{=�z��w�Ȇ�u��]����n�ػyy<�v�sj�b���<��iT���=|�]�����'�35{�q�$B�i�<��f���~�H��]��)�SC�-,ž����ɔ_]b�.i�v�o�b���$r۩�`lO����G��YV&�m�.�jA��Q�8��﷋�R�R�����
]�`�([D��f����x���?#W�h��#+���x�)d&{�~l�3��}�w���ӫS��G�ثWt�2FpA��&1��\�����[|92]?ӈ{�:�8��@��L
�c}��e{�b��0EWv�|�{J�‹KJ��g�1n��|�F�{k����9V�}�3�<7���nҴb���!������񨀽�:���VM������ w��
KeyValueFloatf����^A��ZA57A�)AMo�@+�$@�"��-���!4�1�{�*���H��@���c�����g��z���n�Ώ?�)�@��4A�U�A��Ai�ALm�A��BHB�Bd�A�_�A6r�A]��AeI�AF��A���A5��AG��As%�ARSA5�A(e�@��@.�r�k<��q6��v��|���#��K�
��8�|�%œV/���8�\p@���G�FO���U��W���O��6�qy!�J�
¼>��6{�������+��*�<�`����5N�".�?��@�SA�NA��RA�eSA�1DA�=3A8�A��A�=�@�P@�Ǵ���+��4��M��ž?�^f@։�@x�@�ۻ�
[����P���7���Y��S-���#��)1¿v	�5��b�������������m����]���3���S��+%��X4����0����"¬I2�$YBƒ�@�PR@‘�,†��=����Jm�E��'���f��H��@�R;.¼c9ˆ'Eƒh;²�'���«^��������*���Dq��g �� �������l��`I��)K�?O��f���C�����w-�>Ȱ�@�kAp�A�fPA{�wA2	�A���A-��Aw��A32B��A0��A��A���A���A�|A�A��@��@;:AR��AlO�A��A��
B��BO["BKZ/B�1Bl3Bm�(B�BmB0��A�ȻA���KeyAttrFlagsiy�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!٬;KeyAttrDataFloatf�.xc`�V^V^(L��G�c4= B`4?��Dj``M���E"��KeyAttrRefCountiy�ֺAnimationCurveL�?N;SAnimCurveSI�	DefaultD�v+�a�KeyVerI�[��KeyTimel��x�{PvpZ6����(-5���t

1���
͕K�Z�,%�qj:�lb��dEN'=��k�JV\��";v�
����$o����s�ǢP(��;�V���=ww����)~�w�]V��.����F�a�o��pr���(lo�����a��R6l#ۼ�Xݬ���kcYl�j2��6��0[j����G^⩱�k"�,MC,��ɰ�!��C�Ᏸ���H�D�B0v��c��B��f�E������I�l��0�������U�h��T��r�$.4�\dž���#n�r�2ޛ�3���8O�zP+����u���
���1�0���8sh�)�4:� Ӹ]�ŧ�cj���)w.Y|b��,����}A;Ɏm\)�o������b�����f��V2���Wvx��-��17���F��/*h[��c��!�bn�ʍ��ՅoEx.�i9�~ݧǪk��a��2��ޒ��l�l<��s�-�5A��-<����x�̫)������'؜�C.8��E�������~��g9z�2��	3�4���E��3o|�i:���%�����؜���ř�Z�������d{=�z��w�Ȇ�u��]����n�ػyy<�v�sj�b���<��iT���=|�]�����'�35{�q�$B�i�<��f���~�H��]��)�SC�-,ž����ɔ_]b�.i�v�o�b���$r۩�`lO����G��YV&�m�.�jA��Q�8��﷋�R�R�����
]�`�([D��f����x���?#W�h��#+���x�)d&{�~l�3��}�w���ӫS��G�ثWt�2FpA��&1��\�����[|92]?ӈ{�:�8��@��L
�c}��e{�b��0EWv�|�{J�‹KJ��g�1n��|�F�{k����9V�}�3�<7���nҴb���!������񨀽�:���VM������ Z��
KeyValueFloatf����[����P���'��%������[���'��?-šH2�hR7�%�;�Pe<��H,����s
…���$��F�������&���'��������v���1�+���h{>\ӫ@m�&AT�eA�EA���@�@F��N��=�S��*��Ä��		���9��$M�������\�������T���c�����G�����������8:������Wt��7,��,���'~��E�K=¥�"���)�Id/��2�M5��6�c�3¾.�w�&���ˆ0
�P���������Y�t���Uzo@�IA��hA���AW�A�E�AB�HB�=(B��.B�94B��4B�%5BN�7B*9B�9B#�8B2�5Bp\3B��.B 3)Be�B���A���A�a�A�kdA|��@��Ҿ���FM�#���.��B���`G��ay������8t��x���ʼ�zd��0���Sp�?:�4���E����>Ϗ7@��������x@��d�����z���E@���2��R���l������h]��O���h�������a���y���\���.	��¼_��d��h"�
�¤¥A����(��H8¡�K�]�Y��Cg��go�)w��&rºAd�ݾT�#nJ¥C�n>�@�=·&?¡D<��4��2&´���j������N���@���
9�~����,>dԃ@�nAY4PA��AGC�A%��A��Ad��KeyAttrFlagsiy�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!��;KeyAttrDataFloatf�.xc`�V^V^(L��G�c4= B`4?��Dj``M���E"ɺ�KeyAttrRefCountiy���AnimationCurveL�DN;SAnimCurveS,�	DefaultD�
L�D�KeyVerI�>��KeyTimel��x�{PvpZ6����(-5���t

1���
͕K�Z�,%�qj:�lb��dEN'=��k�JV\��";v�
����$o����s�ǢP(��;�V���=ww����)~�w�]V��.����F�a�o��pr���(lo�����a��R6l#ۼ�Xݬ���kcYl�j2��6��0[j����G^⩱�k"�,MC,��ɰ�!��C�Ᏸ���H�D�B0v��c��B��f�E������I�l��0�������U�h��T��r�$.4�\dž���#n�r�2ޛ�3���8O�zP+����u���
���1�0���8sh�)�4:� Ӹ]�ŧ�cj���)w.Y|b��,����}A;Ɏm\)�o������b�����f��V2���Wvx��-��17���F��/*h[��c��!�bn�ʍ��ՅoEx.�i9�~ݧǪk��a��2��ޒ��l�l<��s�-�5A��-<����x�̫)������'؜�C.8��E�������~��g9z�2��	3�4���E��3o|�i:���%�����؜���ř�Z�������d{=�z��w�Ȇ�u��]����n�ػyy<�v�sj�b���<��iT���=|�]�����'�35{�q�$B�i�<��f���~�H��]��)�SC�-,ž����ɔ_]b�.i�v�o�b���$r۩�`lO����G��YV&�m�.�jA��Q�8��﷋�R�R�����
]�`�([D��f����x���?#W�h��#+���x�)d&{�~l�3��}�w���ӫS��G�ثWt�2FpA��&1��\�����[|92]?ӈ{�:�8��@��L
�c}��e{�b��0EWv�|�{J�‹KJ��g�1n��|�F�{k����9V�}�3�<7���nҴb���!������񨀽�:���VM������ =��
KeyValueFloatf��8o`�k�U��J��>�3�+p%�؀�P��$M��y��+��ߙ���p��Պ��ؖ�,z�������r��dZ�zV��8&–f=��R�e�g–�z§y��B|�����I-����.[����
�~��"sd�)�T�2RE³&4�C2"��L�v���<�����������������͋���d�O�-�^I��7e�-\>Vm�@t�A>�xA
�A���A�S�AU��A��Af=A�5
AF�@�"�ι��H���Y����E՚�+�����xW��X6��q���
 ���c��[~��y���`���c���	���w$���K���T���2��O&��(K@^aA��%Aɕ�@5$L@�����#���"�~�z��?���������t�����!�G��l�����UG
¼��\���9���'���o��y
|�m,�����I����+•_+ŸYB���W�R�n��:�†���6���4j���q��77� ���ۄ�Bv��a��p`���m�]T{›��¥2��ݬ��������%o�A�]�ϰL�TH?�l�1��J%�W�²L��,���C»�L�ثV£nZ��R�K�S�l1[�77d�atp� �~�C���y���	�y��u�4�p»�d��Yš�P��`G¬�?�k�=��=���?��Bƒ�E�
�N�vBb�]vŸ���k~��!A��F��6ؕ�ä���P�¡��G��KeyAttrFlagsiy�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!��;KeyAttrDataFloatf�.xc`�V^V^(L��G�c4= B`4?��Dj``M���E"���KeyAttrRefCountiy��AnimationCurveL�PN;SAnimCurveS�	DefaultD�?'�KeyVerI�P�KeyTimel��F8{�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiy�AnimationCurveLh;N;SAnimCurveSo�	DefaultD�?��KeyVerI���KeyTimel��F8��
KeyValueFloatf�?�KeyAttrFlagsi!?�KeyAttrDataFloatf

l�KeyAttrRefCounti��AnimationCurveL(QN;SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel��F8;�
KeyValueFloatf�?e�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti1�AnimationCurveL�@N;SAnimCurveS/�	DefaultD|0�G�KeyVerI�g�KeyTimel��x�}<x����k�h
/��)q5!��d�tm�P�PMѣ�ʕ.�%)��k��z����8ǝ�DC��R*+��}����|t*��
Ej#)����ϐbe�B���A�E�|W��J�X`���)�V�MS�8?�	�X�a0��<��Mo{�g9nD�!�f���܉�PؕsYShQk���Zԗ�0�T���T?�Td1��Po��I4<^'��:ioat��E���-�5��s�ôNo�:��uPJ1�{y�{!��omPr �n�;��8�$��`��ܓEd�^���>@�����Q��T�1!�œ��>��?4�Md:����q�h���9�إ��잿��1��ѹ��f�e�Olv�@��N�^��K��Ns��>�|��kF0T��I�)����Z�Tջ��a��`�-W@����`�eY+<OU����up��������4�^���}�ˊX%L7��cq#�p��hF~��M�*h��.NK���������̃��bn�B���ma��\Z�fL�fV#�z�aսNdWA��̛�i��L���`H���o��lN=�G�ᅬ��Pk��.pq뀲�7�`�Q���-��Mz=����#�a�#P�
���_���7��7�@��g��.���b�sa�v�C��C-��86��M�eCE����Xl������~ı�bc��Pi##��a�Y�UP���9��B��j6,�������-�0��3:�CPT����DA5*������ZwA�� J�s��m��#m����ĦL�)
φ��8tk�{�K��!/�[�C��6]�R{��n$���R�<#��aX�	�!��O��ܸ
�\�	J��8�dI��{��#(.7胼@�+XN[��K���s�$��*䶞�@�l�‚fc9doP.��8��r<�D5��O��z�zs+G�?��&�S��G��j��7�i�@���TzW}���@����<�����w���\��D�������=�Fx0!~�,�C�|F�a{f/T�^��;Ց�0~_���K�u����!̾W���E�����ޢ@"�;�	��6�@�1tN]tfzNO@��:�M�.��2�r�5�G�%Sw+<05�
[��w���k�0�����DӚ�D�Xi�����<��s�1X_1�-<�D�T�k�*40�BDԱu�Bi�^0�gu+
R$�����$��-��5�:`Aa֊-ķ�;� ی{^P:ކ����[�na(Q��s���{	�衟`v�_@d
݀��G9(b��
KeyValueFloatf������s��AȀ�WK��6Q��.Ҙ��������
���k��ũ���ε�k������M`�����l^��P���������b^�y�	��Z
§'��T]������=�������#S��린����J���
D������?��+V��Y/V����]�:�5Ql��bv�}2��4����=�1���Z��s���������
�`I�WW(�o�/�$�7�
�*��\�F1����������:��-`��W��� �����������������������d���&™:<�aT���nƒ�������#��e��§����]�‹mÓ����
��c�N���m�u����y��d��j��`�	� 
�@��Ÿ���4��
5��*1� @��+����q��g����²؈�\���+u�c0]���I��:��M!��������������?T��@�6�U-���d���1@m��@�{-AA�7A��A�u�@���@�*�@�?@����&��ۥ��Y���x'�d�P�*�x����>8���F����r¢A�ӷ)��@�{�T�P�e�U�t�D������A��������������i���
��o�¬���0ϰ�1�¼u����Qp��˺�¹���0����ªv��H��:������j���I�������h��z���
����E��e/��ܹ������&����� �›�€���ŏ��R���5v��e�C�V­�I�~3�_"��t�����K���B����o��5R���ac���:���
��4��O������QJ���7���/�f�~��?��@�t�=y�&���>�͠@U�A-�A��A�2A��A�	�A;"PA�	Azo�@՝F@�mP@M��?V�,���!0�DD-�ok���?����>nщ@��A��9AǪ�A��A�V�A���AX�B1�B�0B©CB��!KeyAttrFlagsiE!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!��.KeyAttrDataFloatf!xc`�V^V^(L��G�c4= B`4?���	�$�!KeyAttrRefCountiE+

��AnimationCurveL�PN;SAnimCurveS��	DefaultD�
����KeyVerI���KeyTimel��x�}<x����k�h
/��)q5!��d�tm�P�PMѣ�ʕ.�%)��k��z����8ǝ�DC��R*+��}����|t*��
Ej#)����ϐbe�B���A�E�|W��J�X`���)�V�MS�8?�	�X�a0��<��Mo{�g9nD�!�f���܉�PؕsYShQk���Zԗ�0�T���T?�Td1��Po��I4<^'��:ioat��E���-�5��s�ôNo�:��uPJ1�{y�{!��omPr �n�;��8�$��`��ܓEd�^���>@�����Q��T�1!�œ��>��?4�Md:����q�h���9�إ��잿��1��ѹ��f�e�Olv�@��N�^��K��Ns��>�|��kF0T��I�)����Z�Tջ��a��`�-W@����`�eY+<OU����up��������4�^���}�ˊX%L7��cq#�p��hF~��M�*h��.NK���������̃��bn�B���ma��\Z�fL�fV#�z�aսNdWA��̛�i��L���`H���o��lN=�G�ᅬ��Pk��.pq뀲�7�`�Q���-��Mz=����#�a�#P�
���_���7��7�@��g��.���b�sa�v�C��C-��86��M�eCE����Xl������~ı�bc��Pi##��a�Y�UP���9��B��j6,�������-�0��3:�CPT����DA5*������ZwA�� J�s��m��#m����ĦL�)
φ��8tk�{�K��!/�[�C��6]�R{��n$���R�<#��aX�	�!��O��ܸ
�\�	J��8�dI��{��#(.7胼@�+XN[��K���s�$��*䶞�@�l�‚fc9doP.��8��r<�D5��O��z�zs+G�?��&�S��G��j��7�i�@���TzW}���@����<�����w���\��D�������=�Fx0!~�,�C�|F�a{f/T�^��;Ց�0~_���K�u����!̾W���E�����ޢ@"�;�	��6�@�1tN]tfzNO@��:�M�.��2�r�5�G�%Sw+<05�
[��w���k�0�����DӚ�D�Xi�����<��s�1X_1�-<�D�T�k�*40�BDԱu�Bi�^0�gu+
R$�����$��-��5�:`Aa֊-ķ�;� ی{^P:ކ����[�na(Q��s���{	�衟`v�_@d
݀��G9(���
KeyValueFloatf��m������C�|�F�-���W�����1������'s��>����������%�����	������S��0�����m������r��U�������G�������S'���)��	"�78�_y�ʿ��g���e��<K��	���ύ��Mp��)=�^��������������&`u�y��[���t�`~1���[�����������dp��'��&��;4�?eT©�i�b�y�
���Ӕ€��P1��⿧�`n��<�º��),����4Ȯ� ^�� ӯ²*�­h��G���8�����;��¯X�•��i��x5��E��KϪ�_Ԧ�U̠�꽚‚m�¨����R՝��o���Ӡ€���������\S�”���,���;��$��;��†Ť…��� <�¢��C0�‘p������F�����A4�Ÿ.��z��7����E��T��I��1Q��c,~�ijo�14]��m»|–K�����XY��Y���;)��d�‹?��uɖ����v���nʛ��w��H��閝��ӝ����r��ž�������ҋ��e��=��
���#w��7���š#��enm��X¥�>��'=�gj;“�G�tT��J]™�f�Tg�Zfh���h��Hi�S�n���s�J�}¬�|��=��R����†a������B���E��$��½{�›̜�.��›��"��.��h��•ܛ›b�‡ʚ���3a��#Ɨ½'�ª���b���R7��/d�…^��߄�H#��y�x���l�QX`�W}S�\�?²,�����œ�������V����	•���c������-������n8w��P���J��y���;���.������d�����7M�b��Z�j��k¤��������ck�����׏��WUl�S�?�����D���\>��Bѿ<�B��	w���!KeyAttrFlagsiE!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!?�.KeyAttrDataFloatf!xc`�V^V^(L��G�c4= B`4?���	�|�!KeyAttrRefCountiE+

��AnimationCurveL�AN;SAnimCurveS��	DefaultD�jkܿ��KeyVerI��KeyTimel��x�}<x����k�h
/��)q5!��d�tm�P�PMѣ�ʕ.�%)��k��z����8ǝ�DC��R*+��}����|t*��
Ej#)����ϐbe�B���A�E�|W��J�X`���)�V�MS�8?�	�X�a0��<��Mo{�g9nD�!�f���܉�PؕsYShQk���Zԗ�0�T���T?�Td1��Po��I4<^'��:ioat��E���-�5��s�ôNo�:��uPJ1�{y�{!��omPr �n�;��8�$��`��ܓEd�^���>@�����Q��T�1!�œ��>��?4�Md:����q�h���9�إ��잿��1��ѹ��f�e�Olv�@��N�^��K��Ns��>�|��kF0T��I�)����Z�Tջ��a��`�-W@����`�eY+<OU����up��������4�^���}�ˊX%L7��cq#�p��hF~��M�*h��.NK���������̃��bn�B���ma��\Z�fL�fV#�z�aսNdWA��̛�i��L���`H���o��lN=�G�ᅬ��Pk��.pq뀲�7�`�Q���-��Mz=����#�a�#P�
���_���7��7�@��g��.���b�sa�v�C��C-��86��M�eCE����Xl������~ı�bc��Pi##��a�Y�UP���9��B��j6,�������-�0��3:�CPT����DA5*������ZwA�� J�s��m��#m����ĦL�)
φ��8tk�{�K��!/�[�C��6]�R{��n$���R�<#��aX�	�!��O��ܸ
�\�	J��8�dI��{��#(.7胼@�+XN[��K���s�$��*䶞�@�l�‚fc9doP.��8��r<�D5��O��z�zs+G�?��&�S��G��j��7�i�@���TzW}���@����<�����w���\��D�������=�Fx0!~�,�C�|F�a{f/T�^��;Ց�0~_���K�u����!̾W���E�����ޢ@"�;�	��6�@�1tN]tfzNO@��:�M�.��2�r�5�G�%Sw+<05�
[��w���k�0�����DӚ�D�Xi�����<��s�1X_1�-<�D�T�k�*40�BDԱu�Bi�^0�gu+
R$�����$��-��5�:`Aa֊-ķ�;� ی{^P:ކ����[�na(Q��s���{	�衟`v�_@d
݀��G9(��
KeyValueFloatf��U[�q���
��?���@h2A�;=A�scA�LA���Abt�A�ͦAA��A�ASJ�A��BA+At#�@b��@]��@C�@���@N�A)�8A,�KA�‚A< �A���A2�Aݵ�Aܧ�A�A��Aͬ�A�
hA��KA*�5A�]!A�fA�Ar��@>�@���@���@j(�@^	x@G�o@S�p@�@xȐ@�خ@���@hCAҗEA&!�A)��A#}�A�P�A�f�A��A���A5�A��A�Av\�AX�
B%;B��*By�7B:�FB�BXBc*lB�b�Bz�B���B�?�B���B�T�B���Bm#�B �C�CC�>C��C'�!C.�%C�*C�e.C߫1C��3C: 0CY�,CT
*C`�&C�I#C'LC�C�@C�UC�GC�4C49Ch��BM��BCe�B���B���B�M�BI��B��Br��BCd�B���B/u�B���B�'�B��Bt>�B�}BEoB�L\B��QB�yFB��>B��0B٦?B·QB��bB�`sB�
�B�\�B ��B���B�c�B�ߩB��B��B{r�B���Bc�B���B%��B���Bg�B�C��C��C�qC��C%vC>�CV�#C�'C�Z,C�0C
�0C-[0CpP/C|�.C��-CP�-C�,Cd�,C�-Ch-C��-CB.Cד.C�C/CFD0C)T1C��0C!�.Ch.C^ -C�T+C��'C�~"C�CM�Cx�C�Ck
C
C7�C3�C�-�B��BZ�B�(�BXB�Bs:�B+�BF��B���B|i�B��B�H�BB1�B�u{B+aB��OBw�8B�%B
Bg��A���A֬�AQ�9A9PA�s�@��@砣@��@���?v?1̱�|�?���?(so@��@f`.ABzSA�?IA��]A5X�Ay�A���A�2�AIt�A��AL��A�"�A�&�Av�AA#WA�/AQ_A:��@�,*@����0�(���HF����������L�!KeyAttrFlagsiE!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!��.KeyAttrDataFloatf!xc`�V^V^(L��G�c4= B`4?���	���!KeyAttrRefCountiE+

A�AnimationCurveL�PN;SAnimCurveS7�	DefaultD�?O�KeyVerI�x�KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

4�KeyAttrRefCounti��AnimationCurveLx4N;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8�
KeyValueFloatf�?-�KeyAttrFlagsi!g�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLhPN;SAnimCurveS��	DefaultD�?�KeyVerI�8�KeyTimel��F8c�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�3N;SAnimCurveSW�	DefaultD�4�o�KeyVerI�X��KeyTimely���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K�#�K ���K�a�YLp�k�L_/M���lMh\��M�y$Nd�[RN�Y=�N�N`��NW�7O�Շ�O�i�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U,�d�U��FV*�7V��@V(<
cV��yVQkd�Vк;V#z��Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_c��
KeyValueFloatfy��(��.�\�"��>��w㿸����M��A���z"����>��?�fp>�����߽�`��8��_\��RI�Q�O�I�C��}&�@���m�¿�k��j�ܾ�q�q��<]�=bCȽѲ��۾ǻ�j��b�$�_
'�^t.�[�i6$���6�:|2���.��%������)�HQ!��%��̦�������R�۠���>r�?���?JL�?~|�>�����m-�\�߾0]���o���I��d���ң�����?F�?
5z@�e�@y�?��0�-��,�� A�d�X�1IV��YB�p''���ז�鏖����s>���?��|Z��$R�<�"�rݿ���E0����VR�������=7(%>b�U?[U�?��p@=�4@���?kR�?���?WX�?���?���?�E�?���?@z�?y��?�P?P�)?���>�a�>���>5,'?O�?�A@%5\@P�@(Q�@ ��@��QKeyAttrFlagsiD!	!!	!!	!!	!!	!!	!!	!!	!!�KeyAttrDataFloatfD

































t�QKeyAttrRefCountiD7AnimationCurveL(NN;SAnimCurveS��	DefaultD��)!@��KeyVerI���KeyTimely���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K�#�K ���K�a�YLp�k�L_/M���lMh\��M�y$Nd�[RN�Y=�N�N`��NW�7O�Շ�O�i�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U,�d�U��FV*�7V��@V(<
cV��yVQkd�Vк;V#z��Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��
KeyValueFloatfy��M	A�
AZ�A!f�@�o�@��7@o3�?X�>V�T��p���0�ԁѿ.+[�����$��?D�c@T��@��1A�HFA��<A־A���@�B�@E�f@?9�?a��;�U�r�m��a8��}���>T���}���g�9�3��ē�ǫ�>�/N?�yC������߾Mhξ���?��@]�*A�}UA�]yA�K�A3#eA(�AR�6@�ѿ��'�[���B�������8�F��@x�@�i@[��@���@���@�`�@���@�?At|AQЖA�nYA*�*A���@N��@0G�@�yU@�8@o$�@V�@�7�@˜�@5?�@w�z@j��?�Ώ�z��7���q�H�7�WLK>���?�I�?�zM@�-�@i��@���@��}@Q>3>�:`����Ų��G������R�������
��D���k+������:���v���@��`I���Ӑ�����9�o�����y���m���:����Ӱ�̔��MQKeyAttrFlagsiD!	!!	!!	!!	!!	!!	!!	!!	!!�KeyAttrDataFloatfD

































�QKeyAttrRefCountiD7�
AnimationCurveL�DN;SAnimCurveSW	DefaultD@�C�oKeyVerI�X	�KeyTimely���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K�#�K ���K�a�YLp�k�L_/M���lMh\��M�y$Nd�[RN�Y=�N�N`��NW�7O�Շ�O�i�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U,�d�U��FV*�7V��@V(<
cV��yVQkd�Vк;V#z��Vx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_c�
KeyValueFloatfy���,(��
��?R�b@��@S��@���@_�@Qk@��,@5�@�.@��@MJ�=�&��ȶ���������m���|�$��a|?�7{@���@�%�@��AeQA!O$A#<"A33A��NA�UA?�UA�YA��WA��KA�E6A��
AlA�@��&@�Fпmc���0����ο�u�@G;A��A���A��AˊA
)�A�ۖA���A�|A�7A���A~G�Aca�A�Y�A�&�A��
B%)B�QFB�ZB�hoB��~B���B8��B[��BZBqB"�aBq3LB�=Be�2B
i3BǼ2B(�4BN�8B�e0BDQB�BctB��#B�H"B��B�8B*�GB$23B�B|�
B�k�A���A�D�A��0A~��@N>��b#���g�������������\�[z?�Y�'@�g�@<�@���@(��@0L�@���@��@�r�@��@���@��F?qT�=3����A�[ޒ�����^����QKeyAttrFlagsiD!	!!	!!	!!	!!	!!	!!	!!	!!
KeyAttrDataFloatfD

































t
QKeyAttrRefCountiD7�AnimationCurveL�NN;SAnimCurveS�
	DefaultD�?�
KeyVerI�KeyTimel��F8C
KeyValueFloatf�?mKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiAAnimationCurveL�KN;SAnimCurveS7	DefaultD�?OKeyVerI�xKeyTimel��F8�
KeyValueFloatf�?�KeyAttrFlagsi!KeyAttrDataFloatf

4KeyAttrRefCounti�AnimationCurveLX<N;SAnimCurveS�	DefaultD�?�KeyVerI��KeyTimel��F8
KeyValueFloatf�?-KeyAttrFlagsi!gKeyAttrDataFloatf

�KeyAttrRefCountimAnimationCurveLȜM;SAnimCurveS�	DefaultD �$@KeyVerI��]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�5
KeyValueFloatfJ(	%	@	%	@t��?EY�?�ǀ?�?f4>!�j��ˈ����=z�>6qh?��?>��?p&@�yL@�tq@��@m_�@�^�@���@���@&��@N�@���@�6A��A�rA�AM�AZA��A�Am�A�A��A���@���@s��@}�@���@N�@W֑@��@��]@�,>@�!@	%	@���?�F�?�ݖ?�Pg?��'?L��>5��>���=�N/�/K��ʈ��@���ۈ��܈���Vg�w>|�?M+�?H�?$f@��8@��`@T�@rz�@m_�@�KeyAttrFlagsi!3KeyAttrDataFloatf

`KeyAttrRefCountiJ9AnimationCurveL�M;SAnimCurveS�	DefaultD`p�-��KeyVerI�L]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�5
KeyValueFloatfJ(��l���l�(�p�� v�u�{����n���d����v��p
���u�����,�{�L�t�f�l�]�d��.\���S�9L�E�~�=���5��>-�%R$�[Y�(���U
���������8��g��� �������������
��Ȃ��
�v���g&���/���9���C�yZM��jV�'�^��;f���l�R�q��v�1
{���~����7���A��
��f�����o
��r
��p
��p
��#h���������l�x��q��\h��m_��V�:N�¶F�E��KeyAttrFlagsi!�KeyAttrDataFloatf

,KeyAttrRefCountiJ AnimationCurveL(�M;SAnimCurveS�	DefaultD���<��KeyVerI�]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_g5
KeyValueFloatfJ(_��_���0�������E���Q������?���,��fS��YD���������������r������w����S¤h�
�«��m��E�!��'�[�-�ɽ3²O9�[W>��BŸFpH�ɎI��BI�f�G�t�D�{�@�R<���6„�0�{�*�D�#�C�·�����g7�œ����m��_��Gm�����[��uM��i���pP��<s���b��"'���ɳ�fS��eS��fS��fS��P��I޺�>b��z@��\��������������E	��Y�
�‘KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiJe!AnimationCurveLh�M;SAnimCurveS[ 	DefaultD�?s KeyVerI�� KeyTimel��F8� 
KeyValueFloatf�?� KeyAttrFlagsi!+!KeyAttrDataFloatf

X!KeyAttrRefCounti�"AnimationCurveL82N;SAnimCurveS�!	DefaultD�?�!KeyVerI��!KeyTimel��F8'"
KeyValueFloatf�?Q"KeyAttrFlagsi!�"KeyAttrDataFloatf

�"KeyAttrRefCounti%$AnimationCurveLXZN;SAnimCurveS#	DefaultD�?3#KeyVerI�\#KeyTimel��F8�#
KeyValueFloatf�?�#KeyAttrFlagsi!�#KeyAttrDataFloatf

$KeyAttrRefCountiE&AnimationCurveL�M;SAnimCurveS{$	DefaultD@FD@�$KeyVerI�<%�KeyTimel�@K8<��<0�^>ؔ��>x��)@ u�@���AX�vD���D���AFHwp�F@�G�q~H�l�{I�&B\P�{\@���^�%Q
KeyValueFloatfD�J�@�@�@��@��@柡@ċ�@�N�@9#�@?1�@��@_��@c֡@e�@1"�@&U�@�O�@���@�%KeyAttrFlagsi!&KeyAttrDataFloatf

8&KeyAttrRefCounti	*AnimationCurveL��M;SAnimCurveS�&	DefaultD�@b�?�&KeyVerI�t(�KeyTimel4���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?���?x��)@p�<A�|b.EP�%�EHwp�F��3�F@�G�q~H8o�H�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_k)�
KeyValueFloatf4��?�?�\�?@e�?�R�?3L�?z�?X�?�?!��?SF�?�X�?�ߩ?���?���?��?홱?�5�?�f�?�ô?|�?޵?u��?���?:�?� �?���?�Ҵ?�a�?Ë�??ز?���?ܞ�?a�?>�?�X�?
��?:�?�ߨ?	ʧ??�?�?;̧?d�?pV�?6��?�í?���?�l�?�$�?Z��?��?�)KeyAttrFlagsi!�)KeyAttrDataFloatf

�)KeyAttrRefCounti4�.AnimationCurveL؛M;SAnimCurveS_*	DefaultD@�K<�w*KeyVerI��,]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_7.5
KeyValueFloatfJ(^��^�������������.M���J���f��剮���������xH���K��
������׍��\>����5�	†F�Ɂ��@�QV ��&¸�,��2�׃8¾�=…B��E›�G�]I���H�24G�?jD�v�@�E�;��6�@�0�=*�nQ#�>T�G�OL�b�±�EE��>���^���C������7�����������K(��%��&��'���������������������Ϟ��<��6ֿ��������c�����S�W����
…F�a.KeyAttrFlagsi!�.KeyAttrDataFloatf

�.KeyAttrRefCountiJ50AnimationCurveL��M;SAnimCurveS+/	DefaultD�?C/KeyVerI�l/KeyTimel��F8�/
KeyValueFloatf�?�/KeyAttrFlagsi!�/KeyAttrDataFloatf

(0KeyAttrRefCounti�1AnimationCurveLx�M;SAnimCurveS�0	DefaultD�?�0KeyVerI��0KeyTimel��F8�0
KeyValueFloatf�?!1KeyAttrFlagsi![1KeyAttrDataFloatf

�1KeyAttrRefCounti�2AnimationCurveLH�M;SAnimCurveS�1	DefaultD�?2KeyVerI�,2KeyTimel��F8W2
KeyValueFloatf�?�2KeyAttrFlagsi!�2KeyAttrDataFloatf

�2KeyAttrRefCounti�6AnimationCurveL��M;SAnimCurveSK3	DefaultD`,a
@c3KeyVerI�5�KeyTimel0���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�5�
KeyValueFloatf0�c	S@b	S@�Yc@M�u@+��@}B�@ݖ@�۝@G��@�G�@Ģ�@�,�@(��@[��@i�@ko|@�ql@�E_@�TV@]	S@\	S@d	S@d	S@��U@6J]@P�h@6bv@��@.�@f��@���@�)�@��@�G�@YG�@G�@�G�@j7�@�>�@���@��@�&�@$Ї@H3�@�Gq@H�b@y�U@\	S@6KeyAttrFlagsi!O6KeyAttrDataFloatf

|6KeyAttrRefCounti0:AnimationCurveL�M;SAnimCurveS�6	DefaultD�M��?�6KeyVerI��8�KeyTimel0���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_9�
KeyValueFloatf0�l�
?i�
?��)?�J?��k?�R�?�,�?z?�?t\�?6T�?~�?�ʡ?Nq�?���?�Ks?IEU?ϫ9?��"?΁?`�
?c�
?h�
?i�
?
�?<�?��2?s�J?�e?Y��?��?�ԙ?
��?T��?6T�?�S�?7T�?7T�?�~�?^�?т�?�|�?�܇?�dv?n\?WB?M;)?R�?b�
?�9KeyAttrFlagsi!�9KeyAttrDataFloatf

:KeyAttrRefCounti0�=AnimationCurveLhYN;SAnimCurveSs:	DefaultD�V�1��:KeyVerI�,<�KeyTimel0���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_=�
KeyValueFloatf0��
���
���������IJ��T��;������"A�������\�� ��K���oA���ߵ��}�����%���gb���
���
���
���
������OU���P��F/��J/��ݏ�����On���i�����������������������0������x���1�������&��1P������LV���!���
��==KeyAttrFlagsi!w=KeyAttrDataFloatf

�=KeyAttrRefCounti0?AnimationCurveL��M;SAnimCurveS>	DefaultD�?>KeyVerI�H>KeyTimel��F8s>
KeyValueFloatf�?�>KeyAttrFlagsi!�>KeyAttrDataFloatf

?KeyAttrRefCountiq@AnimationCurveL��M;SAnimCurveSg?	DefaultD�??KeyVerI��?KeyTimel��F8�?
KeyValueFloatf�?�?KeyAttrFlagsi!7@KeyAttrDataFloatf

d@KeyAttrRefCounti�AAnimationCurveLh2N;SAnimCurveS�@	DefaultD�?�@KeyVerI�AKeyTimel��F83A
KeyValueFloatf�?]AKeyAttrFlagsi!�AKeyAttrDataFloatf

�AKeyAttrRefCounti�FAnimationCurveL��M;SAnimCurveS'B	DefaultD`��??BKeyVerI��DUKeyTimelIH��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�E1
KeyValueFloatfI${��?{��?���?FQw?��V?b$7?R�?`M?tx�>��?�C?7�2?
_W?L&�?Sɘ?���?%��?��?�B�?P]@U�@W�@��$@f�/@�;@��E@�P@�YY@$Fa@2�g@s�k@�m@xm@c�i@�1d@��\@��S@o�I@�J>@82@7�%@b�@��@���?G��?���?���?�ħ?{��?9��?�Ay?��a?�L?��9?��)?Ip?��?�1
?Z�?��?��?��?�?�B?�.>?��e?F�?�!�?�n�?���?z��?,�@Q]@FKeyAttrFlagsi!WFKeyAttrDataFloatf

�FKeyAttrRefCountiIQKAnimationCurveLX�M;SAnimCurveS�F	DefaultD�����FKeyVerI�hIUKeyTimelIH��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�J1
KeyValueFloatfI$f���g���/���E����������Y�������������x��a������S���m���d����Z��A2���O���ަ��?�����������،�U����B}��p���c���Y�M1Q��GK�i=H��H�p�K���Q�oQZ�g�d�W�p�b:~�So��N-���/��JN���^���5��T���A������g�����������������{���gn�������G��'�������������5���Q��y ������^����+��oq��x׳�����ަ��JKeyAttrFlagsi!KKeyAttrDataFloatf

DKKeyAttrRefCountiIPAnimationCurveL(�M;SAnimCurveS�K	DefaultD�9��KKeyVerI�0N]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_O5
KeyValueFloatfJ(p���p���0����L��S(���O��`���6��)c��A��� z�����p��������5������C�����8 �sz�|��Oy���K��D-$¡G*�0�R45��9�n6=�}�?®�@¨�@�L�>��<ƒ58«x3—�-•�'��Y!��w�d�
CŠ6�����j���L���"!��p���.���ԏ������������ ��ib���n���K��g���A���:���A���A����������0����W������}����������_*��8�sz©OKeyAttrFlagsi!�OKeyAttrDataFloatf

PKeyAttrRefCountiJ}QAnimationCurveLȖM;SAnimCurveSsP	DefaultD�?�PKeyVerI��PKeyTimel��F8�P
KeyValueFloatf�?	QKeyAttrFlagsi!CQKeyAttrDataFloatf

pQKeyAttrRefCounti�RAnimationCurveL�M;SAnimCurveS�Q	DefaultD�?�QKeyVerI�RKeyTimel��F8?R
KeyValueFloatf�?iRKeyAttrFlagsi!�RKeyAttrDataFloatf

�RKeyAttrRefCounti=TAnimationCurveL�M;SAnimCurveS3S	DefaultD�?KSKeyVerI�tSKeyTimel��F8�S
KeyValueFloatf�?�SKeyAttrFlagsi!TKeyAttrDataFloatf

0TKeyAttrRefCounti�XAnimationCurveL��M;SAnimCurveS�T	DefaultD�G��?�TKeyVerI��V
KeyTimel@��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLP�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�W

KeyValueFloatf@?��??��?0��?if�?���?�U�?���?<��??��?�{�?��?��?�9�?/��?���?$��?_L�?k:�?�A�?�H�?�.�?���?��?;f�?��?���?���?���?��?�J�?��?�+�?�?�'�?{b�?Ʒ�?w�?���?���?#U�?��?���?���?���?��?��?�+�?���?+;�?fA�?K�?�L�? :�?��?}��?t��?D�?��?-&�?�_�?���?���?!�?m��?XKeyAttrFlagsi!WXKeyAttrDataFloatf

�XKeyAttrRefCounti@	]AnimationCurveL��M;SAnimCurveS�X	DefaultD`ܥ�?�XKeyVerI�8[%KeyTimelC��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_k\
KeyValueFloatfC�.M?�.M?�J?�:F?B1B?O?>?�:?%9?(D8?S�8?@:?ͪ<?6�??�RC?�H?
M?��Q?><V?�~Y?/N\?��^?��a?,�d?��g?[�j?zkm?��o?hr?��s?�eu?�av?�v?�u?�xs?Ȉq?�;o?�l?��i?ďf? >c?��_?]S\?�X?��U?*_R?_O?��L?��J?�$H?�QE?�B?�@?)�=?�;?�e9?�8?3g8?�:?�<?m@?��D?�I?%�N?цS?X?Y5[?�[?�\KeyAttrFlagsi!�\KeyAttrDataFloatf

�\KeyAttrRefCountiC�aAnimationCurveL��M;SAnimCurveS_]	DefaultD`�S<�w]KeyVerI��_]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_7a5
KeyValueFloatfJ(���������
������L<��}Ӿ�-���렰�i���H�������z�����������d���m�������-�U>
���.��e��� ®A'™�-�B�3�[9�}�>���B´{F�Y�H�>J���I�*H–YE��A��<�Q`7ˆS1�[�*�u�#„��1��)���¦d�������������f������߱��L������E���W~���-������.C��T���U���W���X����˰��~���:���^���I��4[�������7�]��J���aaKeyAttrFlagsi!�aKeyAttrDataFloatf

�aKeyAttrRefCountiJ5cAnimationCurveL�M;SAnimCurveS+b	DefaultD�?CbKeyVerI�lbKeyTimel��F8�b
KeyValueFloatf�?�bKeyAttrFlagsi!�bKeyAttrDataFloatf

(cKeyAttrRefCounti�dAnimationCurveL�N;SAnimCurveS�c	DefaultD�?�cKeyVerI��cKeyTimel��F8�c
KeyValueFloatf�?!dKeyAttrFlagsi![dKeyAttrDataFloatf

�dKeyAttrRefCounti�eAnimationCurveL��N;SAnimCurveS�d	DefaultD�?eKeyVerI�,eKeyTimel��F8We
KeyValueFloatf�?�eKeyAttrFlagsi!�eKeyAttrDataFloatf

�eKeyAttrRefCounti�iAnimationCurveL(*N;SAnimCurveSKf	DefaultD���?cfKeyVerI�h�KeyTimel0���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�h�
KeyValueFloatf0��?�?�ܲ?��?S��?���?N��?�+�?|(�?��?kE�?���?���?{��?���?c��?|��?�Ư?,��?�?�?�?�?���?F�?�Ķ?�=�?��?���?�n�?U��?v�?���?��?���?��?��?+"�?F��?g��?"J�?C9�?�:�?���?Gd�?y��?���?�?iKeyAttrFlagsi!OiKeyAttrDataFloatf

|iKeyAttrRefCounti0mAnimationCurveL�&N;SAnimCurveS�i	DefaultD�W$�?�iKeyVerI��k�KeyTimel/x��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_sl�
KeyValueFloatf/��"�>�"�>CD�>��>Ļ?*6 ?��/?1�<?�ME?�oH?bqE?�O=?�M1?�"?+�?��?�
�>��>p9�>�"�>�"�>��>�"�>J3�>W�>���>�[�>�e?�?�9(? �4?�??��E?�oH?[{H?�oH? �F?�A?��8?�,.?1�!?c?�e?���>�x�>ʐ�>�"�>�lKeyAttrFlagsi!�lKeyAttrDataFloatf

mKeyAttrRefCounti/�pAnimationCurveLX'N;SAnimCurveSgm	DefaultD��1�mKeyVerI� o�KeyTimel0���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_p�
KeyValueFloatf0�gp��gp���6��不�ܾ�����U���[��3���[��d���4���i���v�����CT���Ǡ�)E��ѐ�fp��gp��gp��fp���j���֕���L���y����������(���s����`��[��[��[��[��r���>����������������1���1���E��A��6���gp��1pKeyAttrFlagsi!kpKeyAttrDataFloatf

�pKeyAttrRefCounti0rAnimationCurveL�%N;SAnimCurveS�p	DefaultD�?qKeyVerI�<qKeyTimel��F8gq
KeyValueFloatf�?�qKeyAttrFlagsi!�qKeyAttrDataFloatf

�qKeyAttrRefCountiesAnimationCurveL�%N;SAnimCurveS[r	DefaultD�?srKeyVerI��rKeyTimel��F8�r
KeyValueFloatf�?�rKeyAttrFlagsi!+sKeyAttrDataFloatf

XsKeyAttrRefCounti�tAnimationCurveLh,N;SAnimCurveS�s	DefaultD�?�sKeyVerI��sKeyTimel��F8't
KeyValueFloatf�?QtKeyAttrFlagsi!�tKeyAttrDataFloatf

�tKeyAttrRefCounti�yAnimationCurveLX6N;SAnimCurveSu	DefaultD�*�3uKeyVerI��w]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�x5
KeyValueFloatfJ(T��T��_B���翧�οF���e}���8��H臿���������Y��(�����οX����@�0��c�+�k$5��y=�BF��N�q�V��_���f��m���s�*�x�̪|�U>��(�����/~}���y�>u�1+o�ERh�K�`�ZaX��O��jF�=���3�4I*�23!����c�S������!�v�Юѿ�Y�����;������������������գ�����������‹�&G��P꨿5e���pٿa���8�	�S�E�%��S2�k$5�yKeyAttrFlagsi!WyKeyAttrDataFloatf

�yKeyAttrRefCountiJ]~AnimationCurveLH:N;SAnimCurveS�y	DefaultD@�;�?�yKeyVerI�p|]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�}5
KeyValueFloatfJ(��A?��A?��q?��?yn�?� �?��?:p�?m&@��@_j@7��?���?X��?{�?�^{?��:?Q��>��>�6�=���RZ@�������.$���G�N�h��Ղ����ټ��SG��-U��_~��!휿vH���䊿T.|��h^�j"=���:n�%���7�����<��=>�!�>]'�>8� ?��A?7�c?���?��?��?�=�?�O�?��?.O�?	��?��@��@��@��@��@��@L��?W�?
��?F�?���?�_?�?L��>	�&>�6�=�}KeyAttrFlagsi!#~KeyAttrDataFloatf

P~KeyAttrRefCountiJ)�AnimationCurveL�)N;SAnimCurveS�~	DefaultD���;��~KeyVerI�<�]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��5
KeyValueFloatfJ(��������ob��.D���n��K���=��B]��Df��+���a�����k�����������i��)�����¿�
š2�O&�_�ձ%���+‡�1¶�7­�<™�@¡hD���F¶�G��G�8�E��,C�4k?�?�:�#t5���/��)��P"�V§Eµ@
�Zh�g���ȃ��l�����������������xӼ��������0>��b�������ڞ�+��+��+��+��[�������i��Bμ��,��x������)��T:�q¿�
µ�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiJ��AnimationCurveL,N;SAnimCurveS�	DefaultD�?��KeyVerI���KeyTimel��F8�
KeyValueFloatf�?�KeyAttrFlagsi!O�KeyAttrDataFloatf

|�KeyAttrRefCounti�AnimationCurveL�)N;SAnimCurveS߄	DefaultD�?��KeyVerI� �KeyTimel��F8K�
KeyValueFloatf�?u�KeyAttrFlagsi!��KeyAttrDataFloatf

܅KeyAttrRefCountiI�AnimationCurveL�*N;SAnimCurveS?�	DefaultD�?W�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?ՆKeyAttrFlagsi!�KeyAttrDataFloatf

<�KeyAttrRefCounti�AnimationCurveL�MN;SAnimCurveS��	DefaultD���鿷�KeyVerI�Ȉ�KeyTimel��+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;@K8<��<8��K=x��)@ u�@p�<AP�%�E�y��EHwp�F��3�F@�G�q~H���I��֎J(g��J��]FKxd!�K ���K�a�YLH!P�]��]@���^g��
KeyValueFloatfx|�N�N�M��L��tJ���H�6PG��F�%E�ʍE�M�F�7I�NI��DH���F���E���F�RgH�CI�f�J���K�A�M�v�M�F�L��BK���I��@H���F�֎G�'sH��'J���KeyAttrFlagsi!ˉKeyAttrDataFloatf

��KeyAttrRefCountiQ�AnimationCurveL�$N;SAnimCurveS[�	DefaultD��ֿs�KeyVerI��]KeyTimel*P�+��8X�k�8)/Z9���9P&�:��ym:�#=�:@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?���?x��)@Ȍ8�@�y��E���AF��3�F�t�TG�q~H��AhH���I�l�{I��֎J(g��J��]FKxd!�K ���K�a�YLP�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_���
KeyValueFloatf*�8ﶾ����y������_椾.����E���-�������H��<��:>�����-@���@��G黾l��#�����þ�ľ�{¾�������k-���A��
���!"��r����D�������?��	���7�������\�����w����ѱ�Ul��
պ�uϼ�݌KeyAttrFlagsi!�KeyAttrDataFloatf

D�KeyAttrRefCounti*�AnimationCurveLh)N;SAnimCurveS��	DefaultD@�@���KeyVerI�0�]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�5
KeyValueFloatfJ(���������߿�����*����������g6��	���+.��`>���6���]��]����)�dX�,€H��P%���*�}�0F7�,�=�S�C��I�;�O���T�?�X�
U\�Y�^�+�_�x_¢�]©[�=PW��R´^M��mG�XA¡?:�uC3�{/,�]$%��B�^���~�������O�rt�����0�������-����T��y��!��#��������������������������B�������e�¡�P}�{¤�#��P%©�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiJ}�AnimationCurveL�$N;SAnimCurveSs�	DefaultD�?��KeyVerI���KeyTimel��F8ߒ
KeyValueFloatf�?	�KeyAttrFlagsi!C�KeyAttrDataFloatf

p�KeyAttrRefCountiݔAnimationCurveL�-N;SAnimCurveSӓ	DefaultD�?�KeyVerI��KeyTimel��F8?�
KeyValueFloatf�?i�KeyAttrFlagsi!��KeyAttrDataFloatf

ДKeyAttrRefCounti=�AnimationCurveL�pN;SAnimCurveS3�	DefaultD�?K�KeyVerI�t�KeyTimel��F8��
KeyValueFloatf�?ɕKeyAttrFlagsi!�KeyAttrDataFloatf

0�KeyAttrRefCounti��AnimationCurveL�dN;SAnimCurveS��	DefaultD�CΎ�KeyVerI�,�mKeyTimel,`��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��
KeyValueFloatf,�&
�!
��3�_k�[%�An.�W�6�ѷ=�&OB���C�,bB��>���7��/��4'����=���-���;
�
�0u�P1�?������C#� #+���2���9���>���B���C���C�3�B��@�ؙ;�K�5�aN/��(��� �F�	��u��=
�-�KeyAttrFlagsi!g�KeyAttrDataFloatf

��KeyAttrRefCounti,��AnimationCurveL�mN;SAnimCurveS��	DefaultD�4ƿ�KeyVerI���eKeyTimel+X��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_[��
KeyValueFloatf+�ȧ1�ۧ1�CH��ua��|�Q��)���u,��뇦��ڨ�?�������I���pٌ�����Oj��uT�bmB�W,6��1�ͧ1��i5�#�?�=O�sb��$w��t��
���Z���>���ڨ�k��g���=���^��E9��i=��O�o�*[�:lG�K�5�ڧ1���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti+��AnimationCurveL8N;SAnimCurveSO�	DefaultD@��6�g�KeyVerI���KeyTimel0���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��
KeyValueFloatf0�z���z�������|���"��O��`���D���
¡���6���Q���`���o����������L��z���z���z���z���᰸��F������7����n���R��P����"���=�X�
�
�
�
�\B�������������������b���#���u��|ָ�z����KeyAttrFlagsi!S�KeyAttrDataFloatf

��KeyAttrRefCounti0�AnimationCurveL�pN;SAnimCurveS�	DefaultD�?��KeyVerI�$�KeyTimel��F8O�
KeyValueFloatf�?y�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiM�AnimationCurveL�sN;SAnimCurveSC�	DefaultD�?[�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?٢KeyAttrFlagsi!�KeyAttrDataFloatf

@�KeyAttrRefCounti��AnimationCurveL(N;SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel��F8�
KeyValueFloatf�?9�KeyAttrFlagsi!s�KeyAttrDataFloatf

��KeyAttrRefCountiy�AnimationCurveL�lN;SAnimCurveS�	DefaultD���KeyVerI���]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_ۨ5
KeyValueFloatfJ(�p���p�����(���|���z����Z�*>�_Q.��.��?���\����4��佲��]������f�$��c����)[%�M.��6��
?��G��XN���T�!WZ���^��ua�۳b�#b�7�_��\���V�?�P�@yI��qA���8���/��&��r�i���M	�R#�����4����p��v��Jг���2��9����u���^���J���;��12���.���.��.���.�e6��K�J:l��������/���a��`�������c���KeyAttrFlagsi!?�KeyAttrDataFloatf

l�KeyAttrRefCountiJE�AnimationCurveL�lN;SAnimCurveSϩ	DefaultD��"@�KeyVerI�X�]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��5
KeyValueFloatfJ(�A�Ap!A��,A�A9AN.EA�OA��WA)�[A�t[AdPVA�MA�LBA4�4A��%ADlAC�A�
�@��@n>�@��@C�@��t@z�D@�S@���?�$v?Ct�>7�
���	��LP���q�-i���8��g;��
=+?Ҿ�?��?��(@�x[@H�@!��@��@��@��@ѡA�MA�A-~ A�G)A��1A�-:A��AAx�HA�(OAIETA�$XA5�ZA�t[A�t[A�t[A�t[A|1YA��RA�0IA��<AH�.A�A��A��@��@+l�@n>�@ѭKeyAttrFlagsi!�KeyAttrDataFloatf

8�KeyAttrRefCountiJ�AnimationCurveL�nN;SAnimCurveS��	DefaultD@la3���KeyVerI�$�]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_s�5
KeyValueFloatfJ(b��b��Q3��難���x��>c�yAP�,�A��{:�4�;�T�E�8!V�K�k�j���<����o��O2���T��$0��f���X��9U�������0�>���l���Q*�K��1�cP��L�L¢t‹�—e�\�s-�q����Œ��(��#���3�� ���Ĉ���D��"��b��Mǒ��������~v���h�n\��-Q�J8H��xA�o7=�4�;�5�;�4�;�4�;��@�H�K�87^�z�u�uQ��K��Gg��ơ������'��f����KeyAttrFlagsi!ײKeyAttrDataFloatf

�KeyAttrRefCountiJq�AnimationCurveL�qN;SAnimCurveSg�	DefaultD�?�KeyVerI���KeyTimel��F8ӳ
KeyValueFloatf�?��KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCountiѵAnimationCurveLHON;SAnimCurveSǴ	DefaultD�?ߴKeyVerI��KeyTimel��F83�
KeyValueFloatf�?]�KeyAttrFlagsi!��KeyAttrDataFloatf

ĵKeyAttrRefCounti1�AnimationCurveLxON;SAnimCurveS'�	DefaultD�??�KeyVerI�h�KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveLX�N;SAnimCurveS��	DefaultD$ ���KeyVerI��]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�__�5
KeyValueFloatfJ(� �� ��"��u�������(������+���'���e��9���I���j�� �������8�������&���o��ӕ������r�����'"���s��r���0#�������	��&���rX���5���>���q������W9�������a���
��*���}��`7������F���$!�,m�������� ����_����e����������9���������������e��f���e���e������h���l}��l�������u��d��ڙ��'���i��ӕ����KeyAttrFlagsi!ûKeyAttrDataFloatf

�KeyAttrRefCountiJ��AnimationCurveLx�M;SAnimCurveSS�	DefaultD��k�KeyVerI�ܾ]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_+�5
KeyValueFloatfJ(�%��%�5& ��m�tU��d��&��%�����(���i���k�x��x
�n��.��K!�l�&�z+�xW-�,�.���/�S1���2�'�3�/35�GN6��E7�Y8�9�8�V 9�S9�F9���8�!{8�e�7�+�6���5���4�We3�}�1��t0�U�.�pE-���+��*��(��3'��%�|$��� ����I���)�Ⱦ�I����p���~���%��n��(��)������	��?k��_����G������ �z�&�d%,�xW-�U�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiJ��AnimationCurveL��M;SAnimCurveS�	DefaultD@o@�7�KeyVerI���]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��5
KeyValueFloatfJ(z��z�«���������0�����������������Q���q��U���}!��������™g
�N��ę�b�F�#¸�)�/��6��/<ŠB��G•�L�"�P��3T�؂V�6�W�SW�u�U���R��OO���J��E���?��f9�t�2���+�y�$���!\����w�
�3u�z��x�������
������C������?���.0������e���������������������#&��	������.I��s����oœk�H�1��b�!�KeyAttrFlagsi![�KeyAttrDataFloatf

��KeyAttrRefCountiJ��AnimationCurveL��N;SAnimCurveS��	DefaultD�?�KeyVerI�,�KeyTimel��F8W�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiU�AnimationCurveL��M;SAnimCurveSK�	DefaultD�?c�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti��AnimationCurveL�N;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8�
KeyValueFloatf�?A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCountiI�AnimationCurveL��M;SAnimCurveS�	DefaultD`t�#�KeyVerI����KeyTimel0���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���
KeyValueFloatf0��x��x�Ì��ٟ��ڳ��[��2���gA��f���<^��1��r����u��z��PR��$�����)�����~��x��x��x��x�4�}�+�������J���"������O��)y����������<^��d^��<^��<^���2���!����������t.���(����������Q��*
~��x���KeyAttrFlagsi!�KeyAttrDataFloatf

<�KeyAttrRefCounti0��AnimationCurveL�N;SAnimCurveS��	DefaultD���?��KeyVerI�X��KeyTimel0���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_?��
KeyValueFloatf0��f?�f?n�6?��>��>Ѓd=O�n嚾� ҾS�|Ӿ������"����<uf>�z�>��?��B?�	]?�f?�f?�f?�f?��^?��H?�p'?�"�>��>�>�B7��P��9��2D־�R�pT��R�S�q�پ��xr��W�����=��P>��>�
?}�7?�^?�f?i�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti0q�AnimationCurveL8�M;SAnimCurveS3�	DefaultD ��"�K�KeyVerI����KeyTimel0���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���
KeyValueFloatf0���������.�)sH���c�e8~����6���p���֝�K����P��~#������f�i��{Q�z2;�+�(�d����������������o&��5�PI���^���t�h6������d������֝��֝��֝��֝��Z��$5���ڑ����]Z��=l��W�w�A���-���������KeyAttrFlagsi!7�KeyAttrDataFloatf

d�KeyAttrRefCounti0��AnimationCurveL��M;SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel��F83�
KeyValueFloatf�?]�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti1�AnimationCurveL��M;SAnimCurveS'�	DefaultD�??�KeyVerI�h�KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

$�KeyAttrRefCounti��AnimationCurveL�@N;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8��
KeyValueFloatf�?�KeyAttrFlagsi!W�KeyAttrDataFloatf

��KeyAttrRefCounti]�AnimationCurveLXHN;SAnimCurveS��	DefaultD���+@��KeyVerI�p�]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��5
KeyValueFloatfJ(e�]Ae�]AhZAWA=�SAX�PA��MAM�KAe�JArJA1KA*�MA
�QA�UAPZA��]AO�`A4�aAIaAe�]A%�VA�LA`�@A�2A3#AR�Ay�ANe�@�3�@#�@��@�t�@o��@�̆@4��@I8�@���@���@���@t��@��	A�aA��$A�<1A��<A��GAןPAXAe�]A��`A|�aA��`Aג^A�s[AE�WA��SA�2PA�MA��JArJAhJArJArJAeaJAG3KA�}LA�3NA|EPA��RA�1UA��WA�|ZA�\Ae�]A��KeyAttrFlagsi!#�KeyAttrDataFloatf

P�KeyAttrRefCountiJ)�AnimationCurveLX�N;SAnimCurveS��	DefaultD�
@��KeyVerI�<�]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_��5
KeyValueFloatfJ(�0U@�0U@p�~@j�@ѯ@1�@vE�@�C�@|`�@�gA�V�@�:�@�r�@���@Eɱ@;�@W�@�9l@�nX@�0U@��a@l�y@��@�b�@�v�@�5�@R��@؟�@DA��
A��A�AA<�A��A5A�GA!	A��A��@�(�@,�@|��@
�@��@��@QÃ@�
p@��^@�0U@Y�W@�
h@���@CU�@�z�@М�@L;�@E��@���@G�@�gA�gA�gA�gA�@�i�@*��@���@�y�@���@�<�@,��@�r}@נ\@�0U@��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiJ��AnimationCurveL8�M;SAnimCurveS�	DefaultD}f���KeyVerI��]KeyTimelJP��F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MX)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_W�5
KeyValueFloatfJ(�3���3��R���/f��cW��Ɣ���0���A��u���.��⦐�C���P��m�����p������N��b���3��O"�2�(�&�=�CU���l�z���$���:��Xܟ�앦�������n{��������
��:���ˎ�g���qy�w`f��;S�zn@��a.�z{�� �P���3��K���?��3���l!��꽦��4��}a��i��E�������.���.���.���.��dڑ������������n2������X��@����������3����KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiJU�AnimationCurveLh�M;SAnimCurveSK�	DefaultD�?c�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCounti��AnimationCurveL�M;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8�
KeyValueFloatf�?A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveLH�M;SAnimCurveS�	DefaultD�?#�KeyVerI�L�KeyTimel��F8w�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti
�AnimationCurveLh�N;SAnimCurveSk�	DefaultD����?��KeyVerI���%KeyTimel#���<0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�a�YLo��
KeyValueFloatf#�Z�?���?�=�?+'�?n��?�m�?q��?�5�?���?���?�o�?>�?�k�?�s�?r�?�?�l�?�.�?��?�l�?-�?�T�?Pl�?AY�?�)�?m��?���?{�?Zd�?Gv�?b��?.J�?+'�?]\�?���?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti#��AnimationCurveL��M;SAnimCurveSc�	DefaultDǂ @{�KeyVerI�4��KeyTimel3�� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM'��
KeyValueFloatf3�8A{A�AΙAdXA�A5�A��A�A�nA�A�A>AݿA#p	AJ=A�
A�A��A&4A֊AK�ABAzA�VA��A�.AYAA�$A>�A�AAݒA�AR�	An9A�A��A��A�Ah�Ax/A�ASA�A�DA2zA�A,�AVA8AQ�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti3��AnimationCurveL8�N;SAnimCurveS�	DefaultD����?3�KeyVerI�l�%KeyTimel#���<0�^>ؔ��>�g?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I ���K��
KeyValueFloatf#�)�v>��s>��w>:�~>	��>i��>w�>.g�>Ճ�>��>�-�>F��>���>es�>x_�>^7�>���>��>��>��>���>���>�\�>Ә�>j�>i�>מ�>&j�>���>Wc�>���>���>9�~>��x>>x>I�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti#�AnimationCurveL��M;SAnimCurveS�	DefaultD�?+�KeyVerI�T�KeyTimel��F8�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti}�AnimationCurveL��M;SAnimCurveSs�	DefaultD�?��KeyVerI���KeyTimel��F8��
KeyValueFloatf�?	�KeyAttrFlagsi!C�KeyAttrDataFloatf

p�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD�?��KeyVerI��KeyTimel��F8?�
KeyValueFloatf�?i�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti=�AnimationCurveLh�M;SAnimCurveS3�	DefaultD D@K�KeyVerI�t�KeyTimel��F8��
KeyValueFloatf!��@��KeyAttrFlagsi!�KeyAttrDataFloatf

0�KeyAttrRefCounti��AnimationCurveL��M;SAnimCurveS��	DefaultD�99@��KeyVerI���KeyTimel��F8��
KeyValueFloatf\��A)�KeyAttrFlagsi!c�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLؿM;SAnimCurveS��	DefaultD��s@�KeyVerI�4�KeyTimel��F8_�
KeyValueFloatf�s@��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti]�AnimationCurveL��M;SAnimCurveSS�	DefaultD�?k�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!#�KeyAttrDataFloatf

P�KeyAttrRefCounti��AnimationCurveL(�M;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8�
KeyValueFloatf�?I�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiAnimationCurveLX�M;SAnimCurveS	DefaultD�?+KeyVerI�TKeyTimel��F8
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti�
AnimationCurveL�N;SAnimCurveSs	DefaultD��0@��KeyVerI��\KeyTimel�Ox�P�
�/����<ō:��JI��b��Y��15ڤ�Ns�<�Pt�k<���y��.J~���(�n\;��5��=��T2�cL�y��y���D<�a,Q�<a���ͻ�p�����\�g��l���
�v>y���ק���J��zn�,n`��=��jl��|�s$<>�
�c]���OKiGqk�	�[E��t�⊧w�ة?߁�d��XX0s5qja���mx������)�{�j�ph���ض�*�jy�㐔�ӄ���;sNvp��#���[C++ER̞4��W�&�����w`�1Y'�0��$Z~��f��:��l{�:Z�[p{K���zo�PD���`ϧ���P�E���{qF:,X�Z�v�=2UL���:�P����c���6��{�zk��L�7�S��P{��?��]�q��j��*Q`�џ�$t�p�/8v�*��sD��������w�TfhpI~X����q諾Ql�fR��*��6�ٺxz*���B��r݊ٽ����|cvnW$�q��y�YY���i���,�I�a�q�DJ�68.a����
�7M���m!X�⚑A���]�=���F�^�g}5cCr�
��}X`]�I�+�fa�h��'�[��~��U��h^�~>v���F�}�vu�o���ʯ���X}K4y��,�W�����u��a������pIB��,��[$ơ�x��e�uǁC>��Um������[٘_w��o����8�()PA+��1����4yq^�J��fE�[����?��G�,����=l
_3w-�8�0�r<��
ڥ9�8LZ�=u��0���\Zp�x��sG1�wu�VZgS`ެ�k�'�w_��u
KeyValueFloatf�hT��?
³/*�,4?�z�V…Hn�S��J���"��`���և�»���Y^�¨�‚\�����dH��9I��皁�F�j�cHO�}#2�q�‚�Œ����3��ǭ���&��q������&!m:�Q�U�*�p�|���F��(��0�����dҶ±��s
��H���$�¯
���������S����E�¨����t������yh��'b��B��2_�Ÿf�Œc���߇��~�,�h�8�R«�<���&�0��8n�"E��|g���5��'l��y;���#��>��X�"p��‚���oP��AW���G��"����c���ꢫ¶ǣ¥d��m�…̦�t��w���_���k���R���t��,ܳ¨$��ٲ��i���ԙœ��’şš���_���¬v��(������2������ۿ�1���
��S������+K�� ��³JÔ�£����G�»���[����*������If��`�~���ý�]���,��­Ѥ�*���[�ˆ���U��E���A�¨��]ö�)k��ǵ�’س�&���ؤ���w��"��T�¿؅�)�t���V¿?B��q-•G��AKeyAttrFlagsiM4!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!0	/KeyAttrDataFloatf4"xc`�V^V^(L��G�c4= B`4?���
Ս
AKeyAttrRefCountiM4
AnimationCurveLx�M;SAnimCurveS�
	DefaultD�)^,�KeyVerI�x\KeyTimel�Ox�P�
�/����<ō:��JI��b��Y��15ڤ�Ns�<�Pt�k<���y��.J~���(�n\;��5��=��T2�cL�y��y���D<�a,Q�<a���ͻ�p�����\�g��l���
�v>y���ק���J��zn�,n`��=��jl��|�s$<>�
�c]���OKiGqk�	�[E��t�⊧w�ة?߁�d��XX0s5qja���mx������)�{�j�ph���ض�*�jy�㐔�ӄ���;sNvp��#���[C++ER̞4��W�&�����w`�1Y'�0��$Z~��f��:��l{�:Z�[p{K���zo�PD���`ϧ���P�E���{qF:,X�Z�v�=2UL���:�P����c���6��{�zk��L�7�S��P{��?��]�q��j��*Q`�џ�$t�p�/8v�*��sD��������w�TfhpI~X����q諾Ql�fR��*��6�ٺxz*���B��r݊ٽ����|cvnW$�q��y�YY���i���,�I�a�q�DJ�68.a����
�7M���m!X�⚑A���]�=���F�^�g}5cCr�
��}X`]�I�+�fa�h��'�[��~��U��h^�~>v���F�}�vu�o���ʯ���X}K4y��,�W�����u��a������pIB��,��[$ơ�x��e�uǁC>��Um������[٘_w��o����8�()PA+��1����4yq^�J��fE�[����?��G�,����=l
_3w-�8�0�r<��
ڥ9�8LZ�=u��0���\Zp�x��sG1�wu�VZgS`ެ�k�'�w_�u
KeyValueFloatf�hO�b�w�I��1=��$/��%��"�;<��	�L��6r��@(��WS��&e���N�����ʔ�$'�BS�����R�E��d���<0�-eʿb��?� ���"�$��>,�?C��p�#�nm���$������t
�
i���p���I�����s�|�dU>6��?a�?�>-??�O?�t�?�lc?m���w������C���"!���m>��?�xL?޺E>���dC��6޿U&��xE� [���f��D^�.O�Qsc�tu�Jc��S*�j+��p�������+�uV?3C�@���@�%�@��Ag3A#A�A�-�@H�S@��a@!e�@:�q@�z��d%�=�����)������/��l�q���Ծ�w�?������i��_��JL&�#~5�׎H���V�~fh�ߍr���Z���=����^������4r���߿]&��Ĺ�a
&�$�l�A,��/o���O���-�\u�mE�}��Ž��$v��q�������ޠ�]D��J��
�����R���*|@�3APpA�qAe�>A��@؛v@/!C�.Fe��Kb��b��z�>x0@u0�@��@�b�@� �?"���K�	�|b��aAKeyAttrFlagsiM4!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!�/KeyAttrDataFloatf4"xc`�V^V^(L��G�c4= B`4?���
�
AKeyAttrRefCountiM4
�AnimationCurveL��M;SAnimCurveSm	DefaultD�^�@�KeyVerI��\KeyTimel�Ox�P�
�/����<ō:��JI��b��Y��15ڤ�Ns�<�Pt�k<���y��.J~���(�n\;��5��=��T2�cL�y��y���D<�a,Q�<a���ͻ�p�����\�g��l���
�v>y���ק���J��zn�,n`��=��jl��|�s$<>�
�c]���OKiGqk�	�[E��t�⊧w�ة?߁�d��XX0s5qja���mx������)�{�j�ph���ض�*�jy�㐔�ӄ���;sNvp��#���[C++ER̞4��W�&�����w`�1Y'�0��$Z~��f��:��l{�:Z�[p{K���zo�PD���`ϧ���P�E���{qF:,X�Z�v�=2UL���:�P����c���6��{�zk��L�7�S��P{��?��]�q��j��*Q`�џ�$t�p�/8v�*��sD��������w�TfhpI~X����q諾Ql�fR��*��6�ٺxz*���B��r݊ٽ����|cvnW$�q��y�YY���i���,�I�a�q�DJ�68.a����
�7M���m!X�⚑A���]�=���F�^�g}5cCr�
��}X`]�I�+�fa�h��'�[��~��U��h^�~>v���F�}�vu�o���ʯ���X}K4y��,�W�����u��a������pIB��,��[$ơ�x��e�uǁC>��Um������[٘_w��o����8�()PA+��1����4yq^�J��fE�[����?��G�,����=l
_3w-�8�0�r<��
ڥ9�8LZ�=u��0���\Zp�x��sG1�wu�VZgS`ެ�k�'�w_��u
KeyValueFloatf�h���@1�Aq�A��'A�y=A��QA�`_A�}kA�9lAOalA�(HAУ%A�8A�FAԝA'
A�0MA��A��A�%fAr�2A��A�S�@�{�@��@t�@?�r@�~�@���@7��@�gAFA~mA#�"A>� A�A��A�XEA�thA�2�A��A�M�A���A�s�ANM�A]��A�V�AN�A�]�A��dA�^ZAi�bA~/tA�-zA߁pAfAÅLA�2AݰAw��@���@�s@��+@0�?��?��>���/,P��80?PO@F�q@[l~@��{@��_@�'@L\�?8��>>ٙ�
�.�7���2��I%z�3–��ds���l����7-�Jd@vG+A��@n�V��������G����e���>��D_��%9��|"e����@��!A�u�Aϑ�A���A�B�.B�@B&JMB��YB��hBSwBUf�B�i�B�˃BǀB��yB�rB)6fB'�XB��JB��:B�
-B�B�"Bn.B�e�A���A�f�A�H�A|��A���A)p�A~E�A	�A|�A�e�A��A2jA�e?A��@A��YAu�bALuIA��A��@9��@x
0A��'A�S�@�A�o�@U��@E�r@��?�AKeyAttrFlagsiM4!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!*/KeyAttrDataFloatf4"xc`�V^V^(L��G�c4= B`4?���
ՇAKeyAttrRefCountiM4
�AnimationCurveLh�M;SAnimCurveS�	DefaultD�?KeyVerI�+KeyTimel��F8V
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiT AnimationCurveLȌN;SAnimCurveSJ	DefaultD�?bKeyVerI��KeyTimel��F8�
KeyValueFloatf�?�KeyAttrFlagsi! KeyAttrDataFloatf

G KeyAttrRefCounti�!AnimationCurveL��M;SAnimCurveS� 	DefaultD�?� KeyVerI�� KeyTimel��F8!
KeyValueFloatf�?@!KeyAttrFlagsi!z!KeyAttrDataFloatf

�!KeyAttrRefCounti),AnimationCurveL��N;SAnimCurveS
"	DefaultD�V�P@""KeyVerI��%�KeyTimel��x�}P�w��2��h^��x��L�+lh����/a�өM������|g�:9���)�\�a�,�3��Ƕ�����t��&;���������E<����:���ZV��`���@"���bK#���I�r��¾��#8U�}9Iw��d�"wR��'�'���=�����'X&���Cp3n`9�c^[�$��b*{pM�F�dr\�+�7_�ڐ��]��џ�әt#v0��x���%\v��+ ?Ho�cv��M��k���B2�nD����\X-��&3֬����{�*��ØvV6�������r��V�ub��C���ҥ�u�W>��F�e��,>�i��W	�a��E�d��!3�=C��񪝸�+,��W8�`^����>���������?mǁos���DW���~q�_�˂�f3��x����OCp��
k=�qTA�3�}����8?�&�/�	��V%`�;W�O�N�ʼnG*?Á�E��Νz\����8~̞�~�m�&e*Y�*�ciS�yp˺4�h2;
�k�c��/Jp��T%���u�œk6|���3&�7���IZL��#V�SO��u20�L����9�ݟ`�o�MX!�<��/�)ɔ����˯X�hY�I�:w2�ҕy�h�8�t+O�8յ>�l݃��.���;���,a�-��!���.��|�q\�
��]x��)XF��=��:?yv����F���YG2>"�'W^�1+��X;,
��ݾ#���_{;YK�8�Xm��!�M�9ue�%6�%'�e'�m;Ӊ5�)ȷ�
gc涎Zl�zȍ�#�J�
o@)f�gX]z����aU�Fv�l)�:�i1��8{v��ܻ�M^]�8+���%��S�3��)rwxY���q�>��N��\�8BZ��!ϰ>�Ѿ<����;�a��
mʃd���
�|��(�
KeyValueFloatf���R�B�%�B�l�B��B���BϺ�B.P�B�X�B`c�B�7�BA�wB�U_B��FB�F:B�C.B*4BӬJBy/cB��vB`4�B���Bm�BFv�B��{B��nB�3�B*ՌB���Bڇ�Bٓ�B1��B���B[��BM��B���BW��B�D�B�~�B���B���BŹ�B`�B>�B��B(�B�"�BNp�B �B���B���Bt��B���B/��B]��BK!�B��B|��B�	�B��B��BNEhB�TJBe�7B�aB}�B���A܂�A,33A3��@nd:A�b�An��Aݘ�Ab�B�h-B�GOB��hB��{B�c�B"ΚB}��Bʚ�B�´B��B�$�B�B���B�{rB��WBTlLB�R;B�*B'y"B�RBXJ0B.A?B��NB|�`B�8rBlՀBy�B�[�B�ėBO
�B�#�B�<�B=�B$��B��B��B���B5C�BU�B�n�B�S�B�B��B��B�Bo!�B��B��C��C��	CBC��C�JC�HC�CCdYC
�C�C�CB;Cl�CxPC��CTjC5��B�l�B4��B���B�}�BjA�B�D�B��B���B���B9��B�ϭBև�BcI�B̏}Bb�\B��EB��.BϋBA�"BP8B��JBbBSB�^BRjBO�mBփgB�oQBdz>B4*yKeyAttrFlagsi[l!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!�*6KeyAttrDataFloatfl)xc`�V^V^(L��G�c4= B`4?��Dj``��U��,yKeyAttrRefCounti[l�6AnimationCurveL��M;SAnimCurveS,	DefaultD�
�@�,KeyVerI�P0�KeyTimel��x�}P�w��2��h^��x��L�+lh����/a�өM������|g�:9���)�\�a�,�3��Ƕ�����t��&;���������E<����:���ZV��`���@"���bK#���I�r��¾��#8U�}9Iw��d�"wR��'�'���=�����'X&���Cp3n`9�c^[�$��b*{pM�F�dr\�+�7_�ڐ��]��џ�әt#v0��x���%\v��+ ?Ho�cv��M��k���B2�nD����\X-��&3֬����{�*��ØvV6�������r��V�ub��C���ҥ�u�W>��F�e��,>�i��W	�a��E�d��!3�=C��񪝸�+,��W8�`^����>���������?mǁos���DW���~q�_�˂�f3��x����OCp��
k=�qTA�3�}����8?�&�/�	��V%`�;W�O�N�ʼnG*?Á�E��Νz\����8~̞�~�m�&e*Y�*�ciS�yp˺4�h2;
�k�c��/Jp��T%���u�œk6|���3&�7���IZL��#V�SO��u20�L����9�ݟ`�o�MX!�<��/�)ɔ����˯X�hY�I�:w2�ҕy�h�8�t+O�8յ>�l݃��.���;���,a�-��!���.��|�q\�
��]x��)XF��=��:?yv����F���YG2>"�'W^�1+��X;,
��ݾ#���_{;YK�8�Xm��!�M�9ue�%6�%'�e'�m;Ӊ5�)ȷ�
gc涎Zl�zȍ�#�J�
o@)f�gX]z����aU�Fv�l)�:�i1��8{v��ܻ�M^]�8+���%��S�3��)rwxY���q�>��N��\�8BZ��!ϰ>�Ѿ<����;�a��
mʃd���
�|�3�
KeyValueFloatf��V�@I�@��<@v�i@��@~�@��I@Z`;?vؿ|Y��m���#���{d	�X^��!�����8�J#U���-�C(H@ɻ�@�^R@:G@�ߋ@��@�E�@B2@�z@��@��@y0�@!�@<��@��A���@�|�@6�@^.�@wk�@��Az(A;}A
�A<��@s��@e��@#(@&�?�@�^u@J��@�A�)A��A�Au��@k��@e�@ϱ�@���@�"�@P)�@Z��@��A�2!AC�?AA�6A��)A#A��	A�F[A��PA��IA^EA��?A�;A<�*A� A��A"BA��	A��A�m
A/tAV��@�(�@е�@���@���@UzZ@>u@&N�@d��@�i(A`\pA�{A�[Aj�AA��<A6"8A�M.A�!A��@�֞@˻@�Ⱦ@�e�@���@{�@�%�@~�A��ATA��
A>��@y�W@0@z�1@z�6@�VL@"qV@/��@��@��AH$7A�:A	��@;!�?x�y�y��FY�I���5����~���{³��������:��3����ʏ�v�g�)1�!���K��q��?.Ý@���@]�A3��@w��@r�@�!a@(!@�?����� ��N������/����q��Y�翺�	��j���A��m\?��?��@�4yKeyAttrFlagsi[l!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!�46KeyAttrDataFloatfl)xc`�V^V^(L��G�c4= B`4?��Dj``��U�͑6yKeyAttrRefCounti[lAAnimationCurveL8�M;SAnimCurveS�6	DefaultD �%�7KeyVerI��:�KeyTimel��x�}P�w��2��h^��x��L�+lh����/a�өM������|g�:9���)�\�a�,�3��Ƕ�����t��&;���������E<����:���ZV��`���@"���bK#���I�r��¾��#8U�}9Iw��d�"wR��'�'���=�����'X&���Cp3n`9�c^[�$��b*{pM�F�dr\�+�7_�ڐ��]��џ�әt#v0��x���%\v��+ ?Ho�cv��M��k���B2�nD����\X-��&3֬����{�*��ØvV6�������r��V�ub��C���ҥ�u�W>��F�e��,>�i��W	�a��E�d��!3�=C��񪝸�+,��W8�`^����>���������?mǁos���DW���~q�_�˂�f3��x����OCp��
k=�qTA�3�}����8?�&�/�	��V%`�;W�O�N�ʼnG*?Á�E��Νz\����8~̞�~�m�&e*Y�*�ciS�yp˺4�h2;
�k�c��/Jp��T%���u�œk6|���3&�7���IZL��#V�SO��u20�L����9�ݟ`�o�MX!�<��/�)ɔ����˯X�hY�I�:w2�ҕy�h�8�t+O�8յ>�l݃��.���;���,a�-��!���.��|�q\�
��]x��)XF��=��:?yv����F���YG2>"�'W^�1+��X;,
��ݾ#���_{;YK�8�Xm��!�M�9ue�%6�%'�e'�m;Ӊ5�)ȷ�
gc涎Zl�zȍ�#�J�
o@)f�gX]z����aU�Fv�l)�:�i1��8{v��ܻ�M^]�8+���%��S�3��)rwxY���q�>��N��\�8BZ��!ϰ>�Ѿ<����;�a��
mʃd���
�|��=�
KeyValueFloatf����(���#�`L"�� �ay;���t�CK���E�������i���Ã�Y�g��hF�m��yC���ʡ��N������$����3������]s}��������������G��q2�uE�����k��\b��w��Iv���AF��V5���;�s�$��~�!����	�^����F����R?P=	@sN@��@q0�@�Y�@l�x@zv�?=4�׼���i����m������������<��ѿ*�S�9c�>q�?��@�9@&a@Hl�?k�f>99����2���	@F/�?�M?�g�>�'龆z��^5�R^R�Q��������������J����3����N=��s���y������������tt;�; ���
@Eߋ>�à�br&�
*)�@,�B~�4�����1����?�_[��cdJ?��?���?y��=����5���~�|��@�v��_ ��Օ�,�L�z�F@�/�@���@8�@���@��V@���?Y��? @=Pw@���@�CA[�'A�\Aғ�AišAq��A���A�B�sBېB�BK�A-��Az��Aki�A��eA��A���?�>�Da���;��{~��1 ��n�����0u��-i���؏���,��=A��}O�.�<�[�+���0�C�#�9��+:�������>��?yKeyAttrFlagsi[l!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!q?6KeyAttrDataFloatfl)xc`�V^V^(L��G�c4= B`4?��Dj``��U��AyKeyAttrRefCounti[lsBAnimationCurveL��M;SAnimCurveSiA	DefaultD�?�AKeyVerI��AKeyTimel��F8�A
KeyValueFloatf�?�AKeyAttrFlagsi!9BKeyAttrDataFloatf

fBKeyAttrRefCounti�CAnimationCurveL(�M;SAnimCurveS�B	DefaultD�?�BKeyVerI�
CKeyTimel��F85C
KeyValueFloatf�?_CKeyAttrFlagsi!�CKeyAttrDataFloatf

�CKeyAttrRefCounti3EAnimationCurveLX�M;SAnimCurveS)D	DefaultD�?ADKeyVerI�jDKeyTimel��F8�D
KeyValueFloatf�?�DKeyAttrFlagsi!�DKeyAttrDataFloatf

&EKeyAttrRefCounti�NAnimationCurveL�M;SAnimCurveS�E	DefaultD@��$��EKeyVerI��IKeyTimel���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>+T��>�g?*�W-?�B�O?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���DT��E�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎Jԧ��J(g��J�F�K��Kal�K�3K��]FK$�?tKxd!�K ���K�a�YL!��Lp�k�L_/M���lM�ԚMh\��M���M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R��CR�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cV|��Vк;Vx9�W �TvW�6�Wp��-X4��Xl�X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�K	
KeyValueFloatf��w&���a����37��*|��$¹�V��w����y��w����@���S�+eX��R�����
�u�<�'�T?'Š��\X��MJ�������P��}���
���/���q��+�<�H���S��N���O�ɕP�+7�����L�6��@ˉ;AT�A�9�AV�A���A�A5�A`8�A�d�As�^A5COA/�]A9ghA�ӕA���A��A���A��B(��A�E�A�o\AqR�@��+@d���m�:��������p�������ܰ!�֦*�6��_���3�����'��D��t���o��Bl��{���+����x���	��v�%�v+���!�b����8�'���<�~�j&��Ei���r������@`é@�(�@���@7��?.�r�k�
��zr��s_��y>��E���������og@w�@�6+�jZ"�w��T���ا���&���v���A/x��_<�xF�>�o����'7���+����v��4�gLqKeyAttrFlagsid!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!!N�KeyAttrDataFloatfd�

















































�NqKeyAttrRefCountidCXAnimationCurveL88N;SAnimCurveSO	DefaultD��F�)OKeyVerI�BSKeyTimel���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>+T��>�g?*�W-?�B�O?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���DT��E�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎Jԧ��J(g��J�F�K��Kal�K�3K��]FK$�?tKxd!�K ���K�a�YL!��Lp�k�L_/M���lM�ԚMh\��M���M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R��CR�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cV|��Vк;Vx9�W �TvW�6�Wp��-X4��Xl�X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_eU	
KeyValueFloatf��6��vk>�U�>��>��
>	z�m��� ����ڽq�?yWM?�!�>U:�>1`0?�2�?Š�?=@j2:@Vm@��G@�� @��?b]b?��]>�9�4�=o�=pi�=(�l=���s�N�,�\�\�v���|�P��;A��>:�U?E�?�M�?.�x?�`�>����3!<-�=��=�:�=qUE=7�Ž����ʝ��S广��5���;�(�[�ὒ��F:��ſ"0�ͮl�&;;�_2>�{>å=u=&�>x�h?�\@ġ�@���@WH@��&@�@_^@h�@��@�?V�k?KS�?�S�?�!�?��?ᛙ?��S?8�.?N���t��T��
Q�ǽ��ʽA=^=��,>���>@|�>kR�>Hnr>H(?$
�?d��?�K4@PRB@��.@�@���?��6?Jص=򚇽F>}�7
%��z#>M�>}6f>0�#G�WP������p��]8o>�H?�S�?�)@��P@�т@��@�UqKeyAttrFlagsid!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!�W�KeyAttrDataFloatfd�

















































6XqKeyAttrRefCountid�aAnimationCurveL�M;SAnimCurveS�X	DefaultD�Dž@�XKeyVerI��\KeyTimel���F8�+��8X�k�8)/Z9���9P&�:��ym:�#=�:H�%;� Ā;����;@K8<��<���<8��K=�Y�=��>0�^>ؔ��>+T��>�g?*�W-?�B�O?(�*r?���?x��)@ u�@Ȍ8�@p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���DT��E�|b.EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J��֎Jԧ��J(g��J�F�K��Kal�K�3K��]FK$�?tKxd!�K ���K�a�YL!��Lp�k�L_/M���lM�ԚMh\��M���M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R��CR�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cV|��Vк;Vx9�W �TvW�6�Wp��-X4��Xl�X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_�^	
KeyValueFloatf�=.�@��@��@kJy@E�K@!��?�ؿ?���?9@��@r�8A��3A{�A-D�@���@ ��@4��@�_AE�3Ae9A"�=Aw*A�cA�W�@O�k@�@�G�?u��g�$�$�j�e�S����b��O����KL�/���t���������X��,z���k�>��=��>=�>k�>�R��1�;?�6�?|TN@"��@4v'A"
0A"pJA(OA޹A���@^�@a@�@��!?�G��ž[�(�6��?/v�@{aA�ZAP�APMA�DA�;At{sA�A��A��3A��A�(A�6A!7A�AE�A�1%Ay75A�ۨ@ׄ?KM����y��$��5���0˫?[>�s��j�
@ 3;@��@�u�@���@�[�@���@!z'AܘIA֓A5�A�A�>A+_�@o@U��-�ſ��t?��@6�Y@N��?g���5�<�3@��@���@l!A�@A5IA��[AE�uA���Aw_qKeyAttrFlagsid!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!1a�KeyAttrDataFloatfd�

















































�aqKeyAttrRefCountid+cAnimationCurveL��M;SAnimCurveS!b	DefaultD�?9bKeyVerI�bbKeyTimel��F8�b
KeyValueFloatf�?�bKeyAttrFlagsi!�bKeyAttrDataFloatf

cKeyAttrRefCounti�dAnimationCurveL��M;SAnimCurveS�c	DefaultD�?�cKeyVerI��cKeyTimel��F8�c
KeyValueFloatf�?dKeyAttrFlagsi!QdKeyAttrDataFloatf

~dKeyAttrRefCounti�eAnimationCurveL؋N;SAnimCurveS�d	DefaultD�?�dKeyVerI�"eKeyTimel��F8Me
KeyValueFloatf�?weKeyAttrFlagsi!�eKeyAttrDataFloatf

�eKeyAttrRefCounti/oAnimationCurveLh�M;SAnimCurveSAf	DefaultD�ffM�YfKeyVerI��iKKeyTimel�>x�}P���]�D�Q���IVk�Rði�y9��y/\v�Jv)����]t��M^��n����ڙ$C�9/��y�yXM]".�0�I�,o��3�)+3(����X�xkx&}�wj^(ތs����	Y�q���~,n`&̢q�zl�+{�{T��x4?V�����u�o�0b�2�WE�����m�����9�[[#�Şb�e+.�tO�\~*&d6�:ʫ�����Ҍ�C'���"{����u����u;�w8&g�0�����O:7`vE�	�Y�}X[&�ΥJp�ఫ�v�9d=Txm:V�T��7۶Wc�AY+V
f|�V�-�C��X~�c7f��uc���)ٴ���
,������-ޣ;�?�~a��~�|�'��A���b���ؿ�d���
���Z�I��:�R>~��/�q��M�}8�s�+�Y�����_V�$Mm7v����ս�#pjwe2v�
Dx�����t�h��㢵�
�iB��}����,�Z��،مS�/���7a��Gv�ϥm�,=V{�7���}fm}Qv�e���y!�R���KX����*T��ӂ�9ޑKhsx�<xr~V�æ'�;&r��~Q�!\��s��x2���5�r��8�ޚ����.����DC��I��5��⼏�2�Ǯ��l���1��ƺ��r���{���^w�o��a��D����~2c[JS��t��4+9݊�?�|������t��Xι��W���XJb�F�
[�S�ҋ���`��X�1���o0L�}����8^Z�O{��Ł��n,,�9ZE�b_e�N��?S{���a��/���W��1���?(wZx?lm
KeyValueFloatf�`53k��f��Z�0IL���;��#��g�g���8���&���� B�+����I���������bg����p��q��7##µk4ˆnN˜yh�߁��q��B���,y�ž��’}������R���H~�–��Ͽ��Z�h��W¯�G�j|7�	D'�p�!²7;�85L¯E]�g�}¼t����0��ߡ´����������De��)&�’��–'���T��J���OV�œ�™λ��6��_��£�����»��€�u�`W`�4�K��7�x,�����������Դ���e�dX(��QF��Dd�Y�~��-����x����™����(��+4��.���!���t��^Կ�,l��Jڱ�������%��^O������K��.�� ����[���v�������!��(m������$&��Ww���y������'�����I_��
�������=�§�������IR�§����`�®׻��*�����Kݐ‰���>fk�P�J‡7 w#�U�����\���H�q�Td� oU���@�*��z�υ��oV��t��n	���J��M��3�
N�2h¹}����`���P�‰m1KeyAttrFlagsiI$!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!�m/KeyAttrDataFloatf$"xc`�V^V^(L��G�c4= B`4?�'?_[
E"o1KeyAttrRefCountiI$		sxAnimationCurveL��N;SAnimCurveS�o	DefaultD B�@�oKeyVerI��rKKeyTimel�>x�}P���]�D�Q���IVk�Rði�y9��y/\v�Jv)����]t��M^��n����ڙ$C�9/��y�yXM]".�0�I�,o��3�)+3(����X�xkx&}�wj^(ތs����	Y�q���~,n`&̢q�zl�+{�{T��x4?V�����u�o�0b�2�WE�����m�����9�[[#�Şb�e+.�tO�\~*&d6�:ʫ�����Ҍ�C'���"{����u����u;�w8&g�0�����O:7`vE�	�Y�}X[&�ΥJp�ఫ�v�9d=Txm:V�T��7۶Wc�AY+V
f|�V�-�C��X~�c7f��uc���)ٴ���
,������-ޣ;�?�~a��~�|�'��A���b���ؿ�d���
���Z�I��:�R>~��/�q��M�}8�s�+�Y�����_V�$Mm7v����ս�#pjwe2v�
Dx�����t�h��㢵�
�iB��}����,�Z��،مS�/���7a��Gv�ϥm�,=V{�7���}fm}Qv�e���y!�R���KX����*T��ӂ�9ޑKhsx�<xr~V�æ'�;&r��~Q�!\��s��x2���5�r��8�ޚ����.����DC��I��5��⼏�2�Ǯ��l���1��ƺ��r���{���^w�o��a��D����~2c[JS��t��4+9݊�?�|������t��Xι��W���XJb�F�
[�S�ҋ���`��X�1���o0L�}����8^Z�O{��Ł��n,,�9ZE�b_e�N��?S{���a��/���W��1���?(wZx�um
KeyValueFloatf�`*�@��@�n�@�:�@�a�@��Ak�5A��KAXZA'/eAptjA��mA�lA��JA�V2A��A�`A��	A��A��"A2&A]�*A�%-A;�!A�A�EAM!
A�A��@�V@���?o:�?��j������Q���>�Bo@OS�@E*�@�H�@�jA-8A��*A�n+A�
1A�}5A0	?A�fGAxbPA�"XA{�TA5PARi3A�A���@��@�{�@�l�@��@��
AЪA�UAbA��AVA5 A��#A��,AvO5A-6A��<A��A>��@�@�@��@�v@C�Z@��;@��*@О@�n	@3�?n*�?�م?f�=�ޙ�d��U�	������ψ��t���3@s��@�dA\:Ap�^A��A6��A8]�A-��A�B!r	B^�B�jB0cBV�
B�FB���Ayo�AS��A�H�A��A��A�I�Awa�A(j�A�6AR�A�)A�%$Ak�A�A���@��@gh�@��@AhRAB!Af�,A�a@A�ATA�2dAYwtA��dA��TA�IACA��1A(JA(�FA'UAA}0A�BA}`A���@��@J��@q�O@r�@���=*'��v1KeyAttrFlagsiI$!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!w/KeyAttrDataFloatf$"xc`�V^V^(L��G�c4= B`4?�'?_[
Efx1KeyAttrRefCountiI$		��AnimationCurveL��M;SAnimCurveS�x	DefaultD�}���xKeyVerI�@|KKeyTimel�>x�}P���]�D�Q���IVk�Rði�y9��y/\v�Jv)����]t��M^��n����ڙ$C�9/��y�yXM]".�0�I�,o��3�)+3(����X�xkx&}�wj^(ތs����	Y�q���~,n`&̢q�zl�+{�{T��x4?V�����u�o�0b�2�WE�����m�����9�[[#�Şb�e+.�tO�\~*&d6�:ʫ�����Ҍ�C'���"{����u����u;�w8&g�0�����O:7`vE�	�Y�}X[&�ΥJp�ఫ�v�9d=Txm:V�T��7۶Wc�AY+V
f|�V�-�C��X~�c7f��uc���)ٴ���
,������-ޣ;�?�~a��~�|�'��A���b���ؿ�d���
���Z�I��:�R>~��/�q��M�}8�s�+�Y�����_V�$Mm7v����ս�#pjwe2v�
Dx�����t�h��㢵�
�iB��}����,�Z��،مS�/���7a��Gv�ϥm�,=V{�7���}fm}Qv�e���y!�R���KX����*T��ӂ�9ޑKhsx�<xr~V�æ'�;&r��~Q�!\��s��x2���5�r��8�ޚ����.����DC��I��5��⼏�2�Ǯ��l���1��ƺ��r���{���^w�o��a��D����~2c[JS��t��4+9݊�?�|������t��Xι��W���XJb�F�
[�S�ҋ���`��X�1���o0L�}����8^Z�O{��Ł��n,,�9ZE�b_e�N��?S{���a��/���W��1���?(wZx�~m
KeyValueFloatf�`����u����e���W�pO١>��?ԷR@�R�@�~�@AJA��!A��
A�G�@�^�@,_�@���@
��@:��@2��@���@cI�@ϖD@��@��?*�=�ȿ&�ɼ��?��������@����q�j��Y�����{{��}�D�Ϳ�,-?��?���>}5��.Ǡ��{���M�����jM���z����������{���2��C�<C�T�4����C����<W���m|ƿ�|ο�+տ��/��,�J(�B+ ������[��<��G����=<,T?���>���=�\���"��b;�\�H�LT�Y�T��U�������`��)���:���Ȍ�1���x���O�&���Ko?�6�@�&A�PAX3bA~_Az8Ad�P@-�D�����*�	�b�����e���Rd��V��-u��-��)���t�� ��@�#�`IN�	x���R��|���>�m���3���dU��s4��@���G@ة�@\YA��A�i"A�&A�� A��A^�A;,A��A�'A��A�sAϒ�@���@�I�@��@ŔT@�#@.V�?|F?���m��4g���V���������1KeyAttrFlagsiI$!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!]�/KeyAttrDataFloatf$"xc`�V^V^(L��G�c4= B`4?�'?_[
E��1KeyAttrRefCountiI$		�AnimationCurveLH�M;SAnimCurveS
�	DefaultD�?%�KeyVerI�N�KeyTimel��F8y�
KeyValueFloatf�?��KeyAttrFlagsi!݂KeyAttrDataFloatf


�KeyAttrRefCountiw�AnimationCurveL��M;SAnimCurveSm�	DefaultD�?��KeyVerI���KeyTimel��F8ك
KeyValueFloatf�?�KeyAttrFlagsi!=�KeyAttrDataFloatf

j�KeyAttrRefCountiׅAnimationCurveL�N;SAnimCurveS̈́	DefaultD�?�KeyVerI��KeyTimel��F89�
KeyValueFloatf�?c�KeyAttrFlagsi!��KeyAttrDataFloatf

ʅKeyAttrRefCountiL�AnimationCurveLh�M;SAnimCurveS-�	DefaultD`W�L@E�KeyVerI�7��KeyTimel��x�}P�w���,f����FzZf��P�ISF��&�)�Z�aKū�+;���Vn�|I�3M�c�Mj�h7v�+��:�tb���d7���<�<��	��(�}�v_�T�q$��7�X|{]<��^�)2��N�C<�g�"�QA	d'kP���7���b��Ts���so9) �����p���h�_Ƽ,�]\�?�su
��d;Svnj�?ƕ�np�A�*~��p��=�.�
�4%^�G._5�-��������R��>��قm�WV���
M"���E�}��k�x|2�j@�ʹ�x�E��Nr^�@��BJ1c�GVܟ��r�OȞ�=۱ܭ��w���K��b�'��ecE�Z�n��O!���®��I������bev.D����%����L�((��y��x\�����7���� քO�b�KK�.r���X��F�W�М�Q�s�����}8b&�	.�t��<����B�X���!��xy����W�J.����	��p��vl�<(���ӱ�w�(f�-�Ʊ&�g�D�a��݆��0믉el9����J��~��ٶn7����	����eݶ�;�ڷ�1V�iY��܋��D5��
���#�8�e~�F��vW\«��b�$�5��ںQL����bI�S���C������I'��G`�Y6�4�ź���5+SX(�{�%;�Z���r�8ɲ9t�!xU�y�m�p��^;�(�D���Ʌ<�q�8����Zs����/��q�{?9�<����Z��n`���5��CxG��d�	����2�,��[b�CX�?�UJf�4�ͷO��`���0L7bcx�˻��dZX�g�x?Æ�ŵ��U�F�4�\|��؀)}��X�+������Ydq��ܮ��c��0nu3�Ĭ}�ArK�&
�:)�B���R��w����^/pr���dm����S�W8�I׊��˸Vǖ吹��}��p�%2��
KeyValueFloatf����fBN�jB"�pB�#uBC�tB�#lBǝTBu*@B��+Be�B:B�%B�Bz�0B�"CB�^B8�yBmw�BN�B|)�B�Q�B�z�B:��B���B��Bo��B���B
��B�:~B@kBNB��0B�WBO�
Bƚ%B��;B�fRBfXnB0rB=�kB��[BV�KBͭTB�VgB9zB"�BwG�B�ءBCi�B�%�Bm��B"��B�J�B	��B��B���B���B1l�B�{�BE��B��B$:�B	B�B0�B|��BĻ�B���BY)�B*��BG��Bd�B��B�LvB]_ZB��GBc�+Bi�B\��A��A�GAb��@�5�@	vA�҃A�/�A��AC�Bs�Bs11B'lQBf�iB͕{B�Q�BgИB�R�B�ֵB�k�B�>�Bt��B���B;�Br~�B��rB��SB:�3BIZB�B���AL�B#� B�3B��IB��`B.�tBG:�B�̎BGo�B��B �Bla�B0��B���B��B���Bx7�Bg!�Br;�B��Br��BE��B��B;��Bfu�Bn�BJ�B5��Bs��B���BմC?C݆C�UC4j	C�VC~>Cb�CQ�C��B���B��Bu�B��BS�B1m�B[ݫBM��B�]�B�B��xB.WB8N5B��BS��A̩A�κA|��A:��A�	Bk�BP�<B�YB��hBExBJ��B�E�Bk��B�{�Bb�B�y�Ba{�B
@�B��KeyAttrFlagsim�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!b�9KeyAttrDataFloatf�,xc`�V^V^(L��G�c4= B`4?��Dj``M�3=%�U?��KeyAttrRefCountim�
��AnimationCurveL��M;SAnimCurveS��	DefaultD �"���KeyVerI����KeyTimel��x�}P�w���,f����FzZf��P�ISF��&�)�Z�aKū�+;���Vn�|I�3M�c�Mj�h7v�+��:�tb���d7���<�<��	��(�}�v_�T�q$��7�X|{]<��^�)2��N�C<�g�"�QA	d'kP���7���b��Ts���so9) �����p���h�_Ƽ,�]\�?�su
��d;Svnj�?ƕ�np�A�*~��p��=�.�
�4%^�G._5�-��������R��>��قm�WV���
M"���E�}��k�x|2�j@�ʹ�x�E��Nr^�@��BJ1c�GVܟ��r�OȞ�=۱ܭ��w���K��b�'��ecE�Z�n��O!���®��I������bev.D����%����L�((��y��x\�����7���� քO�b�KK�.r���X��F�W�М�Q�s�����}8b&�	.�t��<����B�X���!��xy����W�J.����	��p��vl�<(���ӱ�w�(f�-�Ʊ&�g�D�a��݆��0믉el9����J��~��ٶn7����	����eݶ�;�ڷ�1V�iY��܋��D5��
���#�8�e~�F��vW\«��b�$�5��ںQL����bI�S���C������I'��G`�Y6�4�ź���5+SX(�{�%;�Z���r�8ɲ9t�!xU�y�m�p��^;�(�D���Ʌ<�q�8����Zs����/��q�{?9�<����Z��n`���5��CxG��d�	����2�,��[b�CX�?�UJf�4�ͷO��`���0L7bcx�˻��dZX�g�x?Æ�ŵ��U�F�4�\|��؀)}��X�+������Ydq��ܮ��c��0nu3�Ĭ}�ArK�&
�:)�B���R��w����^/pr���dm����S�W8�I׊��˸Vǖ吹��}��p�%���
KeyValueFloatf��i!��vJ��Ō�䲰��o��M)��r*���*�*�+���0��u5�]?�/�=�
+<�c]4�|f(��N����I3���|�������P������)���x���g��v���"i�&�B1���1�>�/�?��?Q��?�1Q�<�e�q���������c2��G97��3���j�F�wn��.��7I�����U�v�M�o�^'h�x�J��G)��:.�����3ێ�����Zo��(���Ϳ\ƿ2:��;0��`o��շ�����ύ���j���l��z���5��#y����m���M1������{�����c.��&#��v�'CK�:�L�k1N�bN��WM�s2K�@�G�&)8�W�c������PL��3���O�ԭ"���*���|�����6�2�p���Cm��������s��J�@\�Ah�@�.^@��@w�6?
?�GAg�DL�j�����m��U!���%��5J?������@HC�@��Aau�@��Z@�L�@N��?p�i��y�q���������B�w?��@W@��
�����\�
�����ث�P��������_�%�������\�����yG���'��3ƍ�wb��8'���]���D��1I�����l<
�ݞ��>,���(���u��W���Ǯ�3����$���\��������(Nt��A���0z���O��yo��G{�Aȍ�
ģ����KeyAttrFlagsim�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!ך9KeyAttrDataFloatf�,xc`�V^V^(L��G�c4= B`4?��Dj``M�3=%�U���KeyAttrRefCountim�
6�AnimationCurveL��M;SAnimCurveS�	DefaultD�^�?/�KeyVerI�!��KeyTimel��x�}P�w���,f����FzZf��P�ISF��&�)�Z�aKū�+;���Vn�|I�3M�c�Mj�h7v�+��:�tb���d7���<�<��	��(�}�v_�T�q$��7�X|{]<��^�)2��N�C<�g�"�QA	d'kP���7���b��Ts���so9) �����p���h�_Ƽ,�]\�?�su
��d;Svnj�?ƕ�np�A�*~��p��=�.�
�4%^�G._5�-��������R��>��قm�WV���
M"���E�}��k�x|2�j@�ʹ�x�E��Nr^�@��BJ1c�GVܟ��r�OȞ�=۱ܭ��w���K��b�'��ecE�Z�n��O!���®��I������bev.D����%����L�((��y��x\�����7���� քO�b�KK�.r���X��F�W�М�Q�s�����}8b&�	.�t��<����B�X���!��xy����W�J.����	��p��vl�<(���ӱ�w�(f�-�Ʊ&�g�D�a��݆��0믉el9����J��~��ٶn7����	����eݶ�;�ڷ�1V�iY��܋��D5��
���#�8�e~�F��vW\«��b�$�5��ںQL����bI�S���C������I'��G`�Y6�4�ź���5+SX(�{�%;�Z���r�8ɲ9t�!xU�y�m�p��^;�(�D���Ʌ<�q�8����Zs����/��q�{?9�<����Z��n`���5��CxG��d�	����2�,��[b�CX�?�UJf�4�ͷO��`���0L7bcx�˻��dZX�g�x?Æ�ŵ��U�F�4�\|��؀)}��X�+������Ydq��ܮ��c��0nu3�Ĭ}�ArK�&
�:)�B���R��w����^/pr���dm����S�W8�I׊��˸Vǖ吹��}��p�%��
KeyValueFloatf��&��?���?J�,?[&,>/�!��A�L��WQǿ�տ4���>s��_>-o5>�b>n��=������-��B?Є@8`@��@�L�@,��@���@��@V�AA�(A�28AZ�DAJV3Ah�A�R�@��@ �T@�+@js&@{@����9�d ���#�Z������K�R!:���Z������i�6�N��<X��a��:���j��x��6�7���r9��Ń�:���w��,[���vX�W��nW�?�d<@��@�X�@Ռ�@��2@�h�?ߍF?@��7Z��fk�5�s�[��+�����D�[�߿���^ž�4Y�b�ֿj���1��1^��������Ӥ���'���b��X"���Ϊ������������-��%6�h>�7������(��iZ����P��?@��@z�@�-A���@9�@�7�@ћ@F��@�T�@fN�@?)�@�iC@HÙ?'�!���:��$���C>&��aa�Mo��%���AY���[��]�h���W���
�@�2����PS'�@�s���(�\��$f�b��?a|۾�P��!r�?�@V�&@�m@S�|@�P�@��@�@z��?xh@�i���o����y��>A?�Ç?<,�?�?��a?���?R"�?��?,��������3�5��q�/�����0ˆ��.���"r���[��?��{����������w�Fjk����KeyAttrFlagsim�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!L�9KeyAttrDataFloatf�,xc`�V^V^(L��G�c4= B`4?��Dj``M�3=%�U)��KeyAttrRefCountim�
��AnimationCurveLH�N;SAnimCurveS��	DefaultD�?��KeyVerI�ͨKeyTimel��F8��
KeyValueFloatf�?"�KeyAttrFlagsi!\�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLx�M;SAnimCurveS�	DefaultD�?�KeyVerI�-�KeyTimel��F8X�
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiV�AnimationCurveL8#N;SAnimCurveSL�	DefaultD�?d�KeyVerI���KeyTimel��F8��
KeyValueFloatf�?�KeyAttrFlagsi!�KeyAttrDataFloatf

I�KeyAttrRefCounti}�AnimationCurveL�cN;SAnimCurveS��	DefaultD@+4�ĬKeyVerI�دKeyTimel��x�}L���n����i]^����R�8�ʥ�ޣ��v�e�)������QJ��2W�%/�l�vs;����^���M�Yi��矇�9.�2�ߨk²��ᄦ�t��z�$���]��~�)ܸ>�-���Ţ&f�nZ�3�����J�nP}�|_1�G۴�7q���'�j�ő��-oŕ�|���0/k&��l��J�<�h:�z�l�2�@��9\|��ç���]Ɔj�W�X:�Ѓ�F�cvU��<��O֘��|�4䮋��UB	�pq���F�=t�S�Q̺$��z��K�.af��.�GK�6TaGɷ	���i�y�l�����J����>=��-ѵvA>�8b���>��du)��0�-�<���Jۧ����f��Eb�n���لMB�}�4a���ؐ���}�TXa=у�Y���#�N������[�{��ӹ��$�+�T�l��Rw$����X&���w���%�`��~q"툗g�F�O��J����z_��
!�C�M8U�y.�n\��ˊ�+n�Kin�9���q�`~�
�'$Ӗ��v�|.t=L�܎bS��.�Y�6���a�v�+z�7�hvD�<�}d�o
�i�7-�����ٝ
i*������٥i���4�۴��ѕ��m��Ϙ3d�Ǻ��t:�%|;6%keX��\���~�ⱶ%tcS�6<�s:�$5��u�3lo�ıY�Wg�jߡ8̿���mޙ�p�&@�Es�L<����6x�-
KeyValueFloatf� zX�������$���ڽ���������{����Hpx�����[2���@e	$Ap��@��U�!���0���^���N�%��!�����o�?L4��.��8�[������'������	8��K����?�}����@���@W	9A�^�@W�@��S@���Y8�sX
�����A&�\!"��¿e"�?Jԣ@��
Aֹ!A�q.A��LAKhA�]A��WAdo�A��A�j�A�I�A>��A>zA~�'A�.@X�����=��l��E�\�=Ȇ�“�������„m��z“���k���6H��"��gl��CX���`�e�e�����Y��:U��{7����oG����m/0�8�*��A��f�{��P���V}��43���,���b����C��M��U�5k���q��X7��� ��<)���E���m��vz���!��Eq���7���׺�7r����I����������O�@ɪiA���A���A���A�.Bg��AQ��A�/�A[�9A-��@�c꿬���"���[�]�}�Y������KeyAttrFlagsi)�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!���KeyAttrDataFloatf��

















































































p��KeyAttrRefCounti)�
��AnimationCurveLx�N;SAnimCurveSӶ	DefaultD@��?�KeyVerI���KeyTimel��x�}L���n����i]^����R�8�ʥ�ޣ��v�e�)������QJ��2W�%/�l�vs;����^���M�Yi��矇�9.�2�ߨk²��ᄦ�t��z�$���]��~�)ܸ>�-���Ţ&f�nZ�3�����J�nP}�|_1�G۴�7q���'�j�ő��-oŕ�|���0/k&��l��J�<�h:�z�l�2�@��9\|��ç���]Ɔj�W�X:�Ѓ�F�cvU��<��O֘��|�4䮋��UB	�pq���F�=t�S�Q̺$��z��K�.af��.�GK�6TaGɷ	���i�y�l�����J����>=��-ѵvA>�8b���>��du)��0�-�<���Jۧ����f��Eb�n���لMB�}�4a���ؐ���}�TXa=у�Y���#�N������[�{��ӹ��$�+�T�l��Rw$����X&���w���%�`��~q"툗g�F�O��J����z_��
!�C�M8U�y.�n\��ˊ�+n�Kin�9���q�`~�
�'$Ӗ��v�|.t=L�܎bS��.�Y�6���a�v�+z�7�hvD�<�}d�o
�i�7-�����ٝ
i*������٥i���4�۴��ѕ��m��Ϙ3d�Ǻ��t:�%|;6%keX��\���~�ⱶ%tcS�6<�s:�$5��u�3lo�ıY�Wg�jߡ8̿���mޙ�p�&@�Es�L<����6xF�-
KeyValueFloatf� ��?l�?�i�?5:�?:\�?�}@TW@��?q/4?�|?>�w^��,���%þ{����I�B�A>{�?`'?
ۮ>A�Y>�I>Ͱ�>��=q�����9<s�(>/��>T�A?�-�?�^I?=S?+�H>�����1����=��-?u�?sġ>+�
>>Ul��Ъ��mľ����޾<[侎����$�q�.�}�e�}Is��۠�&6����6�c��U�)?fh�?�m	@NP@�D=@��?�f�?��>#"��b��5���˃D>��4?�?|�+@��d@��e@��H@�J	@NY�?ɜ3?a�_>F�+>I�>Ӓ�=�����RZ��ԝ���G�q=4�r���<�=�'ܨ����t�п3������ٿR>h�����Z:��4¿�Ip�ׯ�Y����Lÿp]�&��+��������Z>.#�>��O?ui�?��?���?g�?�?�BI?�?���>3m7>�>�6�>^�;?�>�?���?�R1@fy�@��u@��_@�#@�{�?p?X���s�'�dL���������(��F�˾��KeyAttrFlagsi)�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!ʿ�KeyAttrDataFloatf��

















































































���KeyAttrRefCounti)�
��AnimationCurveL8�M;SAnimCurveS��	DefaultD��
+@�KeyVerI�&�KeyTimel��x�}L���n����i]^����R�8�ʥ�ޣ��v�e�)������QJ��2W�%/�l�vs;����^���M�Yi��矇�9.�2�ߨk²��ᄦ�t��z�$���]��~�)ܸ>�-���Ţ&f�nZ�3�����J�nP}�|_1�G۴�7q���'�j�ő��-oŕ�|���0/k&��l��J�<�h:�z�l�2�@��9\|��ç���]Ɔj�W�X:�Ѓ�F�cvU��<��O֘��|�4䮋��UB	�pq���F�=t�S�Q̺$��z��K�.af��.�GK�6TaGɷ	���i�y�l�����J����>=��-ѵvA>�8b���>��du)��0�-�<���Jۧ����f��Eb�n���لMB�}�4a���ؐ���}�TXa=у�Y���#�N������[�{��ӹ��$�+�T�l��Rw$����X&���w���%�`��~q"툗g�F�O��J����z_��
!�C�M8U�y.�n\��ˊ�+n�Kin�9���q�`~�
�'$Ӗ��v�|.t=L�܎bS��.�Y�6���a�v�+z�7�hvD�<�}d�o
�i�7-�����ٝ
i*������٥i���4�۴��ѕ��m��Ϙ3d�Ǻ��t:�%|;6%keX��\���~�ⱶ%tcS�6<�s:�$5��u�3lo�ıY�Wg�jߡ8̿���mޙ�p�&@�Es�L<����6xm�-
KeyValueFloatf� $VXAE3EA�.A/�.Al�;A�pCAZ%HA��4A4�A\��@��@��D@��@?]�@��@:A�j0AbA���@��?��+������b^�M�@aJ@�M�@�͸@�.�@;�@�7�@���@�r�@np@O��?�?������d���:��$!��b�H@/�@�AA:�+A�O%A�[A��@{�@��@ɏ?]p'?��?���?]�K?	���Ήo�X����^/��:��YC���/�}��&��f��{�$��E�?�߮@��#AP�VA�-�A�Aʆ�AE�hA>�TAA�>Aw+A� A��A��A���@t)�@���@gҷ@�*�@�7y@槯�1�x��������pV����m�d���'��������ӆ����E��)���⽿�(��!-�����@^��U#��\���C9?�[�?�`N@]/�@�V�@��A�A<�@��@>3c@�?@��@�Л?c[����f�>ĭ��E����(���=�.R���Y���_���D�C(�|����V������q
.��`�,�4�7��KeyAttrFlagsi)�!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!	!!���KeyAttrDataFloatf��

















































































���KeyAttrRefCounti)�
+�AnimationCurveL��M;SAnimCurveS!�	DefaultD�?9�KeyVerI�b�KeyTimel��F8��
KeyValueFloatf�?��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�N;SAnimCurveS��	DefaultD�?��KeyVerI���KeyTimel��F8��
KeyValueFloatf�?�KeyAttrFlagsi!Q�KeyAttrDataFloatf

~�KeyAttrRefCounti��AnimationCurveL�NN;SAnimCurveS��	DefaultD�?��KeyVerI�"�KeyTimel��F8M�
KeyValueFloatf�?w�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�#MotionBuilder_SystemL���9SKTimeWarpManagerS	�Properties70��/PSMoBuTypeNameSKStringSSSBox��/PSMoBuSubTypeNameSKStringSSS�BPSMoBuObjectFullNameSKStringSSSKTimeWarpManager��.PSMoBuAttrBlindDataSBlobSSIx�
BinaryDataRp��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp��/MotionBuilder_GenericL ��9SFaceTime HD Camera (Display)S~�Properties70��1PSMoBuTypeNameSKStringSSSVideo�3PSMoBuSubTypeNameSKStringSSSLivec�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ResolutionFRSenumSSIR�)PSRecordToFileSboolSSI��(PSRecordAudioSboolSSI��'PS
CompressorSenumSSI��.PSMoBuAttrBlindDataSBlobSSI����
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineIq�2PSMoBuRelationBlindDataSBlobSSId�
BinaryDataRp�0MotionBuilder_GenericL9�9SFaceTime HD Camera (Built-in)S��Properties705�1PSMoBuTypeNameSKStringSSSVideov�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�(PSRecordAudioSboolSSI5�'PS
CompressorSenumSSIr�.PSMoBuAttrBlindDataSBlobSSI�e��
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp��!MotionBuilder_GenericL���9SVideo Output 1S{�Properties70��1PSMoBuTypeNameSKStringSSSVideo��5PSMoBuSubTypeNameSKStringSSSOutput6�GPSMoBuObjectFullNameSKStringSSSVideo Output 1Videoi�%PSDrawModeSenumSSI��.PSMoBuAttrBlindDataSBlobSSI)��.
BinaryDataR)p	UseMipMapIn�2PSMoBuRelationBlindDataSBlobSSIa�
BinaryDataRpZ�!MotionBuilder_SystemL�9SKVideoRendererSM�Properties70#�2PSMoBuTypeNameSKStringSSSObjectn�=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�GlobalStereoDisplayModeI@�2PSMoBuRelationBlindDataSBlobSSI3�
BinaryDataRp��!MotionBuilder_SystemL�I�9SKSerialManagerS��Properties70��:PSMoBuTypeNameSKStringSSSKSerialManager:�/PSMoBuSubTypeNameSKStringSSS��@PSMoBuObjectFullNameSKStringSSSKSerialManagerM�.PSMoBuAttrBlindDataSBlobSSI`@�e
BinaryDataR`pS
SerialManager�PortIJTCPPortIhInternalPortI�	IPAddressS0.0.0.0�	IPPortS3001FPortI�TCPPortIInternalPortIBaudRateI�%9
UseHardwareFCI��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRpI�#MotionBuilder_SystemL�%�9SKCharacterHelperS<�Properties70y�0PSMoBuTypeNameSKStringSSSTool��8PSMoBuSubTypeNameSKStringSSS	Character�BPSMoBuObjectFullNameSKStringSSSKCharacterHelper��.PSMoBuAttrBlindDataSBlobSSIu�
BinaryDataRp/�2PSMoBuRelationBlindDataSBlobSSID"�I
BinaryDataRDp7CHARACTER_TOOL9KEYING_MODEISIK_MANIPIqSYMETRY_EDITI�MARKERSET_VISIBILITYI�FLOOR_CONTACT_VISIBILITYI�FINGER_TIPS_VISIBILITYI	REACH_OVERRIDEI*RESIST_OVERRIDEI��MotionBuilder_SystemLP��9SKNLEManagerS��Properties70��7PSMoBuTypeNameSKStringSSSKNLEManager#�/PSMoBuSubTypeNameSKStringSSSn�=PSMoBuObjectFullNameSKStringSSSKNLEManagerF�.PSMoBuAttrBlindDataSBlobSSIs9�x
BinaryDataRspf	GlobalNLE0VersionIY	EditSEdite	IsCurrentI}ModelsI`ResultTrack�TakeNameSNoTake�	StartL��s;�����	StopL�FI�BGhostI*TDDDSRDD�DyIsLocalI�StartRefTrackIdxI�����StopRefTrackIdxI�����	
StartRatioD�?�		StopRatioD�?
KeepActiveI2	StartLL	StopLp6��5��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp2�MotionBuilder_SystemL���9SConstraintsS%�Properties70o�2PSMoBuTypeNameSKStringSSSFolder��7PSMoBuSubTypeNameSKStringSSSCategory�EPSMoBuObjectFullNameSKStringSSSConstraintsFolder��.PSMoBuAttrBlindDataSBlobSSI5��:
BinaryDataR5p(
FolderTypeSConstraints�2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRpg� MotionBuilder_SystemL���9S
KAudioManagerSZ�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�		LiveDelayDM�2PSMoBuRelationBlindDataSBlobSSI@�
BinaryDataRp��(MotionBuilder_SystemL��9SKMotionTriggerManagerS��Properties70�APSMoBuTypeNameSKStringSSSKMotionTriggerManagerU�/PSMoBuSubTypeNameSKStringSSS��GPSMoBuObjectFullNameSKStringSSSKMotionTriggerManager9�.PSMoBuAttrBlindDataSBlobSSI*,�/
BinaryDataR*p
KEEPACTIVEI��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRpF	MotionBuilder_SystemL;�9S
Story rootS9	Properties70d�5PSMoBuTypeNameSKStringSSS	TimelineX��/PSMoBuSubTypeNameSKStringSSS��FPSMoBuObjectFullNameSKStringSSSStory rootTimeline%�"PSMutedSboolSSIV�#PSSoloedSboolSSI��.PSRecordClipPathScharptrSSS�� PSTracksSobjectSS��#PS	TimelinesSobjectSS1�2PSQuaternionInterpolateSboolSSI��JPSRotationOffsetSColorRGBSColorSDDD��IPS
RotationPivotSColorRGBSColorSDDD7�IPS
ScalingOffsetSColorRGBSColorSDDD��HPSScalingPivotSColorRGBSColorSDDD��.PSTranslationActiveSboolSSI!�JPSTranslationMinSColorRGBSColorSDDDy�JPSTranslationMaxSColorRGBSColorSDDD��,PSTranslationMinXSboolSSI��,PSTranslationMinYSboolSSI'�,PSTranslationMinZSboolSSIa�,PSTranslationMaxXSboolSSI��,PSTranslationMaxYSboolSSI��,PSTranslationMaxZSboolSSI
�*PS
RotationOrderSenumSSIQ�6PSRotationSpaceForLimitOnlySboolSSI��;PSRotationStiffnessXSdoubleSNumberSD��;PSRotationStiffnessYSdoubleSNumberSD,	;PSRotationStiffnessZSdoubleSNumberSDj	0PSAxisLenSdoubleSNumberSD$@�	GPSPreRotationSColorRGBSColorSDDD	HPSPostRotationSColorRGBSColorSDDDN	+PSRotationActiveSboolSSI�	GPSRotationMinSColorRGBSColorSDDD�	GPSRotationMaxSColorRGBSColorSDDD/	)PSRotationMinXSboolSSIf	)PSRotationMinYSboolSSI�	)PSRotationMinZSboolSSI�	)PSRotationMaxXSboolSSI	)PSRotationMaxYSboolSSIB	)PSRotationMaxZSboolSSIx	(PSInheritTypeSenumSSI�	*PS
ScalingActiveSboolSSI	FPS
ScalingMinSColorRGBSColorSDDDX	FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?�	(PSScalingMinXSboolSSI�	(PSScalingMinYSboolSSI�	(PSScalingMinZSboolSSI0	(PSScalingMaxXSboolSSIf	(PSScalingMaxYSboolSSI�	(PSScalingMaxZSboolSSI�	PPSGeometricTranslationSColorRGBSColorSDDDU	MPSGeometricRotationSColorRGBSColorSDDD�	LPSGeometricScalingSColorRGBSColorSD�?D�?D�?�	6PS
MinDampRangeXSdoubleSNumberSD7	6PS
MinDampRangeYSdoubleSNumberSD{	6PS
MinDampRangeZSdoubleSNumberSD�	6PS
MaxDampRangeXSdoubleSNumberSD	6PS
MaxDampRangeYSdoubleSNumberSDG	6PS
MaxDampRangeZSdoubleSNumberSD�	9PSMinDampStrengthXSdoubleSNumberSD�	9PSMinDampStrengthYSdoubleSNumberSD		9PSMinDampStrengthZSdoubleSNumberSDc		9PSMaxDampStrengthXSdoubleSNumberSD�		9PSMaxDampStrengthYSdoubleSNumberSD�		9PSMaxDampStrengthZSdoubleSNumberSD6
	7PSPreferedAngleXSdoubleSNumberSD{
	7PSPreferedAngleYSdoubleSNumberSD�
	7PSPreferedAngleZSdoubleSNumberSD�
	!PSShowSboolSSI5	8PSNegativePercentShapeSupportSboolSSI�	KPSLcl TranslationSColorRGBSColorSDDD�	HPSLcl RotationSColorRGBSColorSDDD9	GPSLcl ScalingSColorRGBSColorSD�?D�?D�?z	3PS
VisibilitySdoubleSNumberSD�?�
	.PSMoBuAttrBlindDataSBlobSSI��
	�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI,	2PSMoBuRelationBlindDataSBlobSSI	
BinaryDataRp�#	MotionBuilder_SystemLXz�9S	Edit rootS�#	Properties70�	5PSMoBuTypeNameSKStringSSS	TimelineX	/PSMoBuSubTypeNameSKStringSSSo	EPSMoBuObjectFullNameSKStringSSSEdit rootTimeline�	"PSMutedSboolSSI�	#PSSoloedSboolSSI	.PSRecordClipPathScharptrSSS:	 PSTracksSobjectSSk	#PS	TimelinesSobjectSS�	2PSQuaternionInterpolateSboolSSI	JPSRotationOffsetSColorRGBSColorSDDDZ	IPS
RotationPivotSColorRGBSColorSDDD�	IPS
ScalingOffsetSColorRGBSColorSDDD	HPSScalingPivotSColorRGBSColorSDDDC	.PSTranslationActiveSboolSSI�	JPSTranslationMinSColorRGBSColorSDDD�	JPSTranslationMaxSColorRGBSColorSDDD-	,PSTranslationMinXSboolSSIg	,PSTranslationMinYSboolSSI�	,PSTranslationMinZSboolSSI�	,PSTranslationMaxXSboolSSI	,PSTranslationMaxYSboolSSIO	,PSTranslationMaxZSboolSSI�	*PS
RotationOrderSenumSSI�	6PSRotationSpaceForLimitOnlySboolSSI	;PSRotationStiffnessXSdoubleSNumberSD]	;PSRotationStiffnessYSdoubleSNumberSD�	;PSRotationStiffnessZSdoubleSNumberSD�	0PSAxisLenSdoubleSNumberSD$@9	GPSPreRotationSColorRGBSColorSDDD�	HPSPostRotationSColorRGBSColorSDDD�	+PSRotationActiveSboolSSI	GPSRotationMinSColorRGBSColorSDDDr	GPSRotationMaxSColorRGBSColorSDDD�	)PSRotationMinXSboolSSI�	)PSRotationMinYSboolSSI	)PSRotationMinZSboolSSIN	)PSRotationMaxXSboolSSI�	)PSRotationMaxYSboolSSI�	)PSRotationMaxZSboolSSI�	(PSInheritTypeSenumSSI*	*PS
ScalingActiveSboolSSI~	FPS
ScalingMinSColorRGBSColorSDDD�	FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?	(PSScalingMinXSboolSSI>	(PSScalingMinYSboolSSIt	(PSScalingMinZSboolSSI�	(PSScalingMaxXSboolSSI�	(PSScalingMaxYSboolSSI	(PSScalingMaxZSboolSSIt	PPSGeometricTranslationSColorRGBSColorSDDD�	MPSGeometricRotationSColorRGBSColorSDDD)	LPSGeometricScalingSColorRGBSColorSD�?D�?D�?m	6PS
MinDampRangeXSdoubleSNumberSD�	6PS
MinDampRangeYSdoubleSNumberSD�	6PS
MinDampRangeZSdoubleSNumberSD9	6PS
MaxDampRangeXSdoubleSNumberSD}	6PS
MaxDampRangeYSdoubleSNumberSD�	6PS
MaxDampRangeZSdoubleSNumberSD	9PSMinDampStrengthXSdoubleSNumberSDO	9PSMinDampStrengthYSdoubleSNumberSD�	9PSMinDampStrengthZSdoubleSNumberSD�	9PSMaxDampStrengthXSdoubleSNumberSD$	9PSMaxDampStrengthYSdoubleSNumberSDk	9PSMaxDampStrengthZSdoubleSNumberSD�	7PSPreferedAngleXSdoubleSNumberSD�	7PSPreferedAngleYSdoubleSNumberSD: 	7PSPreferedAngleZSdoubleSNumberSDi 	!PSShowSboolSSI� 	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_SystemL`'�9SKTimelineXManagerS�&	Properties70i$	=PSMoBuTypeNameSKStringSSSKTimelineXManager�$	/PSMoBuSubTypeNameSKStringSSS�$	CPSMoBuObjectFullNameSKStringSSSKTimelineXManagerG&	.PSMoBuAttrBlindDataSBlobSSI�:&	�
BinaryDataR�p�GlobalTimelineX3MuteIVTimeDiscontinuityIwTimeReferentialI�EditStartEndLLp6��5�EditZoomStartEndLLp6��5�&	2PSMoBuRelationBlindDataSBlobSSI�&	
BinaryDataRp!)	MotionBuilder_SystemLu�9SPosesS)	Properties70j'	2PSMoBuTypeNameSKStringSSSFolder�'	7PSMoBuSubTypeNameSKStringSSSCategory�'	?PSMoBuObjectFullNameSKStringSSS
PosesFolder�(	.PSMoBuAttrBlindDataSBlobSSI/�(	4
BinaryDataR/p"

FolderTypeSPoses)	2PSMoBuRelationBlindDataSBlobSSI�(	
BinaryDataRpj+	MotionBuilder_SystemL���9STakesS]+	Properties70�)	2PSMoBuTypeNameSKStringSSSFolder�)	7PSMoBuSubTypeNameSKStringSSSCategoryE*	?PSMoBuObjectFullNameSKStringSSS
TakesFolder�*	.PSMoBuAttrBlindDataSBlobSSI/�*	4
BinaryDataR/p"

FolderTypeSTakesP+	2PSMoBuRelationBlindDataSBlobSSIC+	
BinaryDataRpO/	MotionBuilder_SystemL0��9SGlobal LightSB/	Properties70
,	9PSMoBuTypeNameSKStringSSS
GlobalShadingL,	4PSMoBuSubTypeNameSKStringSSSLight�,	>PSMoBuObjectFullNameSKStringSSSGlobal Light�,	BPS
Ambient ColorSColorSSAD����?D����?D����?4-	>PS	Fog ColorSColorSSAD�?D�?D�?o-	-PS	Fog BeginSNumberSSAD@33�?�-	+PSFog EndSNumberSSAD@�@�-	/PSFog DensitySNumberSSAD@.	$PSFogModeSenumSSIK.	&PS	FogEnableSboolSSI�.	.PSMoBuAttrBlindDataSBlobSSI�.	
BinaryDataRp5/	2PSMoBuRelationBlindDataSBlobSSI(/	
BinaryDataRp�4	MotionBuilder_SystemLp��9SRendererS�4	Properties70�/	4PSMoBuTypeNameSKStringSSSRenderer*0	6PSMoBuSubTypeNameSKStringSSSDefault|0	DPSMoBuObjectFullNameSKStringSSSRendererRenderer�0	+PSFrustumCullingSboolSSI�0	*PS
DisplayNormalSboolSSI*1	/PSDisplayBoundingBoxSboolSSIs1	;PSDisplayHierarchicalBoundingBoxSboolSSI�1	,PSIDBufferPickingSboolSSI�1	=PSIDBufferPickingAlphaSdoubleSNumberSD�?22	,PSIDBufferDisplaySboolSSIn2	.PSSelectionOverrideSboolSSI�2	FPSSelectionOverrideTransparencySdoubleSNumberSD�?"3	RPSSelectionOverrideColorSColorRGBSColorSD�������?D�?D�������?g3	7PSCurrentCallbackIndexSintSIntegerSI�����3	1PSAdvancedMaterialModeSboolSSI4	.PSMoBuAttrBlindDataSBlobSSI4	
BinaryDataRp�4	2PSMoBuRelationBlindDataSBlobSSI�4	
BinaryDataRpu=	&MotionBuilder_SystemL��9SPython Tool ManagerSh=	Properties70L5	4PSMoBuTypeNameSKStringSSS__FBTool�5	/PSMoBuSubTypeNameSKStringSSS�5	EPSMoBuObjectFullNameSKStringSSSPython Tool Manager6	'PSCaptionScharptrSSSC6	$PSEnabledSboolSSIv6	%PSReadOnlySboolSSI�6	$PSVisibleSboolSSI�6	'PSLeftSintSIntegerSI7	&PSTopSintSIntegerSIG7	(PSWidthSintSIntegerSI~7	)PSHeightSintSIntegerSI�7	*PSAnchorsSintSIntegerSI�7	(PSSkinContextSenumSSI8	$PSHintScharptrSSSU8	)PS	HintMouseScharptrSSS�8	0PS
HintMouseLeftSintSIntegerSI�����8	/PSHintMouseTopSintSIntegerSI����9	1PSHintMouseWidthSintSIntegerSI����O9	2PSHintMouseHeightSintSIntegerSI�����9	1PSHintIsTextCompletionSboolSSI�9	#PSActiveSboolSSI�9	'PS
ActiveControlSobjectSS.:	,PSBackgroundBrushSenumSSIj:	.PSBorderStyleSintSIntegerSI�:	+PSPositionSintSIntegerSI�:	-PS
StartWSizeSintSIntegerSI�;	-PS
StartHSizeSintSIntegerSI�R;	+PSMaxWSizeSintSIntegerSI�����;	+PSMaxHSizeSintSIntegerSI�����;	+PSMinWSizeSintSIntegerSI��;	+PSMinHSizeSintSIntegerSI����7<	,PS	StartXPosSintSIntegerSI����q<	,PS	StartYPosSintSIntegerSI�����<	.PSMoBuAttrBlindDataSBlobSSI�<	
BinaryDataRp[=	2PSMoBuRelationBlindDataSBlobSSIN=	
BinaryDataRpDF	(MotionBuilder_SystemL��9SBatch Tool (scripted)S7F	Properties70>	4PSMoBuTypeNameSKStringSSS__FBToolV>	/PSMoBuSubTypeNameSKStringSSS�>	GPSMoBuObjectFullNameSKStringSSSBatch Tool (scripted)�>	'PSCaptionScharptrSSS?	$PSEnabledSboolSSIE?	%PSReadOnlySboolSSIw?	$PSVisibleSboolSSI�?	'PSLeftSintSIntegerSI�?	&PSTopSintSIntegerSI@	(PSWidthSintSIntegerSIM@	)PSHeightSintSIntegerSI�@	*PSAnchorsSintSIntegerSI�@	(PSSkinContextSenumSSI�@	$PSHintScharptrSSS$A	)PS	HintMouseScharptrSSSbA	0PS
HintMouseLeftSintSIntegerSI�����A	/PSHintMouseTopSintSIntegerSI�����A	1PSHintMouseWidthSintSIntegerSI����B	2PSHintMouseHeightSintSIntegerSI����]B	1PSHintIsTextCompletionSboolSSI�B	#PSActiveSboolSSI�B	'PS
ActiveControlSobjectSS�B	,PSBackgroundBrushSenumSSI9C	.PSBorderStyleSintSIntegerSIrC	+PSPositionSintSIntegerSI�C	-PS
StartWSizeSintSIntegerSI�C	-PS
StartHSizeSintSIntegerSIm!D	+PSMaxWSizeSintSIntegerSI����ZD	+PSMaxHSizeSintSIntegerSI�����D	+PSMinWSizeSintSIntegerSI��D	+PSMinHSizeSintSIntegerSI����E	,PS	StartXPosSintSIntegerSI����@E	,PS	StartYPosSintSIntegerSI�����E	.PSMoBuAttrBlindDataSBlobSSI�E	
BinaryDataRp*F	2PSMoBuRelationBlindDataSBlobSSIF	
BinaryDataRp)O	3MotionBuilder_SystemL�T�9S Character Selection/Key ControlsSO	Properties70�F	4PSMoBuTypeNameSKStringSSS__FBTool0G	/PSMoBuSubTypeNameSKStringSSS�G	RPSMoBuObjectFullNameSKStringSSS Character Selection/Key Controls�G	'PSCaptionScharptrSSS�G	$PSEnabledSboolSSI*H	%PSReadOnlySboolSSI\H	$PSVisibleSboolSSI�H	'PSLeftSintSIntegerSI�H	&PSTopSintSIntegerSI�H	(PSWidthSintSIntegerSI2I	)PSHeightSintSIntegerSIjI	*PSAnchorsSintSIntegerSI�I	(PSSkinContextSenumSSI�I	$PSHintScharptrSSS	J	)PS	HintMouseScharptrSSSGJ	0PS
HintMouseLeftSintSIntegerSI�����J	/PSHintMouseTopSintSIntegerSI�����J	1PSHintMouseWidthSintSIntegerSI����K	2PSHintMouseHeightSintSIntegerSI����BK	1PSHintIsTextCompletionSboolSSIsK	#PSActiveSboolSSI�K	'PS
ActiveControlSobjectSS�K	,PSBackgroundBrushSenumSSIL	.PSBorderStyleSintSIntegerSIWL	+PSPositionSintSIntegerSI�L	-PS
StartWSizeSintSIntegerSI��L	-PS
StartHSizeSintSIntegerSIxM	+PSMaxWSizeSintSIntegerSI����?M	+PSMaxHSizeSintSIntegerSI����xM	+PSMinWSizeSintSIntegerSI��M	+PSMinHSizeSintSIntegerSI�����M	,PS	StartXPosSintSIntegerSI����%N	,PS	StartYPosSintSIntegerSI�����N	.PSMoBuAttrBlindDataSBlobSSI�N	
BinaryDataRpO	2PSMoBuRelationBlindDataSBlobSSIO	
BinaryDataRp�W	MotionBuilder_SystemL(�9S
FBX ExportS�W	Properties70�O	4PSMoBuTypeNameSKStringSSS__FBTool�O	/PSMoBuSubTypeNameSKStringSSSIP	<PSMoBuObjectFullNameSKStringSSS
FBX Export~P	'PSCaptionScharptrSSS�P	$PSEnabledSboolSSI�P	%PSReadOnlySboolSSIQ	$PSVisibleSboolSSIJQ	'PSLeftSintSIntegerSI~Q	&PSTopSintSIntegerSI�Q	(PSWidthSintSIntegerSI�Q	)PSHeightSintSIntegerSI#R	*PSAnchorsSintSIntegerSIYR	(PSSkinContextSenumSSI�R	$PSHintScharptrSSS�R	)PS	HintMouseScharptrSSSS	0PS
HintMouseLeftSintSIntegerSI����=S	/PSHintMouseTopSintSIntegerSI����|S	1PSHintMouseWidthSintSIntegerSI�����S	2PSHintMouseHeightSintSIntegerSI�����S	1PSHintIsTextCompletionSboolSSI,T	#PSActiveSboolSSIaT	'PS
ActiveControlSobjectSS�T	,PSBackgroundBrushSenumSSI�T	.PSBorderStyleSintSIntegerSIU	+PSPositionSintSIntegerSIKU	-PS
StartWSizeSintSIntegerSI^�U	-PS
StartHSizeSintSIntegerSI��U	+PSMaxWSizeSintSIntegerSI�����U	+PSMaxHSizeSintSIntegerSI����1V	+PSMinWSizeSintSIntegerSI�jV	+PSMinHSizeSintSIntegerSI�����V	,PS	StartXPosSintSIntegerSI�����V	,PS	StartYPosSintSIntegerSI����QW	.PSMoBuAttrBlindDataSBlobSSIDW	
BinaryDataRp�W	2PSMoBuRelationBlindDataSBlobSSI�W	
BinaryDataRp�	 MotionBuilder_SystemL��9S
HierarchyViewS�	Properties70�X	;PSMoBuTypeNameSKStringSSSKtHierarchyView�X	/PSMoBuSubTypeNameSKStringSSSY	?PSMoBuObjectFullNameSKStringSSS
HierarchyViewD	.PSMoBuAttrBlindDataSBlobSSI�%7	�%
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�	
BinaryDataRp^�	MotionBuilder_SystemL�X�9S	TransportSQ�	Properties70e�	,PSMoBuTypeNameSKStringSSS��	/PSMoBuSubTypeNameSKStringSSS�	;PSMoBuObjectFullNameSKStringSSS	Transport �	'PSCaptionScharptrSSSR�	$PSEnabledSboolSSI��	%PSReadOnlySboolSSI��	$PSVisibleSboolSSI�	'PSLeftSintSIntegerSI �	&PSTopSintSIntegerSIV�	(PSWidthSintSIntegerSI��	)PSHeightSintSIntegerSIł	*PSAnchorsSintSIntegerSI��	(PSSkinContextSenumSSI-�	$PSHintScharptrSSSd�	)PS	HintMouseScharptrSSS��	0PS
HintMouseLeftSintSIntegerSI����߃	/PSHintMouseTopSintSIntegerSI�����	1PSHintMouseWidthSintSIntegerSI����^�	2PSHintMouseHeightSintSIntegerSI������	1PSHintIsTextCompletionSboolSSI΄	#PSActiveSboolSSI�	'PS
ActiveControlSobjectSS=�	,PSBackgroundBrushSenumSSIy�	.PSBorderStyleSintSIntegerSI��	+PSPositionSintSIntegerSI͈	.PSMoBuAttrBlindDataSBlobSSI���	�
BinaryDataR�p�Transport Tool Settings>ZoomBar Settings�Take 001wZoomWindowModeI�ZoomWindowTimeLLp6��51Run_JumpDownHigh_Roll_Run�ZoomWindowModeI$ZoomWindowTimeLLp6��5Audio Display SettingsAudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveI�SettingsM
TimeFormatIkSnapOnFramesI�ReferenceTimeIndexI����D�	2PSMoBuRelationBlindDataSBlobSSI7�	
BinaryDataRpu�	MotionBuilder_SystemL ��9SFCurveSh�	Properties70�	,PSMoBuTypeNameSKStringSSS(�	/PSMoBuSubTypeNameSKStringSSSn�	8PSMoBuObjectFullNameSKStringSSSFCurve��	'PSCaptionScharptrSSSՊ	$PSEnabledSboolSSI�	%PSReadOnlySboolSSI:�	$PSVisibleSboolSSIo�	'PSLeftSintSIntegerSI��	&PSTopSintSIntegerSIً	(PSWidthSintSIntegerSI�	)PSHeightSintSIntegerSIH�	*PSAnchorsSintSIntegerSI~�	(PSSkinContextSenumSSI��	$PSHintScharptrSSS�	)PS	HintMouseScharptrSSS%�	0PS
HintMouseLeftSintSIntegerSI����b�	/PSHintMouseTopSintSIntegerSI������	1PSHintMouseWidthSintSIntegerSI�����	2PSHintMouseHeightSintSIntegerSI���� �	1PSHintIsTextCompletionSboolSSIQ�	#PSActiveSboolSSI��	'PS
ActiveControlSobjectSS��	,PSBackgroundBrushSenumSSI��	.PSBorderStyleSintSIntegerSI5�	+PSPositionSintSIntegerSI�	.PSMoBuAttrBlindDataSBlobSSIJא	O
BinaryDataRJp=FCurve Tool Settings0FCurve Editor Settings#Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveI[�	2PSMoBuRelationBlindDataSBlobSSIN�	
BinaryDataRp��	MotionBuilder_GenericL�m�9S
GlobalInfoS��	Properties70�	5PSMoBuTypeNameSKStringSSS	SceneInfoU�	7PSMoBuSubTypeNameSKStringSSSUserData��	GPSMoBuObjectFullNameSKStringSSSGlobalInfoSceneInfo�	.PSMoBuAttrBlindDataSBlobSSI���	�
BinaryDataR�pVersionId�MetaDataHVersionId_TitleSxSubjectS�AuthorS�KeywordsS�RevisionS�CommentS}�	2PSMoBuRelationBlindDataSBlobSSIp�	
BinaryDataRp^,
Connections�	CSOOL�|:L
�	CSOOLH+�:L3v)1�	CSOOLP/�:L�v)X�	CSOOLX3�:LHQv)�	CSOOL`7�:L(=v)��	CSOOL��:L0Bv)͕	CSOOL�O�:L8Gv)��	CSOOL�S�:L.v)�	CSOOL��9L�|:B�	CSOOL�w�:L�f�:i�	CSOOL��:L�f�:��	CSOOL�k�:L�f�:��	CSOOL�H�:L�f�:ޖ	CSOOLP��:L�f�:�	CSOOLXM�:L�f�:,�	CSOOL�7�:L�f�:S�	CSOOL���:L�f�:z�	CSOOL��:L�f�:��	CSOOL0W�:L�f�:ȗ	CSOOL�9�:L�f�:�	CSOOL�݅:L�f�:�	CSOOL�A�:L�f�:=�	CSOOL-�:L�f�:d�	CSOOL��:L�f�:��	CSOOL��:L�f�:��	CSOOL���:L�f�:٘	CSOOL�:L�f�:�	CSOOL [�:L�f�:'�	CSOOLp�:L�f�:N�	CSOOL��:L�f�:u�	CSOOL�w�:L�f�:��	CSOOL���:L�f�:Ù	CSOOL��:L�f�:�	CSOOL�@�:L�f�:�	CSOOL˅:L�f�:8�	CSOOL2�:L�f�:_�	CSOOLx�:L�f�:��	CSOOL��:L�f�:��	CSOOL���:L�f�:Ԛ	CSOOL��:L�f�:��	CSOOL�-�:L�f�:"�	CSOOL م:L�f�:I�	CSOOL`'�:L�f�:p�	CSOOLhR�:L�f�:��	CSOOLh�:L�f�:��	CSOOL�U�:L�f�:�	CSOOL�م:L�f�:�	CSOOL���:L�f�:3�	CSOOL`ۅ:L�f�:Z�	CSOOL�…:L�f�:��	CSOOL0{�:L�f�:��	CSOOL"�:L�f�:Ϝ	CSOOL���:L�f�:��	CSOOL�:L�f�:�	CSOOL�O�:L�f�:D�	CSOOLHƅ:L�f�:k�	CSOOL�҅:L�f�:��	CSOOL8��:L�f�:��	CSOOL�b�:L�f�:��	CSOOL0��:L�f�:�	CSOOLH�:L�f�:.�	CSOOL`B�:L�f�:U�	CSOOL I�:L�f�:|�	CSOOL�q�:L�f�:��	CSOOL�E�:L�f�:ʞ	CSOOL�&�:L�f�:�	CSOOL��:L�f�:�	CSOOL�:L�f�:?�	CSOOLhI�:L�f�:f�	CSOOL��:L�f�:��	CSOOLp�:L�f�:��	CSOOL(Y�:L�f�:۟	CSOOLX��:L�f�:�	CSOOL���:L�f�:)�	CSOOL�ą:L�f�:P�	CSOOL�N�:L�f�:w�	CSOOL R�:L�f�:��	CSOOL�	�:L�f�:Š	CSOOL��:L�f�:�	CSOOL8C�:L�f�:�	CSOOL���:L�f�::�	CSOOL(5�:L�f�:a�	CSOOL�G�:L�f�:��	CSOOL�3�:L�f�:��	CSOOL8�:L�f�:֡	CSOOL(,�:L�f�:��	CSOOL@��:L�f�:$�	CSOOLȔ�:L�f�:K�	CSOOLh��:L�f�:r�	CSOOLȦ�:L�f�:��	CSOOLp��:L�f�:��	CSOOL�+�:L�f�:�	CSOOL`��:L�f�:�	CSOOL�n�:L�f�:5�	CSOOLH��:L�f�:\�	CSOOLl�:L�f�:��	CSOOL�d�:L�f�:��	CSOOLP�:L�f�:ѣ	CSOOL�%�:L�f�:��	CSOOL�߅:L�f�:�	CSOOL��:L�f�:F�	CSOOL���:L�f�:m�	CSOOL0!�:L�f�:��	CSOOL�e�:L�f�:��	CSOOL`Ʌ:L�f�:�	CSOOLж�:L�f�:	�	CSOOL�P�:L�f�:0�	CSOOL���:L�f�:W�	CSOOL�\Q;L�|:~�	CSOOL�|:L�|:��	CSOOL�EQ;L�|:̥	CSOOL�|:L�|:�	CSOOL���9L�|:�	CSOOLǰ9L�|:U�	-CSOPL�w�:L�|:SLcl Translation��	-CSOPL~�9L�|:SLcl TranslationȦ	*CSOPL��:L�|:SLcl Rotation�	*CSOPL�{�9L�|:SLcl Rotation7�	)CSOPL�k�:L�|:SLcl Scalingn�	)CSOPL�w�9L�|:SLcl Scaling��	CSOOL�IQ;L�|:��	CSOOL �|:L�|:��	*CSOPL�H�:L�|:SLcl Rotation,�	*CSOPLu�9L�|:SLcl Rotationc�	)CSOPLP��:L�|:SLcl Scaling��	)CSOPLr�9L�|:SLcl Scaling��	CSOOL`EQ;L �|:�	CSOOL(�|:L �|:�	CSOOLXSK;L �|:6�	CSOOLx�N:L �|:]�	CSOOL�MQ;L(�|:��	CSOOL0�|:L(�|:��	*CSOPLXM�:L(�|:SLcl Rotation��	*CSOPL�o�9L(�|:SLcl Rotation+�	)CSOPL�7�:L(�|:SLcl Scalingb�	)CSOPL�l�9L(�|:SLcl Scaling��	CSOOL�VQ;L0�|:��	CSOOL8�|:L0�|:ת	CSOOL@�|:L0�|:��	CSOOLH�|:L0�|:%�	CSOOLHɄ<L0�|:L�	CSOOLP΄<L0�|:s�	CSOOLXӄ<L0�|:��	CSOOL`؄<L0�|:��	CSOOLh݄<L0�|:�	CSOOLp�<L0�|:�	CSOOLx�<L0�|:6�	CSOOL 0K;L0�|:]�	CSOOL(5K;L0�|:��	CSOOL0:K;L0�|:��	CSOOL8?K;L0�|:Ҭ	CSOOL@DK;L0�|:��	CSOOLHIK;L0�|: �	CSOOLPNK;L0�|:X�	*CSOPL���:L0�|:SLcl Rotation��	*CSOPL j�9L0�|:SLcl Rotationǭ	)CSOPL��:L0�|:SLcl Scaling��	)CSOPLxf�9L0�|:SLcl Scaling%�	CSOOL QQ;L8�|:L�	CSOOL aQ;L@�|:s�	CSOOL {Q;LH�|:��	CSOOLP�|:LH�|:��	CSOOLX�|:LH�|:�	CSOOL ��<LH�|:�	CSOOL(��<LH�|:6�	CSOOL0��<LH�|:]�	CSOOL8��<LH�|:��	CSOOL@Ą<LH�|:��	CSOOL`{Q;LP�|:ү	CSOOL�AQ;LX�|:��	CSOOL�yQ;L ��< �	CSOOL�eQ;L(��<G�	CSOOL hQ;L0��<n�	CSOOL�kQ;L8��<��	CSOOL�vQ;L@Ą<��	CSOOL`wQ;LHɄ<�	CSOOL vQ;LP΄<
�	CSOOL`uQ;LXӄ<1�	CSOOL�tQ;L`؄<X�	CSOOL�sQ;Lh݄<�	CSOOL sQ;Lp�<��	CSOOL`rQ;Lx�<ͱ	CSOOL`qQ;L 0K;��	CSOOL�pQ;L(5K;�	CSOOL�oQ;L0:K;B�	CSOOL�nQ;L8?K;i�	CSOOL nQ;L@DK;��	CSOOL`mQ;LHIK;��	CSOOL mQ;LPNK;޲	CSOOL��Q;LXSK;�	CSOOL`XK;LXSK;=�	*CSOPL0W�:LXSK;SLcl Rotationu�	*CSOPL�c�9LXSK;SLcl Rotation��	)CSOPL�9�:LXSK;SLcl Scaling�	)CSOPL a�9LXSK;SLcl Scaling
�	CSOOL`�Q;L`XK;1�	CSOOLh]K;L`XK;i�	*CSOPL�݅:L`XK;SLcl Rotation��	*CSOPL�^�9L`XK;SLcl Rotationش	)CSOPL�A�:L`XK;SLcl Scaling�	)CSOPL��9L`XK;SLcl Scaling6�	CSOOL �Q;Lh]K;]�	CSOOLpbK;Lh]K;��	*CSOPL-�:Lh]K;SLcl Rotation͵	*CSOPL�Z�9Lh]K;SLcl Rotation�	)CSOPL��:Lh]K;SLcl Scaling;�	)CSOPLHW�9Lh]K;SLcl Scalingb�	CSOOL�Q;LpbK;��	CSOOLxgK;LpbK;��	CSOOL���9LpbK;׶	CSOOL���9LpbK;��	CSOOL��9LpbK;%�	CSOOL�9LpbK;]�	*CSOPL��:LpbK;SLcl Rotation��	*CSOPL�T�9LpbK;SLcl Rotation̷	)CSOPL���:LpbK;SLcl Scaling�	)CSOPLQ�9LpbK;SLcl Scaling*�	CSOOL��Q;LxgK;Q�	CSOOL���9LxgK;��	*CSOPL�:LxgK;SLcl Rotation��	*CSOPL�N�9LxgK;SLcl Rotation��	)CSOPL [�:LxgK;SLcl Scaling/�	)CSOPL�J�9LxgK;SLcl ScalingV�	CSOOL`�Q;L���9}�	CSOOL���9L���9��	*CSOPLp�:L���9SLcl Rotation�	*CSOPLH�9L���9SLcl Rotation$�	)CSOPL��:L���9SLcl Scaling[�	)CSOPL�E�9L���9SLcl Scaling��	CSOOL �Q;L���9��	*CSOPL�w�:L���9SLcl Rotation�	*CSOPL���9L���9SLcl Rotation)�	)CSOPL���:L���9SLcl Scaling`�	)CSOPL�A�9L���9SLcl Scaling��	CSOOL��Q;L���9��	CSOOL���9L���9�	*CSOPL��:L���9SLcl Rotation�	*CSOPL`?�9L���9SLcl RotationU�	)CSOPL�@�:L���9SLcl Scaling��	)CSOPL�;�9L���9SLcl Scaling��	CSOOL��Q;L���9ڼ	CSOOL���9L���9�	*CSOPL˅:L���9SLcl RotationJ�	*CSOPLH��9L���9SLcl Rotation��	)CSOPL2�:L���9SLcl Scaling��	)CSOPL�7�9L���9SLcl Scaling߽	CSOOL`�Q;L���9�	*CSOPLx�:L���9SLcl RotationO�	*CSOPL�5�9L���9SLcl Rotation��	)CSOPL��:L���9SLcl Scaling��	)CSOPL�2�9L���9SLcl Scaling�	CSOOL �Q;L���9�	CSOOL���9L���9C�	*CSOPL���:L���9SLcl Rotation{�	*CSOPL00�9L���9SLcl Rotation��	)CSOPL��:L���9SLcl Scaling�	)CSOPL�,�9L���9SLcl Scaling�	CSOOL��Q;L���97�	CSOOL���9L���9o�	*CSOPL�-�:L���9SLcl Rotation��	*CSOPLX��9L���9SLcl Rotation��	)CSOPL م:L���9SLcl Scaling�	)CSOPL�(�9L���9SLcl Scaling<�	CSOOL��Q;L���9t�	*CSOPL`'�:L���9SLcl Rotation��	*CSOPL0'�9L���9SLcl Rotation��	)CSOPLhR�:L���9SLcl Scaling�	)CSOPL�#�9L���9SLcl ScalingA�	CSOOL`�Q;L��9h�	CSOOL�	�9L��9��	*CSOPLh�:L��9SLcl Rotation��	*CSOPL!�9L��9SLcl Rotation�	)CSOPL�U�:L��9SLcl ScalingF�	)CSOPL0�9L��9SLcl Scalingm�	CSOOL �Q;L�	�9��	CSOOL�9L�	�9��	*CSOPL�م:L�	�9SLcl Rotation�	*CSOPL8�9L�	�9SLcl Rotation;�	)CSOPL���:L�	�9SLcl Scalingr�	)CSOPL@�9L�	�9SLcl Scaling��	CSOOL��Q;L�9��	*CSOPL`ۅ:L�9SLcl Rotation	�	*CSOPL�9L�9SLcl Rotation@�	)CSOPL�…:L�9SLcl Scalingw�	)CSOPLX�9L�9SLcl Scaling��	CSOOL��Q;L�9��	CSOOLh�N:L�9��	*CSOPL0{�:L�9SLcl Rotation5�	*CSOPL��9L�9SLcl Rotationl�	)CSOPL"�:L�9SLcl Scaling��	)CSOPL��9L�9SLcl Scaling��	CSOOL`�Q;Lh�N:��	CSOOLp�N:Lh�N:)�	*CSOPL���:Lh�N:SLcl Rotationa�	*CSOPL0��9Lh�N:SLcl Rotation��	)CSOPL�:Lh�N:SLcl Scaling��	)CSOPL��9Lh�N:SLcl Scaling��	CSOOL �Q;Lp�N:.�	*CSOPL�O�:Lp�N:SLcl Rotationf�	*CSOPL���9Lp�N:SLcl Rotation��	)CSOPLHƅ:Lp�N:SLcl Scaling��	)CSOPL@�9Lp�N:SLcl Scaling��	CSOOL��Q;Lx�N:"�	CSOOL��N:Lx�N:Z�	*CSOPL�҅:Lx�N:SLcl Rotation��	*CSOPLH�9Lx�N:SLcl Rotation��	)CSOPL8��:Lx�N:SLcl Scaling�	)CSOPLx�9Lx�N:SLcl Scaling'�	CSOOL��Q;L��N:N�	CSOOL��N:L��N:��	-CSOPL�b�:L��N:SLcl Translation��	-CSOPL��9L��N:SLcl Translation��	*CSOPL0��:L��N:SLcl Rotation4�	*CSOPL���9L��N:SLcl Rotationk�	)CSOPLH�:L��N:SLcl Scaling��	)CSOPL(��9L��N:SLcl Scaling��	CSOOL`�Q;L��N:��	CSOOL��N:L��N:+�	-CSOPL`B�:L��N:SLcl Translationf�	-CSOPL���9L��N:SLcl Translation��	*CSOPL I�:L��N:SLcl Rotation��	*CSOPL���9L��N:SLcl Rotation
�	)CSOPL�q�:L��N:SLcl ScalingD�	)CSOPL���9L��N:SLcl Scalingk�	CSOOL �Q;L��N:��	CSOOL��N:L��N:��	CSOOL��N:L��N:��	CSOOL�^�9L��N:�	CSOOL�m�9L��N:.�	CSOOL�|�9L��N:f�	*CSOPL�E�:L��N:SLcl Rotation��	*CSOPL��9L��N:SLcl Rotation��	)CSOPL�&�:L��N:SLcl Scaling�	)CSOPL��9L��N:SLcl Scaling3�	CSOOL��Q;L��N:Z�	CSOOL��N:L��N:��	*CSOPL��:L��N:SLcl Rotation��	*CSOPL���9L��N:SLcl Rotation�	)CSOPL�:L��N:SLcl Scaling8�	)CSOPL���9L��N:SLcl Scaling_�	CSOOL��Q;L��N:��	CSOOL��N:L��N:��	*CSOPLhI�:L��N:SLcl Rotation��	*CSOPLp��9L��N:SLcl Rotation-�	)CSOPL��:L��N:SLcl Scalingd�	)CSOPLX��9L��N:SLcl Scaling��	CSOOL`�Q;L��N:��	*CSOPLp�:L��N:SLcl Rotation��	*CSOPL@��9L��N:SLcl Rotation2�	)CSOPL(Y�:L��N:SLcl Scalingi�	)CSOPL(��9L��N:SLcl Scaling��	CSOOL �Q;L��N:��	CSOOL��N:L��N:��	*CSOPLX��:L��N:SLcl Rotation'�	*CSOPL��9L��N:SLcl Rotation^�	)CSOPL���:L��N:SLcl Scaling��	)CSOPL���9L��N:SLcl Scaling��	CSOOL��Q;L��N:��	CSOOL��N:L��N:�	*CSOPL�ą:L��N:SLcl RotationS�	*CSOPL��9L��N:SLcl Rotation��	)CSOPL�N�:L��N:SLcl Scaling��	)CSOPLȵ�9L��N:SLcl Scaling��	CSOOL��Q;L��N: �	*CSOPL R�:L��N:SLcl RotationX�	*CSOPL���9L��N:SLcl Rotation��	)CSOPL�	�:L��N:SLcl Scaling��	)CSOPL���9L��N:SLcl Scaling��	CSOOL`�Q;L�^�9�	CSOOL�c�9L�^�9L�	*CSOPL��:L�^�9SLcl Rotation��	*CSOPL���9L�^�9SLcl Rotation��	)CSOPL8C�:L�^�9SLcl Scaling��	)CSOPLh��9L�^�9SLcl Scaling�	CSOOL �Q;L�c�9@�	CSOOL�h�9L�c�9x�	*CSOPL���:L�c�9SLcl Rotation��	*CSOPLP��9L�c�9SLcl Rotation��	)CSOPL(5�:L�c�9SLcl Scaling�	)CSOPL���9L�c�9SLcl ScalingE�	CSOOL��Q;L�h�9}�	*CSOPL�G�:L�h�9SLcl Rotation��	*CSOPL ��9L�h�9SLcl Rotation��	)CSOPL�3�:L�h�9SLcl Scaling#�	)CSOPLx��9L�h�9SLcl ScalingJ�	CSOOL��Q;L�m�9q�	CSOOL�r�9L�m�9��	*CSOPL8�:L�m�9SLcl Rotation��	*CSOPL��9L�m�9SLcl Rotation�	)CSOPL(,�:L�m�9SLcl ScalingO�	)CSOPLH��9L�m�9SLcl Scalingv�	CSOOL`�Q;L�r�9��	CSOOL�w�9L�r�9��	*CSOPL@��:L�r�9SLcl Rotation
�	*CSOPL���9L�r�9SLcl RotationD�	)CSOPLȔ�:L�r�9SLcl Scaling{�	)CSOPL��9L�r�9SLcl Scaling��	CSOOL �Q;L�w�9��	*CSOPLh��:L�w�9SLcl Rotation�	*CSOPL���9L�w�9SLcl RotationI�	)CSOPLȦ�:L�w�9SLcl Scaling��	)CSOPL��9L�w�9SLcl Scaling��	CSOOL��Q;L�|�9��	CSOOL聬9L�|�9�	*CSOPLp��:L�|�9SLcl Rotation>�	*CSOPL`��9L�|�9SLcl Rotationu�	)CSOPL�+�:L�|�9SLcl Scaling��	)CSOPL���9L�|�9SLcl Scaling��	CSOOL��Q;L聬9��	CSOOL���9L聬92�	*CSOPL`��:L聬9SLcl Rotationj�	*CSOPL0��9L聬9SLcl Rotation��	)CSOPL�n�:L聬9SLcl Scaling��	)CSOPL0�n;L聬9SLcl Scaling��	CSOOL`�Q;L���97�	*CSOPLH��:L���9SLcl Rotationo�	*CSOPL�o;L���9SLcl Rotation��	)CSOPLl�:L���9SLcl Scaling��	)CSOPL�n;L���9SLcl Scaling�	CSOOL �Q;L���9+�	CSOOL��9L���9c�	*CSOPL�d�:L���9SLcl Rotation��	*CSOPLo;L���9SLcl Rotation��	)CSOPLP�:L���9SLcl Scaling	�	)CSOPLHo;L���9SLcl Scaling0�	CSOOL��Q;L��9W�	CSOOL��9L��9��	*CSOPL�%�:L��9SLcl Rotation��	*CSOPL �n;L��9SLcl Rotation��	)CSOPL�߅:L��9SLcl Scaling5�	)CSOPL��n;L��9SLcl Scaling\�	CSOOL��Q;L��9��	CSOOL°9L��9��	*CSOPL��:L��9SLcl Rotation��	*CSOPL�o;L��9SLcl Rotation*�	)CSOPL���:L��9SLcl Scalinga�	)CSOPLXo;L��9SLcl Scaling��	CSOOL`�Q;L°9��	CSOOL �Q;Lǰ9��	CSOOL ̰9Lǰ9�	*CSOPL0!�:Lǰ9SLcl RotationF�	*CSOPL��n;Lǰ9SLcl Rotation}�	)CSOPL�e�:Lǰ9SLcl Scaling��	)CSOPL(�n;Lǰ9SLcl Scaling��	CSOOL��Q;L ̰9�	CSOOL(Ѱ9L ̰9:�	*CSOPL`Ʌ:L ̰9SLcl Rotationr�	*CSOPL��n;L ̰9SLcl Rotation��	)CSOPLж�:L ̰9SLcl Scaling��	)CSOPL8�n;L ̰9SLcl Scaling�	CSOOL��Q;L(Ѱ9.�	CSOOL0ְ9L(Ѱ9f�	*CSOPL�P�:L(Ѱ9SLcl Rotation��	*CSOPL��n;L(Ѱ9SLcl Rotation��	)CSOPL���:L(Ѱ9SLcl Scaling�	)CSOPLh�n;L(Ѱ9SLcl Scaling3�	CSOOL`�Q;L0ְ9Z�	CSOOL�f�:L��Z:��	CSOOLg�:L��Z:��	CSOOL��:L@�Z:��	CSOOLH��:L@�Z:��	CSOOL~�9L��:�	CSOOL�{�9L��:D�	CSOOL�w�9L��:k�	CSOOLu�9L��:��	CSOOLr�9L��:��	CSOOL�o�9L��:��	CSOOL�l�9L��:�	CSOOL j�9L��:.�	CSOOLxf�9L��:U�	CSOOL�c�9L��:|�	CSOOL a�9L��:��	CSOOL�^�9L��:��	CSOOL��9L��:��	CSOOL�Z�9L��:�	CSOOLHW�9L��:?�	CSOOL�T�9L��:f�	CSOOLQ�9L��:��	CSOOL�N�9L��:��	CSOOL�J�9L��:��	CSOOLH�9L��:�	CSOOL�E�9L��:)�	CSOOL���9L��:P�	CSOOL�A�9L��:w�	CSOOL`?�9L��:��	CSOOL�;�9L��:��	CSOOLH��9L��:��	CSOOL�7�9L��:�	CSOOL�5�9L��::�	CSOOL�2�9L��:a�	CSOOL00�9L��:��	CSOOL�,�9L��:��	CSOOLX��9L��:��	CSOOL�(�9L��:��	CSOOL0'�9L��:$�	CSOOL�#�9L��:K�	CSOOL!�9L��:r�	CSOOL0�9L��:��	CSOOL8�9L��:��	CSOOL@�9L��:��	CSOOL�9L��:�	CSOOLX�9L��:5�	CSOOL��9L��:\�	CSOOL��9L��:��	CSOOL0��9L��:��	CSOOL��9L��:��	CSOOL���9L��:��	CSOOL@�9L��:�	CSOOLH�9L��:F�	CSOOLx�9L��:m�	CSOOL��9L��:��	CSOOL���9L��:��	CSOOL(��9L��:��	CSOOL���9L��:	�	CSOOL���9L��:0�	CSOOL���9L��:W�	CSOOL��9L��:~�	CSOOL��9L��:��	CSOOL���9L��:��	CSOOL���9L��:��	CSOOLp��9L��:�	CSOOLX��9L��:A�	CSOOL@��9L��:h�	CSOOL(��9L��:��	CSOOL��9L��:��	CSOOL���9L��:��	CSOOL��9L��:�	CSOOLȵ�9L��:+�	CSOOL���9L��:R�	CSOOL���9L��:y�	CSOOL���9L��:��	CSOOLh��9L��:��	CSOOLP��9L��:��	CSOOL���9L��:�	CSOOL ��9L��:<�	CSOOLx��9L��:c�	CSOOL��9L��:��	CSOOLH��9L��:��	CSOOL���9L��:��	CSOOL��9L��:��	CSOOL���9L��:&�	CSOOL��9L��:M�	CSOOL`��9L��:t�	CSOOL���9L��:��	CSOOL0��9L��:��	CSOOL0�n;L��:��	CSOOL�o;L��:�	CSOOL�n;L��:7�	CSOOLo;L��:^�	CSOOLHo;L��:��	CSOOL �n;L��:��	CSOOL��n;L��:��	CSOOL�o;L��:��	CSOOLXo;L��:!�	CSOOL��n;L��:H�	CSOOL(�n;L��:o�	CSOOL��n;L��:��	CSOOL8�n;L��:��	CSOOL��n;L��:��	CSOOLh�n;L��:�	!CSOPLX$N;L~�9Sd|XB�	!CSOPL&N;L~�9Sd|Yq�	!CSOPL�#N;L~�9Sd|Z��	!CSOPL�&N;L�{�9Sd|X��	!CSOPLhAN;L�{�9Sd|Y��	!CSOPL�?N;L�{�9Sd|Z-�	!CSOPL(EN;L�w�9Sd|X\�	!CSOPLX*N;L�w�9Sd|Y��	!CSOPL)N;L�w�9Sd|Z��	!CSOPL�KN;Lu�9Sd|X��	!CSOPLX-N;Lu�9Sd|Y�	!CSOPLȏN;Lu�9Sd|ZG�	!CSOPL('N;Lr�9Sd|Xv�	!CSOPLHLN;Lr�9Sd|Y��	!CSOPL�*N;Lr�9Sd|Z��	!CSOPL��N;L�o�9Sd|X�	!CSOPL+N;L�o�9Sd|Y2�	!CSOPL�+N;L�o�9Sd|Za�	!CSOPLN;L�l�9Sd|X��	!CSOPL(BN;L�l�9Sd|Y��	!CSOPLx(N;L�l�9Sd|Z��	!CSOPL(�N;L j�9Sd|X�	!CSOPL�MN;L j�9Sd|YL�	!CSOPL�(N;L j�9Sd|Z{�	!CSOPL�+N;Lxf�9Sd|X��	!CSOPLX�N;Lxf�9Sd|Y��	!CSOPL�(N;Lxf�9Sd|Z�	!CSOPLMN;L�c�9Sd|X7�	!CSOPL�'N;L�c�9Sd|Yf�	!CSOPL��N;L�c�9Sd|Z��	!CSOPL($N;L a�9Sd|X��	!CSOPLH(N;L a�9Sd|Y��	!CSOPL(N;L a�9Sd|Z"�	!CSOPL��N;L�^�9Sd|XQ�	!CSOPL�)N;L�^�9Sd|Y��	!CSOPL�MN;L�^�9Sd|Z��	!CSOPLH+N;L��9Sd|X��	!CSOPL�N;L��9Sd|Y
�	!CSOPL�!N;L��9Sd|Z<�	!CSOPL�,N;L�Z�9Sd|Xk�	!CSOPL�LN;L�Z�9Sd|Y��	!CSOPL�N;L�Z�9Sd|Z��	!CSOPL�,N;LHW�9Sd|X��	!CSOPLH�N;LHW�9Sd|Y'�	!CSOPL�'N;LHW�9Sd|ZV�	!CSOPL8,N;L�T�9Sd|X��	!CSOPL�,N;L�T�9Sd|Y��	!CSOPLx�N;L�T�9Sd|Z��	!CSOPLxLN;LQ�9Sd|X
!CSOPL�AN;LQ�9Sd|YA
!CSOPL�JN;LQ�9Sd|Zp
!CSOPL��N;L�N�9Sd|X�
!CSOPL8;N;L�N�9Sd|Y�
!CSOPLheN;L�N�9Sd|Z�
!CSOPL/N;L�J�9Sd|X,
!CSOPLؑN;L�J�9Sd|Y[
!CSOPL.N;L�J�9Sd|Z�
!CSOPL�.N;LH�9Sd|X�
!CSOPL�-N;LH�9Sd|Y�
!CSOPL�N;LH�9Sd|Z
!CSOPL8/N;L�E�9Sd|XF
!CSOPL�.N;L�E�9Sd|Yu
!CSOPLx.N;L�E�9Sd|Z�
!CSOPL8�N;L���9Sd|X�
!CSOPLH.N;L���9Sd|Y
!CSOPL�BN;L���9Sd|Z1
!CSOPL�BN;L�A�9Sd|X`
!CSOPLh�N;L�A�9Sd|Y�
!CSOPLCN;L�A�9Sd|Z�
!CSOPLXBN;L`?�9Sd|X�
!CSOPLHCN;L`?�9Sd|Y
!CSOPL��N;L`?�9Sd|ZK
!CSOPLxCN;L�;�9Sd|Xz
!CSOPL8DN;L�;�9Sd|Y�
!CSOPLhDN;L�;�9Sd|Z�
!CSOPLȒN;LH��9Sd|X
!CSOPL�CN;LH��9Sd|Y6
!CSOPL�CN;LH��9Sd|Ze
!CSOPL�eN;L�7�9Sd|X�
!CSOPL��N;L�7�9Sd|Y�
!CSOPL8eN;L�7�9Sd|Z�
!CSOPL�eN;L�5�9Sd|X!
!CSOPL(fN;L�5�9Sd|YP
!CSOPLX�N;L�5�9Sd|Z
!CSOPL(�N;L�2�9Sd|X�
!CSOPLXfN;L�2�9Sd|Y�
!CSOPL�fN;L�2�9Sd|Z
!CSOPL�fN;L00�9Sd|X;
!CSOPL�fN;L00�9Sd|Yj
!CSOPLgN;L00�9Sd|Z�
!CSOPL8)N;L�,�9Sd|X�
!CSOPLx+N;L�,�9Sd|Y�
!CSOPLHgN;L�,�9Sd|Z&
!CSOPL��N;LX��9Sd|XU
!CSOPLxgN;LX��9Sd|Y�
!CSOPL��M;LX��9Sd|Z�
!CSOPL�M;L�(�9Sd|X�
!CSOPL��M;L�(�9Sd|Y	
!CSOPLX�M;L�(�9Sd|Z@	
!CSOPLؘM;L0'�9Sd|Xo	
!CSOPL��M;L0'�9Sd|Y�	
!CSOPLșM;L0'�9Sd|Z�	
!CSOPL(�M;L�#�9Sd|X�	
!CSOPLx�M;L�#�9Sd|Y+

!CSOPLH�M;L�#�9Sd|ZZ

!CSOPL��M;L!�9Sd|X�

!CSOPL�M;L!�9Sd|Y�

!CSOPL8YN;L!�9Sd|Z�

!CSOPL��M;L0�9Sd|X
!CSOPL�2N;L0�9Sd|YE
!CSOPLxXN;L0�9Sd|Zt
!CSOPL�2N;L8�9Sd|X�
!CSOPLXN;L8�9Sd|Y�
!CSOPL�2N;L8�9Sd|Z
!CSOPLHXN;L@�9Sd|X0
!CSOPL(3N;L@�9Sd|Y_
!CSOPLHFN;L@�9Sd|Z�
!CSOPL�WN;L�9Sd|X�
!CSOPLxFN;L�9Sd|Y�
!CSOPL�WN;L�9Sd|Z
!CSOPL�FN;LX�9Sd|XJ
!CSOPL�WN;LX�9Sd|Yy
!CSOPL8GN;LX�9Sd|Z�
!CSOPL�UN;L��9Sd|X�
!CSOPL�HN;L��9Sd|Y
!CSOPL�GN;L��9Sd|Z5
!CSOPL�UN;L��9Sd|Xd
!CSOPL�GN;L��9Sd|Y�
!CSOPLxUN;L��9Sd|Z�
!CSOPL�TN;L0��9Sd|X�
!CSOPLIN;L0��9Sd|Y 
!CSOPL�TN;L0��9Sd|ZO
!CSOPLxIN;L��9Sd|X~
!CSOPLXTN;L��9Sd|Y�
!CSOPL�SN;L��9Sd|Z�
!CSOPL�JN;L���9Sd|X
!CSOPL�HN;L���9Sd|Y:
!CSOPLhSN;L���9Sd|Zi
!CSOPL8JN;L@�9Sd|X�
!CSOPL8SN;L@�9Sd|Y�
!CSOPL�IN;L@�9Sd|Z�
!CSOPLxRN;LH�9Sd|X%
!CSOPL�KN;LH�9Sd|YT
!CSOPLHRN;LH�9Sd|Z�
!CSOPL�JN;Lx�9Sd|X�
!CSOPLRN;Lx�9Sd|Y�
!CSOPL�;N;Lx�9Sd|Z
!CSOPLXQN;L���9Sd|X?
!CSOPL�?N;L���9Sd|Yn
!CSOPL�DN;L���9Sd|Z�
!CSOPL�PN;L(��9Sd|X�
!CSOPLh;N;L(��9Sd|Y�
!CSOPL(QN;L(��9Sd|Z*
!CSOPL�@N;L���9Sd|XY
!CSOPL�PN;L���9Sd|Y�
!CSOPL�AN;L���9Sd|Z�
!CSOPL�PN;L���9Sd|X�
!CSOPLx4N;L���9Sd|Y
!CSOPLhPN;L���9Sd|ZD
!CSOPL�3N;L��9Sd|Xs
!CSOPL(NN;L��9Sd|Y�
!CSOPL�DN;L��9Sd|Z�
!CSOPL�NN;L��9Sd|X
!CSOPL�KN;L��9Sd|Y/
!CSOPLX<N;L��9Sd|Z^
!CSOPLȜM;L���9Sd|X�
!CSOPL�M;L���9Sd|Y�
!CSOPL(�M;L���9Sd|Z�
!CSOPLh�M;L���9Sd|X
!CSOPL82N;L���9Sd|YI
!CSOPLXZN;L���9Sd|Zx
!CSOPL�M;Lp��9Sd|X�
!CSOPL��M;Lp��9Sd|Y�
!CSOPL؛M;Lp��9Sd|Z
!CSOPL��M;LX��9Sd|X4
!CSOPLx�M;LX��9Sd|Yc
!CSOPLH�M;LX��9Sd|Z�
!CSOPL��M;L@��9Sd|X�
!CSOPL�M;L@��9Sd|Y�
!CSOPLhYN;L@��9Sd|Z
!CSOPL��M;L(��9Sd|XN
!CSOPL��M;L(��9Sd|Y}
!CSOPLh2N;L(��9Sd|Z�
!CSOPL��M;L��9Sd|X�
!CSOPLX�M;L��9Sd|Y

!CSOPL(�M;L��9Sd|Z9
!CSOPLȖM;L���9Sd|Xh
!CSOPL�M;L���9Sd|Y�
!CSOPL�M;L���9Sd|Z�
!CSOPL��M;L��9Sd|X�
!CSOPL��M;L��9Sd|Y$
!CSOPL��M;L��9Sd|ZS
!CSOPL�M;Lȵ�9Sd|X�
!CSOPL�N;Lȵ�9Sd|Y�
!CSOPL��N;Lȵ�9Sd|Z�
!CSOPL(*N;L���9Sd|X
!CSOPL�&N;L���9Sd|Y>
!CSOPLX'N;L���9Sd|Zm
!CSOPL�%N;L���9Sd|X�
!CSOPL�%N;L���9Sd|Y�
!CSOPLh,N;L���9Sd|Z�
!CSOPLX6N;L���9Sd|X)
!CSOPLH:N;L���9Sd|YX
!CSOPL�)N;L���9Sd|Z�
!CSOPL,N;Lh��9Sd|X�
!CSOPL�)N;Lh��9Sd|Y�
!CSOPL�*N;Lh��9Sd|Z
!CSOPL�MN;LP��9Sd|XC
!CSOPL�$N;LP��9Sd|Yr
!CSOPLh)N;LP��9Sd|Z�
!CSOPL�$N;L���9Sd|X�
!CSOPL�-N;L���9Sd|Y�
!CSOPL�pN;L���9Sd|Z.
!CSOPL�dN;L ��9Sd|X]
!CSOPL�mN;L ��9Sd|Y�
!CSOPL8N;L ��9Sd|Z�
!CSOPL�pN;Lx��9Sd|X�
!CSOPL�sN;Lx��9Sd|Y
!CSOPL(N;Lx��9Sd|ZH
!CSOPL�lN;L��9Sd|Xw
!CSOPL�lN;L��9Sd|Y�
!CSOPL�nN;L��9Sd|Z�
!CSOPL�qN;LH��9Sd|X 
!CSOPLHON;LH��9Sd|Y3 
!CSOPLxON;LH��9Sd|Zb 
!CSOPLX�N;L���9Sd|X� 
!CSOPLx�M;L���9Sd|Y� 
!CSOPL��M;L���9Sd|Z� 
!CSOPL��N;L��9Sd|X!
!CSOPL��M;L��9Sd|YM!
!CSOPL�N;L��9Sd|Z|!
!CSOPL��M;L���9Sd|X�!
!CSOPL�N;L���9Sd|Y�!
!CSOPL8�M;L���9Sd|Z	"
!CSOPL��M;L��9Sd|X8"
!CSOPL��M;L��9Sd|Yg"
!CSOPL�@N;L��9Sd|Z�"
!CSOPLXHN;L`��9Sd|X�"
!CSOPLX�N;L`��9Sd|Y�"
!CSOPL8�M;L`��9Sd|Z##
!CSOPLh�M;L���9Sd|XR#
!CSOPL�M;L���9Sd|Y�#
!CSOPLH�M;L���9Sd|Z�#
!CSOPLh�N;L0��9Sd|X�#
!CSOPL��M;L0��9Sd|Y$
!CSOPL8�N;L0��9Sd|Z=$
!CSOPL��M;L0�n;Sd|Xl$
!CSOPL��M;L0�n;Sd|Y�$
!CSOPL��M;L0�n;Sd|Z�$
!CSOPLh�M;L�o;Sd|X�$
!CSOPL��M;L�o;Sd|Y(%
!CSOPLؿM;L�o;Sd|ZW%
!CSOPL��M;L�n;Sd|X�%
!CSOPL(�M;L�n;Sd|Y�%
!CSOPLX�M;L�n;Sd|Z�%
!CSOPL�N;Lo;Sd|X&
!CSOPLx�M;Lo;Sd|YB&
!CSOPL��M;Lo;Sd|Zq&
!CSOPLh�M;LHo;Sd|X�&
!CSOPLȌN;LHo;Sd|Y�&
!CSOPL��M;LHo;Sd|Z�&
!CSOPL��N;L �n;Sd|X-'
!CSOPL��M;L �n;Sd|Y\'
!CSOPL8�M;L �n;Sd|Z�'
!CSOPL��M;L��n;Sd|X�'
!CSOPL(�M;L��n;Sd|Y�'
!CSOPLX�M;L��n;Sd|Z(
!CSOPL�M;L�o;Sd|XG(
!CSOPL88N;L�o;Sd|Yv(
!CSOPL�M;L�o;Sd|Z�(
!CSOPL��M;LXo;Sd|X�(
!CSOPL��M;LXo;Sd|Y)
!CSOPL؋N;LXo;Sd|Z2)
!CSOPLh�M;L��n;Sd|Xa)
!CSOPL��N;L��n;Sd|Y�)
!CSOPL��M;L��n;Sd|Z�)
!CSOPLH�M;L(�n;Sd|X�)
!CSOPL��M;L(�n;Sd|Y*
!CSOPL�N;L(�n;Sd|ZL*
!CSOPLh�M;L��n;Sd|X{*
!CSOPL��M;L��n;Sd|Y�*
!CSOPL��M;L��n;Sd|Z�*
!CSOPLH�N;L8�n;Sd|X+
!CSOPLx�M;L8�n;Sd|Y7+
!CSOPL8#N;L8�n;Sd|Zf+
!CSOPL�cN;L��n;Sd|X�+
!CSOPLx�N;L��n;Sd|Y�+
!CSOPL8�M;L��n;Sd|Z�+
!CSOPL��M;Lh�n;Sd|X",
!CSOPL�N;Lh�n;Sd|YQ,
!CSOPL�NN;Lh�n;Sd|Z
.
Takes�,

CurrentSTake 0016-

TakeSTake 001�,
FileNameSTake_001.tak�,
	LocalTimeLLp6��5)-

ReferenceTimeLLp6��5�-
TakeSRun_JumpDownHigh_Roll_Run�-
"FileNameSRun_JumpDownHigh_Roll_Run.tak�-
	LocalTimeL\l�t8L:zp_�-

ReferenceTimeL\l�t8L:zp_������j�~���+~��Z�j���~���u�)

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

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