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
Kaydara FBX Binary  ��FBXHeaderExtension\FBXHeaderVersionI�x
FBXVersionI��EncryptionTypeI�CreationTimeStamp�VersionI��YearI��MonthIDayI'HourI?MinuteIWSecondI2tMillisecondI!�'CreatorS"FBX SDK/FBX Plugins version 2013.0�'	SceneInfoSGlobalInfoSceneInfoSUserData
TypeSUserData0VersionIdMetaData^VersionIduTitleS�SubjectS�AuthorS�KeywordsS�RevisionS�CommentS�Properties70��PSDocumentUrlSKStringSUrlSSXC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_214_Run_wallPush.fbxD�PSSrcDocumentUrlSKStringSUrlSSXC:\dev\mocap\production\Assets\Mocap\MecanimMotionDatabaseSkeleton\_214_Run_wallPush.fbxv$PSOriginalSCompoundSS�BPSOriginal|ApplicationVendorSKStringSSSAutodeskEPSOriginal|ApplicationNameSKStringSSS
MotionBuilderf?PSOriginal|ApplicationVersionSKStringSSS2013�MPSOriginal|DateTime_GMTSDateTimeSSS08/11/2012 21:08:50.7961PSOriginal|FileNameSKStringSSS3%PS	LastSavedSCompoundSS�CPSLastSaved|ApplicationVendorSKStringSSSAutodesk�FPSLastSaved|ApplicationNameSKStringSSS
MotionBuilder&@PSLastSaved|ApplicationVersionSKStringSSS2013�NPSLastSaved|DateTime_GMTSDateTimeSSS08/11/2012 21:08:50.796�FileIdR-�.�&�ɼ˰#�&��CreationTimeS2012-11-08 16:08:50:801P6CreatorS1FBX SDK/FBX Plugins version 2013.0 build=20120105�GlobalSettings�VersionI��Properties70�)PSUpAxisSintSIntegerSI	-PS
UpAxisSignSintSIntegerSII	,PS	FrontAxisSintSIntegerSI�	0PS
FrontAxisSignSintSIntegerSI�	,PS	CoordAxisSintSIntegerSI�	0PS
CoordAxisSignSintSIntegerSI>
1PSOriginalUpAxisSintSIntegerSI�����
5PSOriginalUpAxisSignSintSIntegerSI�
8PSUnitScaleFactorSdoubleSNumberSD�?@PSOriginalUnitScaleFactorSdoubleSNumberSD�?kHPSAmbientColorSColorRGBSColorSD����?D����?D����?�APS
DefaultCameraSKStringSSSProducer Perspective�%PSTimeModeSenumSSI.3PS
TimeSpanStartSKTimeSTimeSL���jAn2PSTimeSpanStopSKTimeSTimeSL�Q��a�8PSCustomFrameRateSdoubleSNumberSD�	Documents�CountI!DocumentL~�S	KFbxSceneSScene�
Properties70~
&PSSourceObjectSobjectSS�
DPSActiveAnimStackNameSKStringSSS_214_Run_wallPush�
	RootNodeL9
References�CDefinitionsjVersionId�CountI6�
ObjectTypeSGlobalSettings�CountI#
ObjectTypeSMotionBuilder_SystemCountI�"

ObjectTypeSModel[CountIT�"PropertyTemplateSFbxNode�"Properties70�2PSQuaternionInterpolateSenumSSI6KPSRotationOffsetSVector3DSVectorSDDD�JPS
RotationPivotSVector3DSVectorSDDD�JPS
ScalingOffsetSVector3DSVectorSDDD=IPSScalingPivotSVector3DSVectorSDDDy.PSTranslationActiveSboolSSI�KPSTranslationMinSVector3DSVectorSDDD+KPSTranslationMaxSVector3DSVectorSDDDe,PSTranslationMinXSboolSSI�,PSTranslationMinYSboolSSI�,PSTranslationMinZSboolSSI,PSTranslationMaxXSboolSSIM,PSTranslationMaxYSboolSSI�,PSTranslationMaxZSboolSSI�*PS
RotationOrderSenumSSI6PSRotationSpaceForLimitOnlySboolSSIL;PSRotationStiffnessXSdoubleSNumberSD�;PSRotationStiffnessYSdoubleSNumberSD�;PSRotationStiffnessZSdoubleSNumberSD0PSAxisLenSdoubleSNumberSD$@rHPSPreRotationSVector3DSVectorSDDD�IPSPostRotationSVector3DSVectorSDDD+PSRotationActiveSboolSSIXHPSRotationMinSVector3DSVectorSDDD�HPSRotationMaxSVector3DSVectorSDDD�)PSRotationMinXSboolSSI)PSRotationMinYSboolSSIS)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI�)PSRotationMaxYSboolSSI�)PSRotationMaxZSboolSSI.(PSInheritTypeSenumSSIf*PS
ScalingActiveSboolSSI�GPS
ScalingMinSVector3DSVectorSDDDGPS
ScalingMaxSVector3DSVectorSD�?D�?D�?F(PSScalingMinXSboolSSI|(PSScalingMinYSboolSSI�(PSScalingMinZSboolSSI�(PSScalingMaxXSboolSSI(PSScalingMaxYSboolSSIT(PSScalingMaxZSboolSSI�QPSGeometricTranslationSVector3DSVectorSDDDNPSGeometricRotationSVector3DSVectorSDDDjMPSGeometricScalingSVector3DSVectorSD�?D�?D�?�6PS
MinDampRangeXSdoubleSNumberSD�6PS
MinDampRangeYSdoubleSNumberSD66PS
MinDampRangeZSdoubleSNumberSDz6PS
MaxDampRangeXSdoubleSNumberSD�6PS
MaxDampRangeYSdoubleSNumberSD6PS
MaxDampRangeZSdoubleSNumberSDI9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD�9PSMinDampStrengthZSdoubleSNumberSD9PSMaxDampStrengthXSdoubleSNumberSDe9PSMaxDampStrengthYSdoubleSNumberSD�9PSMaxDampStrengthZSdoubleSNumberSD�7PSPreferedAngleXSdoubleSNumberSD67PSPreferedAngleYSdoubleSNumberSD{7PSPreferedAngleZSdoubleSNumberSD�(PSLookAtPropertySobjectSS�*PSUpVectorPropertySobjectSS !PSShowSboolSSI^ 8PSNegativePercentShapeSupportSboolSSI� 8PSDefaultAttributeIndexSintSIntegerSI����� #PSFreezeSboolSSI!#PSLODBoxSboolSSIb!NPSLcl TranslationSLcl TranslationSSADDD�!HPSLcl RotationSLcl RotationSSADDD"FPSLcl ScalingSLcl ScalingSSAD�?D�?D�?L"2PS
VisibilityS
VisibilitySSAD�?�"EPSVisibility InheritanceSVisibility InheritanceSSI�=
ObjectTypeS
NodeAttribute#CountIT�=PropertyTemplateS	FbxCamera�=Properties70�#>PSPositionSVectorSSADDDI��#>PSUpVectorSVectorSSADD�?D6$FPSInterestPositionSVectorSSADDDj$&PSRollSRollSSAD�$:PSOpticalCenterXSOpticalCenterXSSAD�$:PSOpticalCenterYSOpticalCenterYSSADL%DPSBackgroundColorSColorSSAD)\���(�?D)\���(�?D)\���(�?�%-PS	TurnTableSNumberSSAD�%1PSDisplayTurnTableIconSboolSSI�%*PS
UseMotionBlurSboolSSI>&2PSUseRealTimeMotionBlurSboolSSI�&9PSMotion Blur IntensitySNumberSSAD�?�&,PSAspectRatioModeSenumSSI'4PSAspectWidthSdoubleSNumberSDt@D'5PSAspectHeightSdoubleSNumberSDi@�'9PSPixelAspectRatioSdoubleSNumberSD�?�'/PSFilmOffsetXSNumberSSAD(/PSFilmOffsetYSNumberSSADE(2PS	FilmWidthSdoubleSNumberSD�&1��?�(3PS
FilmHeightSdoubleSNumberSD/�$���?�(8PSFilmAspectRatioSdoubleSNumberSDUUUUUU�?)9PSFilmSqueezeRatioSdoubleSNumberSD�?M),PSFilmFormatIndexSenumSSI�),PSPreScaleSNumberSSAD�?�)2PSFilmTranslateXSNumberSSAD*2PSFilmTranslateYSNumberSSADG*2PSFilmRollPivotXSNumberSSAD�*2PSFilmRollPivotYSNumberSSAD�*1PS
FilmRollValueSNumberSSAD�**PS
FilmRollOrderSenumSSI5+)PSApertureModeSenumSSIg+$PSGateFitSenumSSI�+4PSFieldOfViewSFieldOfViewSSAD�p9@�+6PSFieldOfViewXSFieldOfViewXSSADD@1,6PSFieldOfViewYSFieldOfViewYSSADD@n,/PSFocalLengthSNumberSSAD&��VrA@�,)PSCameraFormatSenumSSI�,*PS
UseFrameColorSboolSSI1-FPS
FrameColorSColorRGBSColorSD333333�?D333333�?D333333�?d-%PSShowNameSboolSSI�--PSShowInfoOnMovingSboolSSI�-%PSShowGridSboolSSI..PSShowOpticalCenterSboolSSIC.'PS
ShowAzimutSboolSSIz.)PSShowTimeCodeSboolSSI�.&PS	ShowAudioSboolSSI/GPS
AudioColorSVector3DSVectorSDD�?DC/2PS	NearPlaneSdoubleSNumberSD$@�/1PSFarPlaneSdoubleSNumberSD@�@�/1PSAutoComputeClipPanesSboolSSI�//PSViewCameraToLookAtSboolSSI@04PSViewFrustumNearFarPlaneSboolSSI�05PSViewFrustumBackPlaneModeSenumSSI�05PSBackPlaneDistanceSNumberSSAD@�@12PSBackPlaneDistanceModeSenumSSIJ16PSViewFrustumFrontPlaneModeSenumSSI�16PSFrontPlaneDistanceSNumberSSAD$@�13PSFrontPlaneDistanceModeSenumSSI2%PSLockModeSboolSSIC23PSLockInterestNavigationSboolSSI2.PSBackPlateFitImageSboolSSI�2*PS
BackPlateCropSboolSSI�2,PSBackPlateCenterSboolSSI.3/PSBackPlateKeepRatioSboolSSI|3@PSBackgroundAlphaTresholdSdoubleSNumberSD�?�3*PS
ShowBackplateSboolSSI�34PSBackPlaneOffsetXSNumberSSAD844PSBackPlaneOffsetYSNumberSSAD{45PSBackPlaneRotationSNumberSSAD�43PSBackPlaneScaleXSNumberSSAD�?�43PSBackPlaneScaleYSNumberSSAD�?75,PSBackground TextureSobjectSSt5/PSFrontPlateFitImageSboolSSI�5+PSFrontPlateCropSboolSSI�5-PSFrontPlateCenterSboolSSI&60PSFrontPlateKeepRatioSboolSSIo6;PSForeground OpacitySdoubleSNumberSD�?�6+PSShowFrontplateSboolSSI�65PSFrontPlaneOffsetXSNumberSSAD.75PSFrontPlaneOffsetYSNumberSSADr76PSFrontPlaneRotationSNumberSSAD�74PSFrontPlaneScaleXSNumberSSAD�?�74PSFrontPlaneScaleYSNumberSSAD�?08,PSForeground TextureSobjectSSj8,PSDisplaySafeAreaSboolSSI�84PSDisplaySafeAreaOnRenderSboolSSI�81PSSafeAreaDisplayStyleSenumSSI59<PSSafeAreaAspectRatioSdoubleSNumberSDFUUUUU�?r9/PSUse2DMagnifierZoomSboolSSI�95PS2D Magnifier ZoomSNumberSSADY@�92PS2D Magnifier XSNumberSSADI@5:2PS2D Magnifier YSNumberSSADI@t:1PSCameraProjectionTypeSenumSSI�:2PS	OrthoZoomSdoubleSNumberSD�?�:0PSUseRealTimeDOFAndAASboolSSI,;,PSUseDepthOfFieldSboolSSIb;(PSFocusSourceSenumSSI�;3PS
FocusAngleSdoubleSNumberSD@�;6PS
FocusDistanceSdoubleSNumberSDi@!<,PSUseAntialiasingSboolSSIm<>PSAntialiasingIntensitySdoubleSNumberSD��9�}��?�</PSAntialiasingMethodSenumSSI�<2PSUseAccumulationBufferSboolSSI-=5PSFrameSamplingCountSintSIntegerSIi=.PSFrameSamplingTypeSenumSSI�=APSColorSColorRGBSColorSD�������?D�������?D�������?4>
ObjectTypeSMotionBuilder_Generic'>CountI�@
ObjectTypeSAnimationLayeru>CountI�@PropertyTemplateSFbxAnimLayer�@Properties70�>*PSWeightSNumberSSADY@#?!PSMuteSboolSSIR?!PSSoloSboolSSI�?!PSLockSboolSSI�?APSColorSColorRGBSColorSD�������?D�������?D�������?@&PS	BlendModeSenumSSIG@5PSRotationAccumulationModeSenumSSI�@2PSScaleAccumulationModeSenumSSI�@5PSBlendModeBypassS	ULongLongSSL�B
ObjectTypeSAnimationStack2ACountI�BPropertyTemplateSFbxAnimStack�BProperties70�A+PSDescriptionSKStringSSS�A0PS
LocalStartSKTimeSTimeSL-B/PS	LocalStopSKTimeSTimeSLoB4PSReferenceStartSKTimeSTimeSL�B3PS
ReferenceStopSKTimeSTimeSL)C
ObjectTypeSAnimationCurveNodeCCountI\wC
ObjectTypeSAnimationCurvejCCountI��ObjectsvH<
NodeAttributeL���;S#Producer PerspectiveNodeAttributeSCameraGProperties70SD>PSPositionSVectorSSADD b@D�r@�DFPSInterestPositionSVectorSSAD1�ʧ�U�<D�����V@D�DDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?8E1PSDisplayTurnTableIconSboolSSIrE,PSFilmFormatIndexSenumSSI�E4PSFieldOfViewSFieldOfViewSSADD@�E/PSFocalLengthSNumberSSAD �Z5@;F<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?~F5PS2D Magnifier ZoomSNumberSSAD�F2PS2D Magnifier XSNumberSSAD�F2PS2D Magnifier YSNumberSSAD,G	TypeFlagsSCameraMGGeometryVersionI|}GPositionDD b@D�r@�GUpDD�?D�GLookAtD1�ʧ�U�<D�����V@D�GShowInfoOnMovingIH	ShowAudioIDH
AudioColorDD�?DiH	CameraOrthoZoomD�?N6
NodeAttributeLp|�;SProducer FrontNodeAttributeSCamera�LProperties70+I>PSPositionSVectorSSADD�V@DL�@IFPSInterestPositionSVectorSSADD�V@D�IDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?J1PSDisplayTurnTableIconSboolSSIJJ,PSFilmFormatIndexSenumSSI�J4PSFieldOfViewSFieldOfViewSSADD@�J/PSFocalLengthSNumberSSAD �Z5@	K2PS	NearPlaneSdoubleSNumberSD�?HK1PSFarPlaneSdoubleSNumberSDL�@�K<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�K5PS2D Magnifier ZoomSNumberSSADL2PS2D Magnifier XSNumberSSADUL2PS2D Magnifier YSNumberSSAD�L1PSCameraProjectionTypeSenumSSI�L	TypeFlagsSCamera�LGeometryVersionI|MPositionDD�V@DL�@=MUpDD�?DkMLookAtDD�V@D�MShowInfoOnMovingI�M	ShowAudioI�M
AudioColorDD�?D�M	CameraOrthoZoomD�?�S5
NodeAttributeL`x�;SProducer BackNodeAttributeSCamera6RProperties70�N>PSPositionSVectorSSADD�V@DL��OFPSInterestPositionSVectorSSADD�V@DfODPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�O1PSDisplayTurnTableIconSboolSSI�O,PSFilmFormatIndexSenumSSI!P4PSFieldOfViewSFieldOfViewSSADD@^P/PSFocalLengthSNumberSSAD �Z5@�P2PS	NearPlaneSdoubleSNumberSD�?�P1PSFarPlaneSdoubleSNumberSDL�@'Q<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?jQ5PS2D Magnifier ZoomSNumberSSAD�Q2PS2D Magnifier XSNumberSSAD�Q2PS2D Magnifier YSNumberSSAD)R1PSCameraProjectionTypeSenumSSIWR	TypeFlagsSCameraxRGeometryVersionI|�RPositionDD�V@DL���RUpDD�?DSLookAtDD�V@D"SShowInfoOnMovingI=S	ShowAudioIoS
AudioColorDD�?D�S	CameraOrthoZoomD�?7Y6
NodeAttributeL`��;SProducer RightNodeAttributeSCamera�WProperties70VT>PSPositionSVectorSSADL�@D�V@D�TFPSInterestPositionSVectorSSADD�V@D�TDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?;U1PSDisplayTurnTableIconSboolSSIuU,PSFilmFormatIndexSenumSSI�U4PSFieldOfViewSFieldOfViewSSADD@�U/PSFocalLengthSNumberSSAD �Z5@4V2PS	NearPlaneSdoubleSNumberSD�?sV1PSFarPlaneSdoubleSNumberSDL�@�V<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?W5PS2D Magnifier ZoomSNumberSSAD@W2PS2D Magnifier XSNumberSSAD�W2PS2D Magnifier YSNumberSSAD�W1PSCameraProjectionTypeSenumSSI�W	TypeFlagsSCameraXGeometryVersionI|>XPositionDL�@D�V@DhXUpDD�?D�XLookAtDD�V@D�XShowInfoOnMovingI�X	ShowAudioIY
AudioColorDD�?D*Y	CameraOrthoZoomD�?�^5
NodeAttributeL�9�;SProducer LeftNodeAttributeSCameraa]Properties70�Y>PSPositionSVectorSSADL��D�V@D?ZFPSInterestPositionSVectorSSADD�V@D�ZDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�Z1PSDisplayTurnTableIconSboolSSI
[,PSFilmFormatIndexSenumSSIL[4PSFieldOfViewSFieldOfViewSSADD@�[/PSFocalLengthSNumberSSAD �Z5@�[2PS	NearPlaneSdoubleSNumberSD�?\1PSFarPlaneSdoubleSNumberSDL�@R\<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�\5PS2D Magnifier ZoomSNumberSSAD�\2PS2D Magnifier XSNumberSSAD]2PS2D Magnifier YSNumberSSADT]1PSCameraProjectionTypeSenumSSI�]	TypeFlagsSCamera�]GeometryVersionI|�]PositionDL��D�V@D�]UpDD�?D+^LookAtDD�V@DM^ShowInfoOnMovingIh^	ShowAudioI�^
AudioColorDD�?D�^	CameraOrthoZoomD�?�d4
NodeAttributeL���;SProducer TopNodeAttributeSCameraAcProperties70_>PSPositionSVectorSSADDy�@D�_>PSUpVectorSVectorSSADDD�`FPSInterestPositionSVectorSSADD�V@Dq`DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�`1PSDisplayTurnTableIconSboolSSI�`,PSFilmFormatIndexSenumSSI,a4PSFieldOfViewSFieldOfViewSSADD@ia/PSFocalLengthSNumberSSAD �Z5@�a2PS	NearPlaneSdoubleSNumberSD�?�a1PSFarPlaneSdoubleSNumberSDL�@2b<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?ub5PS2D Magnifier ZoomSNumberSSAD�b2PS2D Magnifier XSNumberSSAD�b2PS2D Magnifier YSNumberSSAD4c1PSCameraProjectionTypeSenumSSIbc	TypeFlagsSCamera�cGeometryVersionI|�cPositionDDy�@D�cUpDDD�dLookAtDD�V@D-dShowInfoOnMovingIHd	ShowAudioIzd
AudioColorDD�?D�d	CameraOrthoZoomD�?�j7
NodeAttributeLǗ;SProducer BottomNodeAttributeSCamera$iProperties70be>PSPositionSVectorSSADD��D�e>PSUpVectorSVectorSSAD�D�D�?fFPSInterestPositionSVectorSSADD�V@DTfDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�f1PSDisplayTurnTableIconSboolSSI�f,PSFilmFormatIndexSenumSSIg4PSFieldOfViewSFieldOfViewSSADD@Lg/PSFocalLengthSNumberSSAD �Z5@�g2PS	NearPlaneSdoubleSNumberSD�?�g1PSFarPlaneSdoubleSNumberSDL�@h<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?Xh5PS2D Magnifier ZoomSNumberSSAD�h2PS2D Magnifier XSNumberSSAD�h2PS2D Magnifier YSNumberSSADi1PSCameraProjectionTypeSenumSSIEi	TypeFlagsSCamerafiGeometryVersionI|�iPositionDD��D�iUpD�D�D�?�iLookAtDD�V@DjShowInfoOnMovingI+j	ShowAudioI]j
AudioColorDD�?D�j	CameraOrthoZoomD�?�k?
NodeAttributeL���9SCamera SwitcherNodeAttributeSCameraSwitcherIkProperties70<k-PSCamera IndexSIntegerSSAIbkVersionIe�kNameSCamera SwitcherModel�kCameraIdI�k
CameraNameId�kCameraIndexNameal*
NodeAttributeLx�:SNodeAttributeSLimbNodeTl
	TypeFlagsSSkeleton�l*
NodeAttributeL8�:SNodeAttributeSLimbNode�l
	TypeFlagsSSkeletonIm*
NodeAttributeL�r:SNodeAttributeSLimbNode<m
	TypeFlagsSSkeleton�m*
NodeAttributeL�Y:SNodeAttributeSLimbNode�m
	TypeFlagsSSkeleton1n*
NodeAttributeL�:SNodeAttributeSLimbNode$n
	TypeFlagsSSkeleton�n*
NodeAttributeL�:SNodeAttributeSLimbNode�n
	TypeFlagsSSkeletono*
NodeAttributeL�x:SNodeAttributeSLimbNodeo
	TypeFlagsSSkeleton�o*
NodeAttributeL��:SNodeAttributeSLimbNode�o
	TypeFlagsSSkeletonp*
NodeAttributeL�:SNodeAttributeSLimbNode�o
	TypeFlagsSSkeletonup*
NodeAttributeLx�:SNodeAttributeSLimbNodehp
	TypeFlagsSSkeleton�p*
NodeAttributeL8":SNodeAttributeSLimbNode�p
	TypeFlagsSSkeleton]q*
NodeAttributeL�,:SNodeAttributeSLimbNodePq
	TypeFlagsSSkeleton�q*
NodeAttributeLxE:SNodeAttributeSLimbNode�q
	TypeFlagsSSkeletonEr*
NodeAttributeL�l:SNodeAttributeSLimbNode8r
	TypeFlagsSSkeleton�r*
NodeAttributeL8�:SNodeAttributeSLimbNode�r
	TypeFlagsSSkeleton-s*
NodeAttributeL8}:SNodeAttributeSLimbNode s
	TypeFlagsSSkeleton�s*
NodeAttributeLx:SNodeAttributeSLimbNode�s
	TypeFlagsSSkeletont*
NodeAttributeL�2:SNodeAttributeSLimbNodet
	TypeFlagsSSkeleton�t*
NodeAttributeLx�:SNodeAttributeSLimbNode|t
	TypeFlagsSSkeleton�t*
NodeAttributeLx�:SNodeAttributeSLimbNode�t
	TypeFlagsSSkeletonqu*
NodeAttributeL�_:SNodeAttributeSLimbNodedu
	TypeFlagsSSkeleton�u*
NodeAttributeL��:SNodeAttributeSLimbNode�u
	TypeFlagsSSkeletonYv*
NodeAttributeL�B:SNodeAttributeSLimbNodeLv
	TypeFlagsSSkeleton�v*
NodeAttributeL�^:SNodeAttributeSLimbNode�v
	TypeFlagsSSkeletonAw*
NodeAttributeL�#:SNodeAttributeSLimbNode4w
	TypeFlagsSSkeleton�w*
NodeAttributeL8^:SNodeAttributeSLimbNode�w
	TypeFlagsSSkeleton)x*
NodeAttributeL8D:SNodeAttributeSLimbNodex
	TypeFlagsSSkeleton�x*
NodeAttributeLx+:SNodeAttributeSLimbNode�x
	TypeFlagsSSkeletony*
NodeAttributeL8g:SNodeAttributeSLimbNodey
	TypeFlagsSSkeleton�y*
NodeAttributeL��:SNodeAttributeSLimbNodexy
	TypeFlagsSSkeleton�y*
NodeAttributeL��:SNodeAttributeSLimbNode�y
	TypeFlagsSSkeletonmz*
NodeAttributeL��:SNodeAttributeSLimbNode`z
	TypeFlagsSSkeleton�z*
NodeAttributeL8:SNodeAttributeSLimbNode�z
	TypeFlagsSSkeletonU{*
NodeAttributeL�.:SNodeAttributeSLimbNodeH{
	TypeFlagsSSkeleton�{*
NodeAttributeLx�:SNodeAttributeSLimbNode�{
	TypeFlagsSSkeleton=|*
NodeAttributeL8-:SNodeAttributeSLimbNode0|
	TypeFlagsSSkeleton�|*
NodeAttributeL��:SNodeAttributeSLimbNode�|
	TypeFlagsSSkeleton%}*
NodeAttributeLx�:SNodeAttributeSLimbNode}
	TypeFlagsSSkeleton�}*
NodeAttributeLx:SNodeAttributeSLimbNode�}
	TypeFlagsSSkeleton
~*
NodeAttributeL��:SNodeAttributeSLimbNode~
	TypeFlagsSSkeleton�~*
NodeAttributeL�!:SNodeAttributeSLimbNodet~
	TypeFlagsSSkeleton�~*
NodeAttributeL��:SNodeAttributeSLimbNode�~
	TypeFlagsSSkeletoni*
NodeAttributeLx�:SNodeAttributeSLimbNode\
	TypeFlagsSSkeleton�*
NodeAttributeL�t:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonQ�*
NodeAttributeL��:SNodeAttributeSLimbNodeD�
	TypeFlagsSSkeletonŀ*
NodeAttributeLx�:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton9�*
NodeAttributeLx�:SNodeAttributeSLimbNode,�
	TypeFlagsSSkeleton��*
NodeAttributeLx:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton!�*
NodeAttributeL8:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL�D:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton	�*
NodeAttributeLx8:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton}�*
NodeAttributeL8q:SNodeAttributeSLimbNodep�
	TypeFlagsSSkeleton�*
NodeAttributeL8:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletone�*
NodeAttributeL��:SNodeAttributeSLimbNodeX�
	TypeFlagsSSkeletonل*
NodeAttributeLx{:SNodeAttributeSLimbNodē
	TypeFlagsSSkeletonM�*
NodeAttributeL�M:SNodeAttributeSLimbNode@�
	TypeFlagsSSkeleton��*
NodeAttributeLxq:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton5�*
NodeAttributeL�8:SNodeAttributeSLimbNode(�
	TypeFlagsSSkeleton��*
NodeAttributeLx:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�	:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL�o:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL��:SNodeAttributeSLimbNode��
	TypeFlagsSSkeletony�*
NodeAttributeL��:SNodeAttributeSLimbNodel�
	TypeFlagsSSkeleton�*
NodeAttributeLx4:SNodeAttributeSLimbNode��
	TypeFlagsSSkeletona�*
NodeAttributeLx�:SNodeAttributeSLimbNodeT�
	TypeFlagsSSkeletonՉ*
NodeAttributeLx�:SNodeAttributeSLimbNodeȉ
	TypeFlagsSSkeletonI�*
NodeAttributeL�V:SNodeAttributeSLimbNode<�
	TypeFlagsSSkeleton��*
NodeAttributeLx|:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton1�*
NodeAttributeL8w:SNodeAttributeSLimbNode$�
	TypeFlagsSSkeleton��*
NodeAttributeL��:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL��:SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeLx:SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�:SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonu�*
NodeAttributeL��:SNodeAttributeSLimbNodeh�
	TypeFlagsSSkeleton�*
NodeAttributeLx:SNodeAttributeSLimbNode܍
	TypeFlagsSSkeleton]�*
NodeAttributeL�:SNodeAttributeSLimbNodeP�
	TypeFlagsSSkeleton��4ModelL8Gv)SProducer PerspectiveModelSCamera��VersionI�`�Properties70*�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?Y�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD b@D�r@Q�HPSLcl RotationSLcl RotationSSAD�V�D����S@D�V���,PS	MultiTakeSintSIntegerSIƐ-PSManipulationModeSenumSSI)�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDf�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI,�:PSLocalTranslationRefVisibilitySboolSSIl�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI3�9PSHierarchicalCenterVisibilitySboolSSIw�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIA�3PSDefaultKeyingGroupEnumSenumSSIt�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIV�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?ҕ0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSI4�!PSCropSboolSSIe�#PSCenterSboolSSI��&PS	KeepRatioSboolSSIٖ2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSIS�*PSResetCameraSActionSSIv�ShadingCW��CullingS
CullingOff�.ModelL0Bv)SProducer FrontModelSCamera��VersionI���Properties70m�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSI>�NPSLcl TranslationSLcl TranslationSSADD�V@DL�@��HPSLcl RotationSLcl RotationSSADD�V@DΙ,PS	MultiTakeSintSIntegerSI	�-PSManipulationModeSenumSSIl�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI'�5PSRotationLimitsVisibilitySboolSSIo�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI/�1PSScalingRefVisibilitySboolSSIv�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@C�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI%�(PSCullingModeSenumSSI`�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSIמ0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?H�%PSFitImageSboolSSIw�!PSCropSboolSSI��#PSCenterSboolSSIܟ&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSI^�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCWܠCullingS
CullingOff+�-ModelL(=v)SProducer BackModelSCameraA�VersionI��Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?ޡ!PSShowSboolSSI$�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD�V@DL��֢HPSLcl RotationSLcl RotationSSAD�D�V�D�,PS	MultiTakeSintSIntegerSIK�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI&�-PSPivotsVisibilitySenumSSIi�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI2�3PSRotationAxisVisibilitySboolSSIq�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIB�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIƦ3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI1�*PS
TransformableSboolSSIg�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIۧ+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?W�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI��!PSCropSboolSSI�#PSCenterSboolSSI�&PS	KeepRatioSboolSSI^�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSIة*PSResetCameraSActionSSI��ShadingCW�CullingS
CullingOffn�.ModelLHQv)SProducer RightModelSCamera��VersionI�(�Properties70�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?!�!PSShowSboolSSIg�8PSDefaultAttributeIndexSintSIntegerSIëNPSLcl TranslationSLcl TranslationSSADL�@D�V@D�HPSLcl RotationSLcl RotationSSAD�f@D�D�f@S�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD.�/PSSetPreferedAngleSActionSSIi�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI4�2PSRotationRefVisibilitySboolSSIu�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI?�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ȯ5PSDefaultKeyingGroupSintSIntegerSI	�3PSDefaultKeyingGroupEnumSenumSSI<�%PSPickableSboolSSIt�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSI\�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?ͱ%PSFitImageSboolSSI��!PSCropSboolSSI-�#PSCenterSboolSSIa�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI>�ShadingCWa�CullingS
CullingOffZ�-ModelLPVv)SProducer LeftModelSCameraƳVersionI��Properties704�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?c�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADL��D�V@D?�,PS	MultiTakeSintSIntegerSIz�-PSManipulationModeSenumSSIݵUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIU�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI �2PSRotationRefVisibilitySboolSSIa�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI+�6PSGeometricCenterVisibilitySboolSSIq�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI(�%PSPickableSboolSSI`�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIѹ-PSShowTrajectoriesSboolSSI
�+PSResolutionModeSenumSSIH�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI�!PSCropSboolSSI�#PSCenterSboolSSIM�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSIϻ4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI*�ShadingCWM�CullingS
CullingOff��,ModelL 8v)SProducer TopModelSCamera��VersionI�U�Properties70�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?N�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADDy�@DF�HPSLcl RotationSLcl RotationSSAD�V�D�D�V���,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD[�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIٿ5PSRotationLimitsVisibilitySboolSSI!�:PSLocalTranslationRefVisibilitySboolSSIa�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI(�9PSHierarchicalCenterVisibilitySboolSSIl�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI6�3PSDefaultKeyingGroupEnumSenumSSIi�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIK�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI)�!PSCropSboolSSIZ�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSIH�*PSResetCameraSActionSSIk�ShadingCW��CullingS
CullingOff��/ModelL)v)SProducer BottomModelSCamera��VersionI���Properties70c�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI4�NPSLcl TranslationSLcl TranslationSSADD��D��HPSLcl RotationSLcl RotationSSAD�V@D�D�V@��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIb�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIe�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI%�1PSScalingRefVisibilitySboolSSIl�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@9�5PSDefaultKeyingGroupSintSIntegerSIz�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIV�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?>�%PSFitImageSboolSSIm�!PSCropSboolSSI��#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSIT�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOffC�7ModelL`�:SCamera SwitcherModelSCameraSwitcherA�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI$�8PSDefaultAttributeIndexSintSIntegerSI^�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD9�/PSSetPreferedAngleSActionSSIt�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI?�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIJ�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIG�%PSPickableSboolSSI�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�ShadingCW6�CullingS
CullingOffo�+ModelLh�:SReferenceModelSLimbNode��VersionI�)�Properties70��+PSRotationActiveSboolSSI!�(PSInheritTypeSenumSSIv�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�EPSVisibility InheritanceSVisibility InheritanceSSII�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD$�/PSSetPreferedAngleSActionSSI_�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI*�2PSRotationRefVisibilitySboolSSIk�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI5�6PSGeometricCenterVisibilitySboolSSI{�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI2�%PSPickableSboolSSIj�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�3PSlockInfluenceWeightsSBoolSSAUI?�ShadingCYb�CullingS
CullingOff��&ModelLp
�:SHipsModelSLimbNode��VersionI�D�Properties70�+PSRotationActiveSboolSSIH�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI@�OPSLcl TranslationSLcl TranslationSSA+D�rXz�D�%�U@Do8S���IPSLcl RotationSLcl RotationSSA+D���T�D@]]T@D Y
X���EPSVisibility InheritanceSVisibility InheritanceSSI$�,PS	MultiTakeSintSIntegerSI_�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI:�-PSPivotsVisibilitySenumSSI}�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIF�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIV�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI
�%PSPickableSboolSSIE�*PS
TransformableSboolSSI{�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI7�CPSLimbLength 1SNumberSSAUD�?DDY@Z�ShadingCY}�CullingS
CullingOff��'ModelLx�:SSpineModelSLimbNode��VersionI�`�Properties70.�+PSRotationActiveSboolSSId�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI\�OPSLcl TranslationSLcl TranslationSSA+D%=D�s"@D�;�?��IPSLcl RotationSLcl RotationSSA+D}�(@D@�2�Dj�*@�EPSVisibility InheritanceSVisibility InheritanceSSI@�,PS	MultiTakeSintSIntegerSI{�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIV�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI!�2PSRotationRefVisibilitySboolSSIb�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI,�6PSGeometricCenterVisibilitySboolSSIr�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI)�%PSPickableSboolSSIa�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIS�CPSLimbLength 1SNumberSSAUD�?DDY@v�ShadingCY��CullingS
CullingOff��'ModelL��:SChestModelSLimbNode��VersionI�z�Properties70J�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIw�NPSLcl TranslationSLcl TranslationSSADDA0@D�2ſ��HPSLcl RotationSLcl RotationSSAD�;P=D��h*=D��9� �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��&ModelL��:SNeckModelSLimbNode�VersionI���Properties70c�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD4�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+DT�D@��9@D <�	���IPSLcl RotationSLcl RotationSSA+D eB$�D�WK�?D�͇�;�EPSVisibility InheritanceSVisibility InheritanceSSIu�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDP�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIV�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIa�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI+�3PSDefaultKeyingGroupEnumSenumSSI^�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI7�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�&ModelL��:SHeadModelSLimbNode,�VersionI��Properties70~�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI	�GPS
ScalingMaxSVector3DSVectorSDDDO�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�N�D 4� @D s�?�IPSLcl RotationSLcl RotationSSA+D���D 1Š�D��Z@V�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI.UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDk/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI1:PSLocalTranslationRefVisibilitySboolSSIq2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI89PSHierarchicalCenterVisibilitySboolSSI|6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIF3PSDefaultKeyingGroupEnumSenumSSIy%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI"-PSShowTrajectoriesSboolSSIR"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�)ModelL�#�:SLeftEyeModelSLimbNodeJVersionI�vProperties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI'GPS
ScalingMaxSVector3DSVectorSDDDm8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD෭@D`#� @D��+@EPSVisibility InheritanceSVisibility InheritanceSSIV,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD1/PSSetPreferedAngleSActionSSIl-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI7	2PSRotationRefVisibilitySboolSSIx	3PSRotationAxisVisibilitySboolSSI�	1PSScalingRefVisibilitySboolSSI�	9PSHierarchicalCenterVisibilitySboolSSIB
6PSGeometricCenterVisibilitySboolSSI�
8PSReferentialSizeSdoubleSNumberSD(@�
5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSI?%PSPickableSboolSSIw*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUIiCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�*ModelL�(�:SRightEyeModelSLimbNode
VersionI�uProperties70b
*PS
RotationOrderSenumSSI�
+PSRotationActiveSboolSSI�
(PSInheritTypeSenumSSI&GPS
ScalingMaxSVector3DSVectorSDDDl8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���D %� @D�+@EPSVisibility InheritanceSVisibility InheritanceSSIU,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD0/PSSetPreferedAngleSActionSSIk-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI62PSRotationRefVisibilitySboolSSIw3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIA6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSI>%PSPickableSboolSSIv*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI"PSliwSBoolSSAUIhCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff%ModelL�-�:S
JawModelSLimbNodeVersionI��Properties70]+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD-7PSPreferedAngleXSdoubleSNumberSDUs\O,T9@s8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@�D@���?D`)��?%HPSLcl RotationSLcl RotationSSADD�Y	�<D����<xEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIPUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSIS:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIZ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@'5PSDefaultKeyingGroupSintSIntegerSIh3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI	(PSCullingModeSenumSSID-PSShowTrajectoriesSboolSSIt"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYCullingS
CullingOff�$,ModelL�2�:STongueBackModelSLimbNodeoVersionI��$Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSILGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@<D��K�D`'�?AEPSVisibility InheritanceSVisibility InheritanceSSI{,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDV /PSSetPreferedAngleSActionSSI� -PSPivotsVisibilitySenumSSI� 5PSRotationLimitsVisibilitySboolSSI!:PSLocalTranslationRefVisibilitySboolSSI\!2PSRotationRefVisibilitySboolSSI�!3PSRotationAxisVisibilitySboolSSI�!1PSScalingRefVisibilitySboolSSI#"9PSHierarchicalCenterVisibilitySboolSSIg"6PSGeometricCenterVisibilitySboolSSI�"8PSReferentialSizeSdoubleSNumberSD(@�"5PSDefaultKeyingGroupSintSIntegerSI1#3PSDefaultKeyingGroupEnumSenumSSId#%PSPickableSboolSSI�#*PS
TransformableSboolSSI�#(PSCullingModeSenumSSI
$-PSShowTrajectoriesSboolSSI=$"PSliwSBoolSSAUI�$CPSLimbLength 1SNumberSSAUD�?DDY@�$ShadingCY�$CullingS
CullingOff�,+ModelL�7�:STongueTipModelSLimbNode7%VersionI�c,Properties70�%+PSRotationActiveSboolSSI�%(PSInheritTypeSenumSSI&GPS
ScalingMaxSVector3DSVectorSDDDZ&8PSDefaultAttributeIndexSintSIntegerSI�&NPSLcl TranslationSLcl TranslationSSAD@<D@���D�}�@	'EPSVisibility InheritanceSVisibility InheritanceSSIC',PS	MultiTakeSintSIntegerSI~'-PSManipulationModeSenumSSI�'UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD(/PSSetPreferedAngleSActionSSIY(-PSPivotsVisibilitySenumSSI�(5PSRotationLimitsVisibilitySboolSSI�(:PSLocalTranslationRefVisibilitySboolSSI$)2PSRotationRefVisibilitySboolSSIe)3PSRotationAxisVisibilitySboolSSI�)1PSScalingRefVisibilitySboolSSI�)9PSHierarchicalCenterVisibilitySboolSSI/*6PSGeometricCenterVisibilitySboolSSIu*8PSReferentialSizeSdoubleSNumberSD(@�*5PSDefaultKeyingGroupSintSIntegerSI�*3PSDefaultKeyingGroupEnumSenumSSI,+%PSPickableSboolSSId+*PS
TransformableSboolSSI�+(PSCullingModeSenumSSI�+-PSShowTrajectoriesSboolSSI,"PSliwSBoolSSAUIV,CPSLimbLength 1SNumberSSAUD�?DDY@y,ShadingCY�,CullingS
CullingOfft4.ModelL�4�9SLeftLipLowerModelSLimbNode-VersionI�.4Properties70T-+PSRotationActiveSboolSSI�-(PSInheritTypeSenumSSI�-GPS
ScalingMaxSVector3DSVectorSDDD%.8PSDefaultAttributeIndexSintSIntegerSI�.NPSLcl TranslationSLcl TranslationSSAD�"��?D��Y�D��r @�.EPSVisibility InheritanceSVisibility InheritanceSSI/,PS	MultiTakeSintSIntegerSII/-PSManipulationModeSenumSSI�/UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�//PSSetPreferedAngleSActionSSI$0-PSPivotsVisibilitySenumSSIg05PSRotationLimitsVisibilitySboolSSI�0:PSLocalTranslationRefVisibilitySboolSSI�02PSRotationRefVisibilitySboolSSI013PSRotationAxisVisibilitySboolSSIo11PSScalingRefVisibilitySboolSSI�19PSHierarchicalCenterVisibilitySboolSSI�16PSGeometricCenterVisibilitySboolSSI@28PSReferentialSizeSdoubleSNumberSD(@�25PSDefaultKeyingGroupSintSIntegerSI�23PSDefaultKeyingGroupEnumSenumSSI�2%PSPickableSboolSSI/3*PS
TransformableSboolSSIe3(PSCullingModeSenumSSI�3-PSShowTrajectoriesSboolSSI�3"PSliwSBoolSSAUI!4CPSLimbLength 1SNumberSSAUD�?DDY@D4ShadingCYg4CullingS
CullingOffq<(ModelL�9�9S
JawENDModelSLimbNode�4VersionI�+<Properties705*PS
RotationOrderSenumSSIQ5+PSRotationActiveSboolSSI�5(PSInheritTypeSenumSSI�5GPS
ScalingMaxSVector3DSVectorSDDD"68PSDefaultAttributeIndexSintSIntegerSI~6NPSLcl TranslationSLcl TranslationSSAD@<D��P�D���@�6EPSVisibility InheritanceSVisibility InheritanceSSI7,PS	MultiTakeSintSIntegerSIF7-PSManipulationModeSenumSSI�7UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�7/PSSetPreferedAngleSActionSSI!8-PSPivotsVisibilitySenumSSId85PSRotationLimitsVisibilitySboolSSI�8:PSLocalTranslationRefVisibilitySboolSSI�82PSRotationRefVisibilitySboolSSI-93PSRotationAxisVisibilitySboolSSIl91PSScalingRefVisibilitySboolSSI�99PSHierarchicalCenterVisibilitySboolSSI�96PSGeometricCenterVisibilitySboolSSI=:8PSReferentialSizeSdoubleSNumberSD(@�:5PSDefaultKeyingGroupSintSIntegerSI�:3PSDefaultKeyingGroupEnumSenumSSI�:%PSPickableSboolSSI,;*PS
TransformableSboolSSIb;(PSCullingModeSenumSSI�;-PSShowTrajectoriesSboolSSI�;"PSliwSBoolSSAUI<CPSLimbLength 1SNumberSSAUD�?DDY@A<ShadingCYd<CullingS
CullingOff=D/ModelL�>�9SRightLipLowerModelSLimbNode�<VersionI��CProperties70=+PSRotationActiveSboolSSIS=(PSInheritTypeSenumSSI�=GPS
ScalingMaxSVector3DSVectorSDDD�=8PSDefaultAttributeIndexSintSIntegerSIJ>NPSLcl TranslationSLcl TranslationSSAD�"���D��Y�D@�r @�>EPSVisibility InheritanceSVisibility InheritanceSSI�>,PS	MultiTakeSintSIntegerSI?-PSManipulationModeSenumSSIu?UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�?/PSSetPreferedAngleSActionSSI�?-PSPivotsVisibilitySenumSSI0@5PSRotationLimitsVisibilitySboolSSIx@:PSLocalTranslationRefVisibilitySboolSSI�@2PSRotationRefVisibilitySboolSSI�@3PSRotationAxisVisibilitySboolSSI8A1PSScalingRefVisibilitySboolSSIA9PSHierarchicalCenterVisibilitySboolSSI�A6PSGeometricCenterVisibilitySboolSSI	B8PSReferentialSizeSdoubleSNumberSD(@LB5PSDefaultKeyingGroupSintSIntegerSI�B3PSDefaultKeyingGroupEnumSenumSSI�B%PSPickableSboolSSI�B*PS
TransformableSboolSSI.C(PSCullingModeSenumSSIiC-PSShowTrajectoriesSboolSSI�C"PSliwSBoolSSAUI�CCPSLimbLength 1SNumberSSAUD�?DDY@
DShadingCY0DCullingS
CullingOff
L0ModelL�C�9SRightLipCornerModelSLimbNode�DVersionI��KProperties70�D+PSRotationActiveSboolSSI E(PSInheritTypeSenumSSIuEGPS
ScalingMaxSVector3DSVectorSDDD�E8PSDefaultAttributeIndexSintSIntegerSIFNPSLcl TranslationSLcl TranslationSSAD��E
�D����D@�r@jFEPSVisibility InheritanceSVisibility InheritanceSSI�F,PS	MultiTakeSintSIntegerSI�F-PSManipulationModeSenumSSIBGUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDG/PSSetPreferedAngleSActionSSI�G-PSPivotsVisibilitySenumSSI�G5PSRotationLimitsVisibilitySboolSSIEH:PSLocalTranslationRefVisibilitySboolSSI�H2PSRotationRefVisibilitySboolSSI�H3PSRotationAxisVisibilitySboolSSII1PSScalingRefVisibilitySboolSSILI9PSHierarchicalCenterVisibilitySboolSSI�I6PSGeometricCenterVisibilitySboolSSI�I8PSReferentialSizeSdoubleSNumberSD(@J5PSDefaultKeyingGroupSintSIntegerSIZJ3PSDefaultKeyingGroupEnumSenumSSI�J%PSPickableSboolSSI�J*PS
TransformableSboolSSI�J(PSCullingModeSenumSSI6K-PSShowTrajectoriesSboolSSIfK"PSliwSBoolSSAUI�KCPSLimbLength 1SNumberSSAUD�?DDY@�KShadingCY�KCullingS
CullingOff�S/ModelL�H�9SLeftLipCornerModelSLimbNodedLVersionI��SProperties70�L+PSRotationActiveSboolSSI�L(PSInheritTypeSenumSSIAMGPS
ScalingMaxSVector3DSVectorSDDD�M8PSDefaultAttributeIndexSintSIntegerSI�MNPSLcl TranslationSLcl TranslationSSAD�LF
@D����D`�r@6NEPSVisibility InheritanceSVisibility InheritanceSSIpN,PS	MultiTakeSintSIntegerSI�N-PSManipulationModeSenumSSIOUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDKO/PSSetPreferedAngleSActionSSI�O-PSPivotsVisibilitySenumSSI�O5PSRotationLimitsVisibilitySboolSSIP:PSLocalTranslationRefVisibilitySboolSSIQP2PSRotationRefVisibilitySboolSSI�P3PSRotationAxisVisibilitySboolSSI�P1PSScalingRefVisibilitySboolSSIQ9PSHierarchicalCenterVisibilitySboolSSI\Q6PSGeometricCenterVisibilitySboolSSI�Q8PSReferentialSizeSdoubleSNumberSD(@�Q5PSDefaultKeyingGroupSintSIntegerSI&R3PSDefaultKeyingGroupEnumSenumSSIYR%PSPickableSboolSSI�R*PS
TransformableSboolSSI�R(PSCullingModeSenumSSIS-PSShowTrajectoriesSboolSSI2S"PSliwSBoolSSAUI�SCPSLimbLength 1SNumberSSAUD�?DDY@�SShadingCY�SCullingS
CullingOff�[.ModelL�M�9SLeftLipUpperModelSLimbNode/TVersionI�[[Properties70�T+PSRotationActiveSboolSSI�T(PSInheritTypeSenumSSIUGPS
ScalingMaxSVector3DSVectorSDDDRU8PSDefaultAttributeIndexSintSIntegerSI�UNPSLcl TranslationSLcl TranslationSSAD�3�?D��[�D |�"@VEPSVisibility InheritanceSVisibility InheritanceSSI;V,PS	MultiTakeSintSIntegerSIvV-PSManipulationModeSenumSSI�VUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDW/PSSetPreferedAngleSActionSSIQW-PSPivotsVisibilitySenumSSI�W5PSRotationLimitsVisibilitySboolSSI�W:PSLocalTranslationRefVisibilitySboolSSIX2PSRotationRefVisibilitySboolSSI]X3PSRotationAxisVisibilitySboolSSI�X1PSScalingRefVisibilitySboolSSI�X9PSHierarchicalCenterVisibilitySboolSSI'Y6PSGeometricCenterVisibilitySboolSSImY8PSReferentialSizeSdoubleSNumberSD(@�Y5PSDefaultKeyingGroupSintSIntegerSI�Y3PSDefaultKeyingGroupEnumSenumSSI$Z%PSPickableSboolSSI\Z*PS
TransformableSboolSSI�Z(PSCullingModeSenumSSI�Z-PSShowTrajectoriesSboolSSI�Z"PSliwSBoolSSAUIN[CPSLimbLength 1SNumberSSAUD�?DDY@q[ShadingCY�[CullingS
CullingOffkc-ModelL�R�9SLeftNostrilModelSLimbNode�[VersionI�%cProperties70K\+PSRotationActiveSboolSSI�\(PSInheritTypeSenumSSI�\GPS
ScalingMaxSVector3DSVectorSDDD]8PSDefaultAttributeIndexSintSIntegerSIx]NPSLcl TranslationSLcl TranslationSSADף�?D�@D@i,"@�]EPSVisibility InheritanceSVisibility InheritanceSSI^,PS	MultiTakeSintSIntegerSI@^-PSManipulationModeSenumSSI�^UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�^/PSSetPreferedAngleSActionSSI_-PSPivotsVisibilitySenumSSI^_5PSRotationLimitsVisibilitySboolSSI�_:PSLocalTranslationRefVisibilitySboolSSI�_2PSRotationRefVisibilitySboolSSI'`3PSRotationAxisVisibilitySboolSSIf`1PSScalingRefVisibilitySboolSSI�`9PSHierarchicalCenterVisibilitySboolSSI�`6PSGeometricCenterVisibilitySboolSSI7a8PSReferentialSizeSdoubleSNumberSD(@za5PSDefaultKeyingGroupSintSIntegerSI�a3PSDefaultKeyingGroupEnumSenumSSI�a%PSPickableSboolSSI&b*PS
TransformableSboolSSI\b(PSCullingModeSenumSSI�b-PSShowTrajectoriesSboolSSI�b"PSliwSBoolSSAUIcCPSLimbLength 1SNumberSSAUD�?DDY@;cShadingCY^cCullingS
CullingOff3k+ModelL�W�9SLeftCheekModelSLimbNode�cVersionI��jProperties70d+PSRotationActiveSboolSSIId(PSInheritTypeSenumSSI�dGPS
ScalingMaxSVector3DSVectorSDDD�d8PSDefaultAttributeIndexSintSIntegerSI@eNPSLcl TranslationSLcl TranslationSSAD���@D�(�
@D`��@�eEPSVisibility InheritanceSVisibility InheritanceSSI�e,PS	MultiTakeSintSIntegerSIf-PSManipulationModeSenumSSIkfUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�f/PSSetPreferedAngleSActionSSI�f-PSPivotsVisibilitySenumSSI&g5PSRotationLimitsVisibilitySboolSSIng:PSLocalTranslationRefVisibilitySboolSSI�g2PSRotationRefVisibilitySboolSSI�g3PSRotationAxisVisibilitySboolSSI.h1PSScalingRefVisibilitySboolSSIuh9PSHierarchicalCenterVisibilitySboolSSI�h6PSGeometricCenterVisibilitySboolSSI�h8PSReferentialSizeSdoubleSNumberSD(@Bi5PSDefaultKeyingGroupSintSIntegerSI�i3PSDefaultKeyingGroupEnumSenumSSI�i%PSPickableSboolSSI�i*PS
TransformableSboolSSI$j(PSCullingModeSenumSSI_j-PSShowTrajectoriesSboolSSI�j"PSliwSBoolSSAUI�jCPSLimbLength 1SNumberSSAUD�?DDY@kShadingCY&kCullingS
CullingOffWs1ModelL�\�9SLeftEyelidLowerModelSLimbNode�kVersionI�sProperties70�k+PSRotationActiveSboolSSIl(PSInheritTypeSenumSSIllGPS
ScalingMaxSVector3DSVectorSDDD�l8PSDefaultAttributeIndexSintSIntegerSImNPSLcl TranslationSLcl TranslationSSAD@�~@D�@D p~@dmHPSLcl RotationSLcl RotationSSAD�D�D�mEPSVisibility InheritanceSVisibility InheritanceSSI�m,PS	MultiTakeSintSIntegerSI,n-PSManipulationModeSenumSSI�nUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�n/PSSetPreferedAngleSActionSSIo-PSPivotsVisibilitySenumSSIJo5PSRotationLimitsVisibilitySboolSSI�o:PSLocalTranslationRefVisibilitySboolSSI�o2PSRotationRefVisibilitySboolSSIp3PSRotationAxisVisibilitySboolSSIRp1PSScalingRefVisibilitySboolSSI�p9PSHierarchicalCenterVisibilitySboolSSI�p6PSGeometricCenterVisibilitySboolSSI#q8PSReferentialSizeSdoubleSNumberSD(@fq5PSDefaultKeyingGroupSintSIntegerSI�q3PSDefaultKeyingGroupEnumSenumSSI�q%PSPickableSboolSSIr*PS
TransformableSboolSSIHr(PSCullingModeSenumSSI�r-PSShowTrajectoriesSboolSSI�r"PSliwSBoolSSAUIsCPSLimbLength 1SNumberSSAUD�?DDY@'sShadingCYJsCullingS
CullingOff%{1ModelLb�9SLeftEyelidUpperModelSLimbNode�sVersionI��zProperties70t+PSRotationActiveSboolSSI;t(PSInheritTypeSenumSSI�tGPS
ScalingMaxSVector3DSVectorSDDD�t8PSDefaultAttributeIndexSintSIntegerSI2uNPSLcl TranslationSLcl TranslationSSAD`��@D#$@D�
 @�uEPSVisibility InheritanceSVisibility InheritanceSSI�u,PS	MultiTakeSintSIntegerSI�u-PSManipulationModeSenumSSI]vUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�v/PSSetPreferedAngleSActionSSI�v-PSPivotsVisibilitySenumSSIw5PSRotationLimitsVisibilitySboolSSI`w:PSLocalTranslationRefVisibilitySboolSSI�w2PSRotationRefVisibilitySboolSSI�w3PSRotationAxisVisibilitySboolSSI x1PSScalingRefVisibilitySboolSSIgx9PSHierarchicalCenterVisibilitySboolSSI�x6PSGeometricCenterVisibilitySboolSSI�x8PSReferentialSizeSdoubleSNumberSD(@4y5PSDefaultKeyingGroupSintSIntegerSIuy3PSDefaultKeyingGroupEnumSenumSSI�y%PSPickableSboolSSI�y*PS
TransformableSboolSSIz(PSCullingModeSenumSSIQz-PSShowTrajectoriesSboolSSI�z"PSliwSBoolSSAUI�zCPSLimbLength 1SNumberSSAUD�?DDY@�zShadingCY{CullingS
CullingOff�/ModelLg�9SLeftInnerBrowModelSLimbNode{VersionI���Properties70�{+PSRotationActiveSboolSSI|(PSInheritTypeSenumSSI\|GPS
ScalingMaxSVector3DSVectorSDDD�|8PSDefaultAttributeIndexSintSIntegerSI�|NPSLcl TranslationSLcl TranslationSSAD��L�?D ��'@D`��"@Q}EPSVisibility InheritanceSVisibility InheritanceSSI�},PS	MultiTakeSintSIntegerSI�}-PSManipulationModeSenumSSI)~UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDf~/PSSetPreferedAngleSActionSSI�~-PSPivotsVisibilitySenumSSI�~5PSRotationLimitsVisibilitySboolSSI,:PSLocalTranslationRefVisibilitySboolSSIl2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI3�9PSHierarchicalCenterVisibilitySboolSSIw�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIA�3PSDefaultKeyingGroupEnumSenumSSIt�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIM�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��0ModelLl�9SLeftIOuterBrowModelSLimbNodeL�VersionI���Properties70��*PS
RotationOrderSenumSSIփ+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIa�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@@D �&@D��@V�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI˅-PSManipulationModeSenumSSI.�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDk�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI1�:PSLocalTranslationRefVisibilitySboolSSIq�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI8�9PSHierarchicalCenterVisibilitySboolSSI|�6PSGeometricCenterVisibilitySboolSSIˆ8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIF�3PSDefaultKeyingGroupEnumSenumSSIy�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI"�-PSShowTrajectoriesSboolSSIR�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ƊShadingCY�CullingS
CullingOffÒ0ModelL �;:SRightInnerBrowModelSLimbNodeQ�VersionI�}�Properties70��+PSRotationActiveSboolSSIً(PSInheritTypeSenumSSI.�GPS
ScalingMaxSVector3DSVectorSDDDt�8PSDefaultAttributeIndexSintSIntegerSIЌNPSLcl TranslationSLcl TranslationSSAD��L�D ��'@D`��"@#�EPSVisibility InheritanceSVisibility InheritanceSSI]�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD8�/PSSetPreferedAngleSActionSSIs�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI>�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSII�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@Ґ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIF�%PSPickableSboolSSI~�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIp�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffɚ1ModelL(�;:SRightIOuterBrowModelSLimbNode�VersionI���Properties70p�*PS
RotationOrderSenumSSI��+PSRotationActiveSboolSSIߓ(PSInheritTypeSenumSSI4�GPS
ScalingMaxSVector3DSVectorSDDDz�8PSDefaultAttributeIndexSintSIntegerSI֔NPSLcl TranslationSLcl TranslationSSAD��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��2ModelL0�;:SRightEyelidUpperModelSLimbNode&�VersionI�R�Properties70x�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDI�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD+��D�`$@D`�
 @��EPSVisibility InheritanceSVisibility InheritanceSSI2�,PS	MultiTakeSintSIntegerSIm�-PSManipulationModeSenumSSIНUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD
�/PSSetPreferedAngleSActionSSIH�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIӞ:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIT�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIڟ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSId�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIS�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIġ-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIE�CPSLimbLength 1SNumberSSAUD�?DDY@h�ShadingCY��CullingS
CullingOff��2ModelL8�;:SRightEyelidLowerModelSLimbNode��VersionI�w�Properties70G�+PSRotationActiveSboolSSI}�(PSInheritTypeSenumSSIңGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIt�NPSLcl TranslationSLcl TranslationSSAD��~�D u@D��~@ʤHPSLcl RotationSLcl RotationSSAD�D�D�EPSVisibility InheritanceSVisibility InheritanceSSIW�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD2�/PSSetPreferedAngleSActionSSIm�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI8�2PSRotationRefVisibilitySboolSSIy�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIC�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@̨5PSDefaultKeyingGroupSintSIntegerSI
�3PSDefaultKeyingGroupEnumSenumSSI@�%PSPickableSboolSSIx�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIj�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��,ModelL@�;:SRightCheekModelSLimbNode�VersionI�@�Properties70f�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD7�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD-��D�V�
@D�]�@�EPSVisibility InheritanceSVisibility InheritanceSSI �,PS	MultiTakeSintSIntegerSI[�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI6�-PSPivotsVisibilitySenumSSIy�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIB�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIȯ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIR�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIְ3PSDefaultKeyingGroupEnumSenumSSI	�%PSPickableSboolSSIA�*PS
TransformableSboolSSIw�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI3�CPSLimbLength 1SNumberSSAUD�?DDY@V�ShadingCYy�CullingS
CullingOffQ�.ModelLH�;:SRightNostrilModelSLimbNode߲VersionI��Properties701�+PSRotationActiveSboolSSIg�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI^�NPSLcl TranslationSLcl TranslationSSADף��D`@D`�,"@��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI&�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDƵ/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSID�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI̶2PSRotationRefVisibilitySboolSSI
�3PSRotationAxisVisibilitySboolSSIL�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI׷6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@`�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIԸ%PSPickableSboolSSI�*PS
TransformableSboolSSIB�(PSCullingModeSenumSSI}�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@!�ShadingCYD�CullingS
CullingOff�/ModelLP�;:SRightLipUpperModelSLimbNode��VersionI���Properties70��+PSRotationActiveSboolSSI3�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDλ8PSDefaultAttributeIndexSintSIntegerSI*�NPSLcl TranslationSLcl TranslationSSAD�3��D��W�D@i�"@}�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIU�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSIͽ-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIX�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSIپ3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI_�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@,�5PSDefaultKeyingGroupSintSIntegerSIm�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSII�-PSShowTrajectoriesSboolSSIy�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��/ModelLX�;:SRightShoulderModelSLimbNodew�VersionI�Q�Properties70��HPSPreRotationSVector3DSVectorSDc�5ua f�De0��`@D�(�Vc��+PSRotationActiveSboolSSIU�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIM�OPSLcl TranslationSLcl TranslationSSA+D����D��)6@D@
M����IPSLcl RotationSLcl RotationSSA+D@R�D�R�@D������EPSVisibility InheritanceSVisibility InheritanceSSI1�,PS	MultiTakeSintSIntegerSIl�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIG�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIS�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIc�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIR�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUID�CPSLimbLength 1SNumberSSAUD�?DDY@g�ShadingCY��CullingS
CullingOff�*ModelL`�;:SRightArmModelSLimbNode��VersionI���Properties70[�HPSPreRotationSVector3DSVectorSD�&(�|f�D�`����!�DOE�rc���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDe�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��$@D �\0�D`��վ�IPSLcl RotationSLcl RotationSSA+D`�I7@D����D�WKP@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��.ModelLh�;:SRightForeArmModelSLimbNodee�VersionI�?�Properties70��HPSPreRotationSVector3DSVectorSD�@���D�D�e�:�D
>���?
�+PSRotationActiveSboolSSIC�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI;�OPSLcl TranslationSLcl TranslationSSA+D`�W9�D �<�?D`,�����IPSLcl RotationSLcl RotationSSA+D@�@Dൊ@@D g����EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIZ�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI5�-PSPivotsVisibilitySenumSSIx�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIA�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIQ�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI@�*PS
TransformableSboolSSIv�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI2�CPSLimbLength 1SNumberSSAUD�?DDY@U�ShadingCYx�CullingS
CullingOff��+ModelLp�;:SRightHandModelSLimbNode��VersionI�_�Properties70-�+PSRotationActiveSboolSSIc�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI[�OPSLcl TranslationSLcl TranslationSSA+D ��8�D <P@D����?��IPSLcl RotationSLcl RotationSSA+D�܎ʿD@J�ܿD@�(��EPSVisibility InheritanceSVisibility InheritanceSSI?�,PS	MultiTakeSintSIntegerSIz�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIU�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI �2PSRotationRefVisibilitySboolSSIa�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI+�6PSGeometricCenterVisibilitySboolSSIq�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI(�%PSPickableSboolSSI`�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIR�CPSLimbLength 1SNumberSSAUD�?DDY@u�ShadingCY��CullingS
CullingOff!�1ModelLx�;:SRightHandPinky1ModelSLimbNode�VersionI���Properties70p�HPSPreRotationSVector3DSVectorSD���P�οDrQ�'d�$@DH�Z~Q����+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI4�GPS
ScalingMaxSVector3DSVectorSDDDz�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D����D�K�ɿD�ۚ�.�IPSLcl RotationSLcl RotationSSA+D�4 �D:�0@D�8@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIY�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI\�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIc�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@0�5PSDefaultKeyingGroupSintSIntegerSIq�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIM�-PSShowTrajectoriesSboolSSI}�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��1ModelL�5:SRightHandPinky2ModelSLimbNode}�VersionI�W�Properties70��HPSPreRotationSVector3DSVectorSD�	�SQ㋿DG~�)'��?DL����?%�+PSRotationActiveSboolSSI[�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIS�OPSLcl TranslationSLcl TranslationSSA+D���D�(���D`���IPSLcl RotationSLcl RotationSSA+D ��D�8��?D�m<@��EPSVisibility InheritanceSVisibility InheritanceSSI7�,PS	MultiTakeSintSIntegerSIr�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIM�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIY�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI#�6PSGeometricCenterVisibilitySboolSSIi�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI �%PSPickableSboolSSIX�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIJ�CPSLimbLength 1SNumberSSAUD�?DDY@m�ShadingCY��CullingS
CullingOff��1ModelL��5:SRightHandPinky3ModelSLimbNode��VersionI�}�Properties70K�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIy�OPSLcl TranslationSLcl TranslationSSA+D�8$�D��V��D �@���IPSLcl RotationSLcl RotationSSA+D@Q�D�(��?D@��1@#�EPSVisibility InheritanceSVisibility InheritanceSSI]�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD8�/PSSetPreferedAngleSActionSSIs�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI>�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSII�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIF�%PSPickableSboolSSI~�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIp�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff>0ModelL��5:SRightHandRing1ModelSLimbNode�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD���=ģ�D�˘^�@Dm�a>4c���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIQ�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�H=�Djs�?D �m�K�IPSLcl RotationSLcl RotationSSA+D����D�ԃ@Dޙ9@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI-PSManipulationModeSenumSSIvUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI15PSRotationLimitsVisibilitySboolSSIy:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI91PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI
8PSReferentialSizeSdoubleSNumberSD(@M5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI/(PSCullingModeSenumSSIj-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY1CullingS
CullingOff�
0ModelL�5:SRightHandRing2ModelSLimbNode�VersionI�s
Properties70HPSPreRotationSVector3DSVectorSD-��	�ԿD!FWP*@D�@�?�{�A+PSRotationActiveSboolSSIw(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD8PSDefaultAttributeIndexSintSIntegerSIoOPSLcl TranslationSLcl TranslationSSA+D�'�D ښ��D`K�߿�IPSLcl RotationSLcl RotationSSA+D�D���?D��<@EPSVisibility InheritanceSVisibility InheritanceSSIS,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD.	/PSSetPreferedAngleSActionSSIi	-PSPivotsVisibilitySenumSSI�	5PSRotationLimitsVisibilitySboolSSI�	:PSLocalTranslationRefVisibilitySboolSSI4
2PSRotationRefVisibilitySboolSSIu
3PSRotationAxisVisibilitySboolSSI�
1PSScalingRefVisibilitySboolSSI�
9PSHierarchicalCenterVisibilitySboolSSI?6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI	3PSDefaultKeyingGroupEnumSenumSSI<%PSPickableSboolSSIt*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI
"PSliwSBoolSSAUIf
CPSLimbLength 1SNumberSSAUD�?DDY@�
ShadingCY�
CullingS
CullingOff�0ModelL�5:SRightHandRing3ModelSLimbNodeVersionI��Properties70f+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD78PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D@���D�
��D��ݿ�IPSLcl RotationSLcl RotationSSA+D����D`�f�?D`�02@>EPSVisibility InheritanceSVisibility InheritanceSSIx,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDS/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIY2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI 9PSHierarchicalCenterVisibilitySboolSSId6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI.3PSDefaultKeyingGroupEnumSenumSSIa%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI
-PSShowTrajectoriesSboolSSI:"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff[2ModelL�5:SRightHandMiddle1ModelSLimbNode;VersionI�Properties70�HPSPreRotationSVector3DSVectorSD�iaQ7؀�Dr3�k��D
��--��+PSRotationActiveSboolSSI(PSInheritTypeSenumSSInGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIOPSLcl TranslationSLcl TranslationSSA+D�QB�D<��?D@��?hIPSLcl RotationSLcl RotationSSA+D��9@D�m��D u;@�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI0-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSIN5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI3PSRotationAxisVisibilitySboolSSIV1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI'8PSReferentialSizeSdoubleSNumberSD(@j5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI*PS
TransformableSboolSSIL(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@+ShadingCYNCullingS
CullingOff�&2ModelL�5:SRightHandMiddle2ModelSLimbNode�VersionI��&Properties70'HPSPreRotationSVector3DSVectorSD�l�`�տDQT���@D��#W'9�`+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD1 8PSDefaultAttributeIndexSintSIntegerSI� OPSLcl TranslationSLcl TranslationSSA+D`��D���?D@��?� IPSLcl RotationSLcl RotationSSA+D@@�?D��S��D��@@8!EPSVisibility InheritanceSVisibility InheritanceSSIr!,PS	MultiTakeSintSIntegerSI�!-PSManipulationModeSenumSSI"UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDM"/PSSetPreferedAngleSActionSSI�"-PSPivotsVisibilitySenumSSI�"5PSRotationLimitsVisibilitySboolSSI#:PSLocalTranslationRefVisibilitySboolSSIS#2PSRotationRefVisibilitySboolSSI�#3PSRotationAxisVisibilitySboolSSI�#1PSScalingRefVisibilitySboolSSI$9PSHierarchicalCenterVisibilitySboolSSI^$6PSGeometricCenterVisibilitySboolSSI�$8PSReferentialSizeSdoubleSNumberSD(@�$5PSDefaultKeyingGroupSintSIntegerSI(%3PSDefaultKeyingGroupEnumSenumSSI[%%PSPickableSboolSSI�%*PS
TransformableSboolSSI�%(PSCullingModeSenumSSI&-PSShowTrajectoriesSboolSSI4&"PSliwSBoolSSAUI�&CPSLimbLength 1SNumberSSAUD�?DDY@�&ShadingCY�&CullingS
CullingOff�.2ModelL �5:SRightHandMiddle3ModelSLimbNode5'VersionI��.Properties70�'+PSRotationActiveSboolSSI�'(PSInheritTypeSenumSSI(GPS
ScalingMaxSVector3DSVectorSDDDX(8PSDefaultAttributeIndexSintSIntegerSI�(OPSLcl TranslationSLcl TranslationSSA+D >u
�D@�&�D�I��?)IPSLcl RotationSLcl RotationSSA+D�w�?D�a��D��97@_)EPSVisibility InheritanceSVisibility InheritanceSSI�),PS	MultiTakeSintSIntegerSI�)-PSManipulationModeSenumSSI7*UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDt*/PSSetPreferedAngleSActionSSI�*-PSPivotsVisibilitySenumSSI�*5PSRotationLimitsVisibilitySboolSSI:+:PSLocalTranslationRefVisibilitySboolSSIz+2PSRotationRefVisibilitySboolSSI�+3PSRotationAxisVisibilitySboolSSI�+1PSScalingRefVisibilitySboolSSIA,9PSHierarchicalCenterVisibilitySboolSSI�,6PSGeometricCenterVisibilitySboolSSI�,8PSReferentialSizeSdoubleSNumberSD(@-5PSDefaultKeyingGroupSintSIntegerSIO-3PSDefaultKeyingGroupEnumSenumSSI�-%PSPickableSboolSSI�-*PS
TransformableSboolSSI�-(PSCullingModeSenumSSI+.-PSShowTrajectoriesSboolSSI[."PSliwSBoolSSAUI�.CPSLimbLength 1SNumberSSAUD�?DDY@�.ShadingCY�.CullingS
CullingOff{71ModelL(�5:SRightHandIndex1ModelSLimbNode[/VersionI�57Properties70�/HPSPreRotationSVector3DSVectorSD(Qp�c�D���PNk"�Dk�	A��0+PSRotationActiveSboolSSI90(PSInheritTypeSenumSSI�0GPS
ScalingMaxSVector3DSVectorSDDD�08PSDefaultAttributeIndexSintSIntegerSI11OPSLcl TranslationSLcl TranslationSSA+D�e��D zҿ�D��y@�1IPSLcl RotationSLcl RotationSSA+D@���D@
I%�D`�3@�1EPSVisibility InheritanceSVisibility InheritanceSSI2,PS	MultiTakeSintSIntegerSIP2-PSManipulationModeSenumSSI�2UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�2/PSSetPreferedAngleSActionSSI+3-PSPivotsVisibilitySenumSSIn35PSRotationLimitsVisibilitySboolSSI�3:PSLocalTranslationRefVisibilitySboolSSI�32PSRotationRefVisibilitySboolSSI743PSRotationAxisVisibilitySboolSSIv41PSScalingRefVisibilitySboolSSI�49PSHierarchicalCenterVisibilitySboolSSI56PSGeometricCenterVisibilitySboolSSIG58PSReferentialSizeSdoubleSNumberSD(@�55PSDefaultKeyingGroupSintSIntegerSI�53PSDefaultKeyingGroupEnumSenumSSI�5%PSPickableSboolSSI66*PS
TransformableSboolSSIl6(PSCullingModeSenumSSI�6-PSShowTrajectoriesSboolSSI�6"PSliwSBoolSSAUI(7CPSLimbLength 1SNumberSSAUD�?DDY@K7ShadingCYn7CullingS
CullingOff�?1ModelL0�5:SRightHandIndex2ModelSLimbNode�7VersionI��?Properties70F8HPSPreRotationSVector3DSVectorSD�tc�hQ�?D������D�+�}�\�8+PSRotationActiveSboolSSI�8(PSInheritTypeSenumSSI
9GPS
ScalingMaxSVector3DSVectorSDDDP98PSDefaultAttributeIndexSintSIntegerSI�9OPSLcl TranslationSLcl TranslationSSA+D���
�D���?D�!C�?:IPSLcl RotationSLcl RotationSSA+D�a;@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
CullingOffH1ModelL8�5:SRightHandIndex3ModelSLimbNodeS@VersionI��GProperties70�@+PSRotationActiveSboolSSI�@(PSInheritTypeSenumSSI0AGPS
ScalingMaxSVector3DSVectorSDDDvA8PSDefaultAttributeIndexSintSIntegerSI�AOPSLcl TranslationSLcl TranslationSSA+D�.�D��߿D@���?*BIPSLcl RotationSLcl RotationSSA+D@�Q�?D����D�	%@}BEPSVisibility InheritanceSVisibility InheritanceSSI�B,PS	MultiTakeSintSIntegerSI�B-PSManipulationModeSenumSSIUCUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�C/PSSetPreferedAngleSActionSSI�C-PSPivotsVisibilitySenumSSID5PSRotationLimitsVisibilitySboolSSIXD:PSLocalTranslationRefVisibilitySboolSSI�D2PSRotationRefVisibilitySboolSSI�D3PSRotationAxisVisibilitySboolSSIE1PSScalingRefVisibilitySboolSSI_E9PSHierarchicalCenterVisibilitySboolSSI�E6PSGeometricCenterVisibilitySboolSSI�E8PSReferentialSizeSdoubleSNumberSD(@,F5PSDefaultKeyingGroupSintSIntegerSImF3PSDefaultKeyingGroupEnumSenumSSI�F%PSPickableSboolSSI�F*PS
TransformableSboolSSIG(PSCullingModeSenumSSIIG-PSShowTrajectoriesSboolSSIyG"PSliwSBoolSSAUI�GCPSLimbLength 1SNumberSSAUD�?DDY@�GShadingCYHCullingS
CullingOff�P1ModelL@�5:SRightHandThumb1ModelSLimbNodeyHVersionI�SPProperties70�HHPSPreRotationSVector3DSVectorSD�#uS�L<D��t[��?D��*�!I+PSRotationActiveSboolSSIWI(PSInheritTypeSenumSSI�IGPS
ScalingMaxSVector3DSVectorSDDD�I8PSDefaultAttributeIndexSintSIntegerSIOJOPSLcl TranslationSLcl TranslationSSA+D�~��D����D༯@�JIPSLcl RotationSLcl RotationSSA+D�&�+@D ���D���@�JEPSVisibility InheritanceSVisibility InheritanceSSI3K,PS	MultiTakeSintSIntegerSInK-PSManipulationModeSenumSSI�KUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDL/PSSetPreferedAngleSActionSSIIL-PSPivotsVisibilitySenumSSI�L5PSRotationLimitsVisibilitySboolSSI�L:PSLocalTranslationRefVisibilitySboolSSIM2PSRotationRefVisibilitySboolSSIUM3PSRotationAxisVisibilitySboolSSI�M1PSScalingRefVisibilitySboolSSI�M9PSHierarchicalCenterVisibilitySboolSSIN6PSGeometricCenterVisibilitySboolSSIeN8PSReferentialSizeSdoubleSNumberSD(@�N5PSDefaultKeyingGroupSintSIntegerSI�N3PSDefaultKeyingGroupEnumSenumSSIO%PSPickableSboolSSITO*PS
TransformableSboolSSI�O(PSCullingModeSenumSSI�O-PSShowTrajectoriesSboolSSI�O"PSliwSBoolSSAUIFPCPSLimbLength 1SNumberSSAUD�?DDY@iPShadingCY�PCullingS
CullingOff�X1ModelLhrf:SRightHandThumb2ModelSLimbNode�PVersionI�xXProperties70GQ+PSRotationActiveSboolSSI}Q(PSInheritTypeSenumSSI�QGPS
ScalingMaxSVector3DSVectorSDDDR8PSDefaultAttributeIndexSintSIntegerSIuROPSLcl TranslationSLcl TranslationSSA+D`�2��D`���D��@�RHPSLcl RotationSLcl RotationSSAD@��?D��� �D>�ϿSEPSVisibility InheritanceSVisibility InheritanceSSIXS,PS	MultiTakeSintSIntegerSI�S-PSManipulationModeSenumSSI�SUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD3T/PSSetPreferedAngleSActionSSInT-PSPivotsVisibilitySenumSSI�T5PSRotationLimitsVisibilitySboolSSI�T:PSLocalTranslationRefVisibilitySboolSSI9U2PSRotationRefVisibilitySboolSSIzU3PSRotationAxisVisibilitySboolSSI�U1PSScalingRefVisibilitySboolSSIV9PSHierarchicalCenterVisibilitySboolSSIDV6PSGeometricCenterVisibilitySboolSSI�V8PSReferentialSizeSdoubleSNumberSD(@�V5PSDefaultKeyingGroupSintSIntegerSIW3PSDefaultKeyingGroupEnumSenumSSIAW%PSPickableSboolSSIyW*PS
TransformableSboolSSI�W(PSCullingModeSenumSSI�W-PSShowTrajectoriesSboolSSIX"PSliwSBoolSSAUIkXCPSLimbLength 1SNumberSSAUD�?DDY@�XShadingCY�XCullingS
CullingOff9a1ModelLpwf:SRightHandThumb3ModelSLimbNodeYVersionI��`Properties70�YHPSPreRotationSVector3DSVectorSD$�rOϸ>DD�Y+PSRotationActiveSboolSSI�Y(PSInheritTypeSenumSSIMZGPS
ScalingMaxSVector3DSVectorSDDD�Z8PSDefaultAttributeIndexSintSIntegerSI�ZOPSLcl TranslationSLcl TranslationSSA+D@5^�D �r�D@��@F[HPSLcl RotationSLcl RotationSSAD C@D�99�D`�s��[EPSVisibility InheritanceSVisibility InheritanceSSI�[,PS	MultiTakeSintSIntegerSI\-PSManipulationModeSenumSSIq\UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�\/PSSetPreferedAngleSActionSSI�\-PSPivotsVisibilitySenumSSI,]5PSRotationLimitsVisibilitySboolSSIt]:PSLocalTranslationRefVisibilitySboolSSI�]2PSRotationRefVisibilitySboolSSI�]3PSRotationAxisVisibilitySboolSSI4^1PSScalingRefVisibilitySboolSSI{^9PSHierarchicalCenterVisibilitySboolSSI�^6PSGeometricCenterVisibilitySboolSSI_8PSReferentialSizeSdoubleSNumberSD(@H_5PSDefaultKeyingGroupSintSIntegerSI�_3PSDefaultKeyingGroupEnumSenumSSI�_%PSPickableSboolSSI�_*PS
TransformableSboolSSI*`(PSCullingModeSenumSSIe`-PSShowTrajectoriesSboolSSI�`"PSliwSBoolSSAUI�`CPSLimbLength 1SNumberSSAUD�?DDY@	aShadingCY,aCullingS
CullingOff�i.ModelLx|f:SLeftShoulderModelSLimbNode�aVersionI�liProperties70bHPSPreRotationSVector3DSVectorSD�2e��D�Z��_@D�OZ2�I9�:b+PSRotationActiveSboolSSIpb(PSInheritTypeSenumSSI�bGPS
ScalingMaxSVector3DSVectorSDDDc8PSDefaultAttributeIndexSintSIntegerSIhcOPSLcl TranslationSLcl TranslationSSA+D��@D@�)6@D@
M���cIPSLcl RotationSLcl RotationSSA+D e�?D�k�ڿD@w�dEPSVisibility InheritanceSVisibility InheritanceSSILd,PS	MultiTakeSintSIntegerSI�d-PSManipulationModeSenumSSI�dUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD'e/PSSetPreferedAngleSActionSSIbe-PSPivotsVisibilitySenumSSI�e5PSRotationLimitsVisibilitySboolSSI�e:PSLocalTranslationRefVisibilitySboolSSI-f2PSRotationRefVisibilitySboolSSInf3PSRotationAxisVisibilitySboolSSI�f1PSScalingRefVisibilitySboolSSI�f9PSHierarchicalCenterVisibilitySboolSSI8g6PSGeometricCenterVisibilitySboolSSI~g8PSReferentialSizeSdoubleSNumberSD(@�g5PSDefaultKeyingGroupSintSIntegerSIh3PSDefaultKeyingGroupEnumSenumSSI5h%PSPickableSboolSSImh*PS
TransformableSboolSSI�h(PSCullingModeSenumSSI�h-PSShowTrajectoriesSboolSSIi"PSliwSBoolSSAUI_iCPSLimbLength 1SNumberSSAUD�?DDY@�iShadingCY�iCullingS
CullingOff&r)ModelL��f:SLeftArmModelSLimbNodejVersionI��qProperties70ujHPSPreRotationSVector3DSVectorSD��.�&��D�t�r%�D����9@�j+PSRotationActiveSboolSSI�j(PSInheritTypeSenumSSI9kGPS
ScalingMaxSVector3DSVectorSDDDk8PSDefaultAttributeIndexSintSIntegerSI�kOPSLcl TranslationSLcl TranslationSSA+D��$@D��3~>D�ZqT�3lIPSLcl RotationSLcl RotationSSA+D�`H@D�l1�D 0�Q��lEPSVisibility InheritanceSVisibility InheritanceSSI�l,PS	MultiTakeSintSIntegerSI�l-PSManipulationModeSenumSSI^mUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�m/PSSetPreferedAngleSActionSSI�m-PSPivotsVisibilitySenumSSIn5PSRotationLimitsVisibilitySboolSSIan:PSLocalTranslationRefVisibilitySboolSSI�n2PSRotationRefVisibilitySboolSSI�n3PSRotationAxisVisibilitySboolSSI!o1PSScalingRefVisibilitySboolSSIho9PSHierarchicalCenterVisibilitySboolSSI�o6PSGeometricCenterVisibilitySboolSSI�o8PSReferentialSizeSdoubleSNumberSD(@5p5PSDefaultKeyingGroupSintSIntegerSIvp3PSDefaultKeyingGroupEnumSenumSSI�p%PSPickableSboolSSI�p*PS
TransformableSboolSSIq(PSCullingModeSenumSSIRq-PSShowTrajectoriesSboolSSI�q"PSliwSBoolSSAUI�qCPSLimbLength 1SNumberSSAUD�?DDY@�qShadingCYrCullingS
CullingOff�z-ModelL��f:SLeftForeArmModelSLimbNode~rVersionI�XzProperties70�rHPSPreRotationSVector3DSVectorSD0�]��D�Q�e�:�Dy�=���?&s+PSRotationActiveSboolSSI\s(PSInheritTypeSenumSSI�sGPS
ScalingMaxSVector3DSVectorSDDD�s8PSDefaultAttributeIndexSintSIntegerSITtOPSLcl TranslationSLcl TranslationSSA+D��g9@D*�F�D��jG>�tIPSLcl RotationSLcl RotationSSA+D���1�D���2�DZ@�tEPSVisibility InheritanceSVisibility InheritanceSSI8u,PS	MultiTakeSintSIntegerSIsu-PSManipulationModeSenumSSI�uUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDv/PSSetPreferedAngleSActionSSINv-PSPivotsVisibilitySenumSSI�v5PSRotationLimitsVisibilitySboolSSI�v:PSLocalTranslationRefVisibilitySboolSSIw2PSRotationRefVisibilitySboolSSIZw3PSRotationAxisVisibilitySboolSSI�w1PSScalingRefVisibilitySboolSSI�w9PSHierarchicalCenterVisibilitySboolSSI$x6PSGeometricCenterVisibilitySboolSSIjx8PSReferentialSizeSdoubleSNumberSD(@�x5PSDefaultKeyingGroupSintSIntegerSI�x3PSDefaultKeyingGroupEnumSenumSSI!y%PSPickableSboolSSIYy*PS
TransformableSboolSSI�y(PSCullingModeSenumSSI�y-PSShowTrajectoriesSboolSSI�y"PSliwSBoolSSAUIKzCPSLimbLength 1SNumberSSAUD�?DDY@nzShadingCY�zCullingS
CullingOff��*ModelL��f:SLeftHandModelSLimbNode�zVersionI�w�Properties70E{+PSRotationActiveSboolSSI{{(PSInheritTypeSenumSSI�{GPS
ScalingMaxSVector3DSVectorSDDD|8PSDefaultAttributeIndexSintSIntegerSIs|OPSLcl TranslationSLcl TranslationSSA+D���8@Dg@H�D�j>�|IPSLcl RotationSLcl RotationSSA+D����D`û@D@u<��}EPSVisibility InheritanceSVisibility InheritanceSSIW},PS	MultiTakeSintSIntegerSI�}-PSManipulationModeSenumSSI�}UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD2~/PSSetPreferedAngleSActionSSIm~-PSPivotsVisibilitySenumSSI�~5PSRotationLimitsVisibilitySboolSSI�~:PSLocalTranslationRefVisibilitySboolSSI82PSRotationRefVisibilitySboolSSIy3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIC�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@̀5PSDefaultKeyingGroupSintSIntegerSI
�3PSDefaultKeyingGroupEnumSenumSSI@�%PSPickableSboolSSIx�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIj�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff8�0ModelL��f:SLeftHandPinky1ModelSLimbNode�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD�^�P�οDQ�'d�$@DU�Z~Q����+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIK�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D �C@D�S
�D@�	�E�IPSLcl RotationSLcl RotationSSA+D�@D���,�D��
=���EPSVisibility InheritanceSVisibility InheritanceSSI҅,PS	MultiTakeSintSIntegerSI
�-PSManipulationModeSenumSSIp�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI+�5PSRotationLimitsVisibilitySboolSSIs�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI3�1PSScalingRefVisibilitySboolSSIz�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@G�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI)�(PSCullingModeSenumSSId�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY+�CullingS
CullingOff��0ModelL��f:SLeftHandPinky2ModelSLimbNode��VersionI�m�Properties70�HPSPreRotationSVector3DSVectorSD�޶UQ㋿D,��)'��?DhO����?;�+PSRotationActiveSboolSSIq�(PSInheritTypeSenumSSIƌGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIi�OPSLcl TranslationSLcl TranslationSSA+D���@D@�Ji�D`�¿��IPSLcl RotationSLcl RotationSSA+D��G@D��?D`2_<��EPSVisibility InheritanceSVisibility InheritanceSSIM�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD(�/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؛0ModelL��f:SLeftHandPinky3ModelSLimbNode�VersionI���Properties70`�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD1�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D@�s@D���D�D����>�IPSLcl RotationSLcl RotationSSA+D�mE@D��?D�X�;�8�EPSVisibility InheritanceSVisibility InheritanceSSIr�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDM�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI˗5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIS�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIӘ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI^�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI(�3PSDefaultKeyingGroupEnumSenumSSI[�%PSPickableSboolSSI��*PS
TransformableSboolSSIɚ(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI4�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY˛CullingS
CullingOffR�/ModelL��f:SLeftHandRing1ModelSLimbNode2�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD�E��=ģ�DM�˘^�@D��a>4c�ڜ+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIe�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D��@D�P�׿D EB�_�IPSLcl RotationSLcl RotationSSA+D����?D@>��D�|:���EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI'�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDǟ/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIE�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI͠2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIM�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIء6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@a�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIբ%PSPickableSboolSSI
�*PS
TransformableSboolSSIC�(PSCullingModeSenumSSI~�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@"�ShadingCYE�CullingS
CullingOff̬/ModelL��f:SLeftHandRing2ModelSLimbNode��VersionI���Properties70�HPSPreRotationSVector3DSVectorSD0[�	�ԿD�DWP*@DA�?�{�T�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIߥGPS
ScalingMaxSVector3DSVectorSDDD%�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D A@D�Ua�D`;�̿٦IPSLcl RotationSLcl RotationSSA+D@�t�?D����?D@Z\<�,�EPSVisibility InheritanceSVisibility InheritanceSSIf�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDA�/PSSetPreferedAngleSActionSSI|�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIG�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIǩ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIR�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@۪5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIO�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI(�"PSliwSBoolSSAUIy�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�/ModelL��f:SLeftHandRing3ModelSLimbNode&�VersionI���Properties70x�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDI�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��@D`��P>D@>�����IPSLcl RotationSLcl RotationSSA+D�r�?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
CullingOffl�1ModelL�s�:SLeftHandMiddle1ModelSLimbNodeL�VersionI�&�Properties70��HPSPreRotationSVector3DSVectorSDR��Q7؀�D�5�k��D���--���+PSRotationActiveSboolSSI*�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDŶ8PSDefaultAttributeIndexSintSIntegerSI"�OPSLcl TranslationSLcl TranslationSSA+D�h@D`5!ȿD�9�?y�IPSLcl RotationSLcl RotationSSA+D@�A��D@M�?DhV:�̷EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIA�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI_�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI(�3PSRotationAxisVisibilitySboolSSIg�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI8�8PSReferentialSizeSdoubleSNumberSD(@{�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI'�*PS
TransformableSboolSSI]�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIȼ"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@<�ShadingCY_�CullingS
CullingOff��1ModelL�x�:SLeftHandMiddle2ModelSLimbNodeȽVersionI���Properties707�HPSPreRotationSVector3DSVectorSD���`�տD`���@D8�#W'9�p�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDA�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D Q�@D-s??D��ǥ���IPSLcl RotationSLcl RotationSSA+D@_�D0wԿD��?�H�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI �UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD]�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI#�:PSLocalTranslationRefVisibilitySboolSSIc�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI*�9PSHierarchicalCenterVisibilitySboolSSIn�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI8�3PSDefaultKeyingGroupEnumSenumSSIk�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSID�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�1ModelL�}�:SLeftHandMiddle3ModelSLimbNodeD�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI!�GPS
ScalingMaxSVector3DSVectorSDDDg�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D �+@D q��D��-�>�IPSLcl RotationSLcl RotationSSA+D��=�D�(�ԿD�V�@�n�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIF�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSII�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI	�1PSScalingRefVisibilitySboolSSIP�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI^�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI:�-PSShowTrajectoriesSboolSSIj�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��0ModelL���:SLeftHandIndex1ModelSLimbNodei�VersionI�C�Properties70��HPSPreRotationSVector3DSVectorSD4�t�c�D���PNk"�Dʴ	A���+PSRotationActiveSboolSSIG�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI?�OPSLcl TranslationSLcl TranslationSSA+D��@D���D�B
@��IPSLcl RotationSLcl RotationSSA+D��~�D q�$@D�B
2���EPSVisibility InheritanceSVisibility InheritanceSSI#�,PS	MultiTakeSintSIntegerSI^�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI9�-PSPivotsVisibilitySenumSSI|�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIE�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIU�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSID�*PS
TransformableSboolSSIz�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI6�CPSLimbLength 1SNumberSSAUD�?DDY@Y�ShadingCY|�CullingS
CullingOff�0ModelL���:SLeftHandIndex2ModelSLimbNode��VersionI���Properties70S�HPSPreRotationSVector3DSVectorSD�&^�hQ�?D�������D�+�}�\���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD]�8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D�{�@D��ft?D`�Z�?�IPSLcl RotationSLcl RotationSSA+D��P�D ���D@�p>�d�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI<�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDy�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI?�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSIF�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIT�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI0�-PSShowTrajectoriesSboolSSI`�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff)�0ModelL��:SLeftHandIndex3ModelSLimbNode_�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI<�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D��_@D�i���D`��վ6�IPSLcl RotationSLcl RotationSSA+D@��D���ٿD`�\3���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��0ModelL��:SLeftHandThumb1ModelSLimbNode��VersionI�^�Properties70��HPSPreRotationSVector3DSVectorSDD��t[��?D2��*�,�+PSRotationActiveSboolSSIb�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIZ�OPSLcl TranslationSLcl TranslationSSA+D���?D���D��l@��IPSLcl RotationSLcl RotationSSA+D�(U)@D��k@D��o��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��0ModelL��:SLeftHandThumb2ModelSLimbNode��VersionI���Properties70Q�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD"�8PSDefaultAttributeIndexSintSIntegerSI�OPSLcl TranslationSLcl TranslationSSA+D`�2�?D`���D`
�@��HPSLcl RotationSLcl RotationSSAD@��?D�C� @D����?(�EPSVisibility InheritanceSVisibility InheritanceSSIb�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD=�/PSSetPreferedAngleSActionSSIx�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIC�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI
�9PSHierarchicalCenterVisibilitySboolSSIN�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIK�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI$�"PSliwSBoolSSAUIu�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffB0ModelL��:SLeftHandThumb3ModelSLimbNode#�VersionI���Properties70��HPSPreRotationSVector3DSVectorSD��cܥ�>DD��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIV�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��OPSLcl TranslationSLcl TranslationSSA+D@5^@D �r�D@��@O�HPSLcl RotationSLcl RotationSSADD@D`99@D w@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIz�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI5�5PSRotationLimitsVisibilitySboolSSI}�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI=�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@Q�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI3�(PSCullingModeSenumSSIn�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@ShadingCY5CullingS
CullingOffc,ModelL ��:SRightUpLegModelSLimbNode�VersionI�Properties70�+PSRotationActiveSboolSSI!(PSInheritTypeSenumSSIvGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIOPSLcl TranslationSLcl TranslationSSA+D@.�D �C�D �pIPSLcl RotationSLcl RotationSSA+D`��C�D@/Y�D�,�&@�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI8-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSIV5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI3PSRotationAxisVisibilitySboolSSI^1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI/8PSReferentialSizeSdoubleSNumberSD(@r5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI*PS
TransformableSboolSSIT(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@3ShadingCYVCullingS
CullingOff�*ModelL(��:SRightLegModelSLimbNode�VersionI�<Properties70
	+PSRotationActiveSboolSSI@	(PSInheritTypeSenumSSI�	GPS
ScalingMaxSVector3DSVectorSDDD�	8PSDefaultAttributeIndexSintSIntegerSI8
OPSLcl TranslationSLcl TranslationSSA+D`�p�D@�tD�D@�e���
IPSLcl RotationSLcl RotationSSA+D@K
J@D ��1�D��4��
EPSVisibility InheritanceSVisibility InheritanceSSI,PS	MultiTakeSintSIntegerSIW-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI2-PSPivotsVisibilitySenumSSIu5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI>
3PSRotationAxisVisibilitySboolSSI}
1PSScalingRefVisibilitySboolSSI�
9PSHierarchicalCenterVisibilitySboolSSI6PSGeometricCenterVisibilitySboolSSIN8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI%PSPickableSboolSSI=*PS
TransformableSboolSSIs(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI/CPSLimbLength 1SNumberSSAUD�?DDY@RShadingCYuCullingS
CullingOff�+ModelL0��:SRightFootModelSLimbNode�VersionI�\Properties70*+PSRotationActiveSboolSSI`(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIXOPSLcl TranslationSLcl TranslationSSA+D`V}�D@e(E�D |��IPSLcl RotationSLcl RotationSSA+D��7�D�}@D@��2@EPSVisibility InheritanceSVisibility InheritanceSSI<,PS	MultiTakeSintSIntegerSIw-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD/PSSetPreferedAngleSActionSSIR-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI2PSRotationRefVisibilitySboolSSI^3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI(6PSGeometricCenterVisibilitySboolSSIn8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI%%PSPickableSboolSSI]*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIOCPSLimbLength 1SNumberSSAUD�?DDY@rShadingCY�CullingS
CullingOffj +ModelL��9SRightToesModelSLimbNode�VersionI�$ Properties70J+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD8PSDefaultAttributeIndexSintSIntegerSIwNPSLcl TranslationSLcl TranslationSSAD�Y��D�TD�D`�-@�EPSVisibility InheritanceSVisibility InheritanceSSI,PS	MultiTakeSintSIntegerSI?-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSI]5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI&3PSRotationAxisVisibilitySboolSSIe1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI68PSReferentialSizeSdoubleSNumberSD(@y5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI%*PS
TransformableSboolSSI[(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI CPSLimbLength 1SNumberSSAUD�?DDY@: ShadingCY] CullingS
CullingOff�(+ModelL��9SLeftUpLegModelSLimbNode� VersionI�D(Properties70!+PSRotationActiveSboolSSIH!(PSInheritTypeSenumSSI�!GPS
ScalingMaxSVector3DSVectorSDDD�!8PSDefaultAttributeIndexSintSIntegerSI@"OPSLcl TranslationSLcl TranslationSSA+D`.@D��C�DC=�"IPSLcl RotationSLcl RotationSSA+DI�A�D��?D�"��"EPSVisibility InheritanceSVisibility InheritanceSSI$#,PS	MultiTakeSintSIntegerSI_#-PSManipulationModeSenumSSI�#UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�#/PSSetPreferedAngleSActionSSI:$-PSPivotsVisibilitySenumSSI}$5PSRotationLimitsVisibilitySboolSSI�$:PSLocalTranslationRefVisibilitySboolSSI%2PSRotationRefVisibilitySboolSSIF%3PSRotationAxisVisibilitySboolSSI�%1PSScalingRefVisibilitySboolSSI�%9PSHierarchicalCenterVisibilitySboolSSI&6PSGeometricCenterVisibilitySboolSSIV&8PSReferentialSizeSdoubleSNumberSD(@�&5PSDefaultKeyingGroupSintSIntegerSI�&3PSDefaultKeyingGroupEnumSenumSSI
'%PSPickableSboolSSIE'*PS
TransformableSboolSSI{'(PSCullingModeSenumSSI�'-PSShowTrajectoriesSboolSSI�'"PSliwSBoolSSAUI7(CPSLimbLength 1SNumberSSAUD�?DDY@Z(ShadingCY}(CullingS
CullingOff�0)ModelL��9SLeftLegModelSLimbNode�(VersionI�b0Properties700)+PSRotationActiveSboolSSIf)(PSInheritTypeSenumSSI�)GPS
ScalingMaxSVector3DSVectorSDDD*8PSDefaultAttributeIndexSintSIntegerSI^*OPSLcl TranslationSLcl TranslationSSA+D�p@D �tD�D@�e���*IPSLcl RotationSLcl RotationSSA+D �mY@D�&�D�ܭ0@+EPSVisibility InheritanceSVisibility InheritanceSSIB+,PS	MultiTakeSintSIntegerSI}+-PSManipulationModeSenumSSI�+UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD,/PSSetPreferedAngleSActionSSIX,-PSPivotsVisibilitySenumSSI�,5PSRotationLimitsVisibilitySboolSSI�,:PSLocalTranslationRefVisibilitySboolSSI#-2PSRotationRefVisibilitySboolSSId-3PSRotationAxisVisibilitySboolSSI�-1PSScalingRefVisibilitySboolSSI�-9PSHierarchicalCenterVisibilitySboolSSI..6PSGeometricCenterVisibilitySboolSSIt.8PSReferentialSizeSdoubleSNumberSD(@�.5PSDefaultKeyingGroupSintSIntegerSI�.3PSDefaultKeyingGroupEnumSenumSSI+/%PSPickableSboolSSIc/*PS
TransformableSboolSSI�/(PSCullingModeSenumSSI�/-PSShowTrajectoriesSboolSSI0"PSliwSBoolSSAUIU0CPSLimbLength 1SNumberSSAUD�?DDY@x0ShadingCY�0CullingS
CullingOff�8*ModelL��9SLeftFootModelSLimbNode�0VersionI��8Properties70O1+PSRotationActiveSboolSSI�1(PSInheritTypeSenumSSI�1GPS
ScalingMaxSVector3DSVectorSDDD 28PSDefaultAttributeIndexSintSIntegerSI}2OPSLcl TranslationSLcl TranslationSSA+D`V}�?D@e(E�D |��2IPSLcl RotationSLcl RotationSSA+D`�@D��Q&�D�E)�'3EPSVisibility InheritanceSVisibility InheritanceSSIa3,PS	MultiTakeSintSIntegerSI�3-PSManipulationModeSenumSSI�3UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD<4/PSSetPreferedAngleSActionSSIw4-PSPivotsVisibilitySenumSSI�45PSRotationLimitsVisibilitySboolSSI5:PSLocalTranslationRefVisibilitySboolSSIB52PSRotationRefVisibilitySboolSSI�53PSRotationAxisVisibilitySboolSSI�51PSScalingRefVisibilitySboolSSI	69PSHierarchicalCenterVisibilitySboolSSIM66PSGeometricCenterVisibilitySboolSSI�68PSReferentialSizeSdoubleSNumberSD(@�65PSDefaultKeyingGroupSintSIntegerSI73PSDefaultKeyingGroupEnumSenumSSIJ7%PSPickableSboolSSI�7*PS
TransformableSboolSSI�7(PSCullingModeSenumSSI�7-PSShowTrajectoriesSboolSSI#8"PSliwSBoolSSAUIt8CPSLimbLength 1SNumberSSAUD�?DDY@�8ShadingCY�8CullingS
CullingOff�@*ModelL�$�9SLeftToesModelSLimbNode9VersionI�H@Properties70n9+PSRotationActiveSboolSSI�9(PSInheritTypeSenumSSI�9GPS
ScalingMaxSVector3DSVectorSDDD?:8PSDefaultAttributeIndexSintSIntegerSI�:NPSLcl TranslationSLcl TranslationSSAD�Y��?D�TD�D��-@�:EPSVisibility InheritanceSVisibility InheritanceSSI(;,PS	MultiTakeSintSIntegerSIc;-PSManipulationModeSenumSSI�;UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD</PSSetPreferedAngleSActionSSI><-PSPivotsVisibilitySenumSSI�<5PSRotationLimitsVisibilitySboolSSI�<:PSLocalTranslationRefVisibilitySboolSSI	=2PSRotationRefVisibilitySboolSSIJ=3PSRotationAxisVisibilitySboolSSI�=1PSScalingRefVisibilitySboolSSI�=9PSHierarchicalCenterVisibilitySboolSSI>6PSGeometricCenterVisibilitySboolSSIZ>8PSReferentialSizeSdoubleSNumberSD(@�>5PSDefaultKeyingGroupSintSIntegerSI�>3PSDefaultKeyingGroupEnumSenumSSI?%PSPickableSboolSSII?*PS
TransformableSboolSSI?(PSCullingModeSenumSSI�?-PSShowTrajectoriesSboolSSI�?"PSliwSBoolSSAUI;@CPSLimbLength 1SNumberSSAUD�?DDY@^@ShadingCY�@CullingS
CullingOff	B/AnimationStackL�ǫ9S_214_Run_wallPushAnimStackS�AProperties70/A0PS
LocalStartSKTimeSTimeSL���jAlA/PS	LocalStopSKTimeSTimeSL�Q��a�A4PSReferenceStartSKTimeSTimeSL���jA�A3PS
ReferenceStopSKTimeSTimeSL�Q��a�D=AnimationLayerL���9S*_214_Run_wallPush:BaseAnimationAnimLayerS�DProperties70�BAPSColorSColorRGBSColorSD�������?DD�������?C5PSBlendModeBypassS	ULongLongSSLFC,PS	MultiTakeSintSIntegerSIC+PSmLayerIDSintSIntegerSI�C)PSMutedForSoloSboolSSI�C*PS
MutedByParentSboolSSI'D+PSLockedByParentSboolSSIjD5PSParentCollapseVisibilitySboolSSI�D"PSEmptySboolSSI\G:AnimationLayerL�E�9S'_214_Run_wallPush:AnimLayer1AnimLayerSOGProperties70qEAPSColorSColorRGBSColorSD�������?DD�������?�E5PSBlendModeBypassS	ULongLongSSL�E,PS	MultiTakeSintSIntegerSI'F+PSmLayerIDSintSIntegerSI^F)PSMutedForSoloSboolSSI�F*PS
MutedByParentSboolSSI�F+PSLockedByParentSboolSSIG5PSParentCollapseVisibilitySboolSSIBG"PSEmptySboolSSI�H#AnimationCurveNodeLx�:STAnimCurveNodeS�HProperties70�GPSdSCompoundSSH'PSd|XSNumberSSADLH'PSd|YSNumberSSAD�H'PSd|ZSNumberSSAD�I#AnimationCurveNodeLO�:SRAnimCurveNodeS�IProperties70!IPSdSCompoundSSVI'PSd|XSNumberSSAD���T��I'PSd|YSNumberSSAD@�5T@�I'PSd|ZSNumberSSAD�XX�K#AnimationCurveNodeL Dž:STAnimCurveNodeSKProperties70`JPSdSCompoundSS�J'PSd|XSNumberSSAD�J'PSd|YSNumberSSAD�J'PSd|ZSNumberSSADXL#AnimationCurveNodeL��:SRAnimCurveNodeSKLProperties70�KPSdSCompoundSS�K'PSd|XSNumberSSAD j*@	L'PSd|YSNumberSSAD�0�>L'PSd|ZSNumberSSAD��4,@�M#AnimationCurveNodeL2�:STAnimCurveNodeS�MProperties70�LPSdSCompoundSSM'PSd|XSNumberSSADHM'PSd|YSNumberSSAD}M'PSd|ZSNumberSSAD�N#AnimationCurveNodeLXM�:SRAnimCurveNodeS�NProperties70NPSdSCompoundSSRN'PSd|XSNumberSSAD��z%��N'PSd|YSNumberSSAD@E��?�N'PSd|ZSNumberSSAD���P#AnimationCurveNodeL��:STAnimCurveNodeSPProperties70\OPSdSCompoundSS�O'PSd|XSNumberSSAD�O'PSd|YSNumberSSAD�O'PSd|ZSNumberSSADTQ#AnimationCurveNodeL`Ʌ:SRAnimCurveNodeSGQProperties70�PPSdSCompoundSS�P'PSd|XSNumberSSAD`5� �Q'PSd|YSNumberSSAD ���?:Q'PSd|ZSNumberSSAD��@�R#AnimationCurveNodeL�,�:STAnimCurveNodeS�RProperties70�QPSdSCompoundSSR'PSd|XSNumberSSADDR'PSd|YSNumberSSADyR'PSd|ZSNumberSSAD�S#AnimationCurveNodeL@��:SRAnimCurveNodeS�SProperties70SPSdSCompoundSSNS'PSd|XSNumberSSAD $
��S'PSd|YSNumberSSAD�@�S'PSd|ZSNumberSSAD���U#AnimationCurveNodeL��:STAnimCurveNodeSUProperties70XTPSdSCompoundSS�T'PSd|XSNumberSSAD�T'PSd|YSNumberSSAD�T'PSd|ZSNumberSSADPV#AnimationCurveNodeL�F�:SRAnimCurveNodeSCVProperties70�UPSdSCompoundSS�U'PSd|XSNumberSSAD@�d8@V'PSd|YSNumberSSAD����6V'PSd|ZSNumberSSAD`{iP@�W#AnimationCurveNodeL���:STAnimCurveNodeS�WProperties70�VPSdSCompoundSSW'PSd|XSNumberSSAD@W'PSd|YSNumberSSADuW'PSd|ZSNumberSSAD�X#AnimationCurveNodeL���:SRAnimCurveNodeS�XProperties70XPSdSCompoundSSJX'PSd|XSNumberSSAD�A�@X'PSd|YSNumberSSAD`
�<@�X'PSd|ZSNumberSSAD�h�ڿ
Z#AnimationCurveNodeL���:STAnimCurveNodeSZProperties70TYPSdSCompoundSS�Y'PSd|XSNumberSSAD�Y'PSd|YSNumberSSAD�Y'PSd|ZSNumberSSADL[#AnimationCurveNodeLH��:SRAnimCurveNodeS?[Properties70�ZPSdSCompoundSS�Z'PSd|XSNumberSSAD��տ�Z'PSd|YSNumberSSAD@��?2['PSd|ZSNumberSSAD@�-(��\#AnimationCurveNodeLh�:STAnimCurveNodeS~\Properties70�[PSdSCompoundSS\'PSd|XSNumberSSAD<\'PSd|YSNumberSSADq\'PSd|ZSNumberSSAD�]#AnimationCurveNodeL`�:SRAnimCurveNodeS�]Properties70]PSdSCompoundSSF]'PSd|XSNumberSSAD`2* �{]'PSd|YSNumberSSAD��0@�]'PSd|ZSNumberSSAD`��8@	_#AnimationCurveNodeLP��:STAnimCurveNodeS�^Properties70P^PSdSCompoundSS�^'PSd|XSNumberSSAD�^'PSd|YSNumberSSAD�^'PSd|ZSNumberSSADH`#AnimationCurveNodeL@/�:SRAnimCurveNodeS;`Properties70�_PSdSCompoundSS�_'PSd|XSNumberSSAD�?U��_'PSd|YSNumberSSAD 2��?.`'PSd|ZSNumberSSAD@C<@�a#AnimationCurveNodeLx`�:STAnimCurveNodeSzaProperties70�`PSdSCompoundSSa'PSd|XSNumberSSAD8a'PSd|YSNumberSSADma'PSd|ZSNumberSSAD�b#AnimationCurveNodeL��:SRAnimCurveNodeS�bProperties70
bPSdSCompoundSSBb'PSd|XSNumberSSADZn
�wb'PSd|YSNumberSSAD�?��?�b'PSd|ZSNumberSSAD^�1@d#AnimationCurveNodeLF�:STAnimCurveNodeS�cProperties70LcPSdSCompoundSS�c'PSd|XSNumberSSAD�c'PSd|YSNumberSSAD�c'PSd|ZSNumberSSADDe#AnimationCurveNodeL���:SRAnimCurveNodeS7eProperties70�dPSdSCompoundSS�d'PSd|XSNumberSSAD`�T��d'PSd|YSNumberSSAD`�t@*e'PSd|ZSNumberSSAD�Y�9@�f#AnimationCurveNodeL��:STAnimCurveNodeSvfProperties70�ePSdSCompoundSS�e'PSd|XSNumberSSAD4f'PSd|YSNumberSSADif'PSd|ZSNumberSSAD�g#AnimationCurveNodeL�-�:SRAnimCurveNodeS�gProperties70	gPSdSCompoundSS>g'PSd|XSNumberSSAD SS�sg'PSd|YSNumberSSAD 9x�?�g'PSd|ZSNumberSSAD@YT<@i#AnimationCurveNodeL�:STAnimCurveNodeS�hProperties70HhPSdSCompoundSS}h'PSd|XSNumberSSAD�h'PSd|YSNumberSSAD�h'PSd|ZSNumberSSAD@j#AnimationCurveNodeLВ�:SRAnimCurveNodeS3jProperties70�iPSdSCompoundSS�i'PSd|XSNumberSSAD�*����i'PSd|YSNumberSSAD��W�?&j'PSd|ZSNumberSSAD��1@k#AnimationCurveNodeL�:STAnimCurveNodeSrkProperties70�jPSdSCompoundSS�j'PSd|XSNumberSSAD0k'PSd|YSNumberSSADek'PSd|ZSNumberSSAD�l#AnimationCurveNodeLp��:SRAnimCurveNodeS�lProperties70lPSdSCompoundSS:l'PSd|XSNumberSSAD�a=@ol'PSd|YSNumberSSAD�����l'PSd|ZSNumberSSAD�J�;@�m#AnimationCurveNodeLx��9STAnimCurveNodeS�mProperties70DmPSdSCompoundSSym'PSd|XSNumberSSAD�m'PSd|YSNumberSSAD�m'PSd|ZSNumberSSAD<o#AnimationCurveNodeL��9SRAnimCurveNodeS/oProperties70�nPSdSCompoundSS�n'PSd|XSNumberSSAD�c��?�n'PSd|YSNumberSSAD����"o'PSd|ZSNumberSSAD��@@{p#AnimationCurveNodeL��9STAnimCurveNodeSnpProperties70�oPSdSCompoundSS�o'PSd|XSNumberSSAD,p'PSd|YSNumberSSADap'PSd|ZSNumberSSAD�q#AnimationCurveNodeL���9SRAnimCurveNodeS�qProperties70qPSdSCompoundSS6q'PSd|XSNumberSSAD��(�?kq'PSd|YSNumberSSAD �o���q'PSd|ZSNumberSSAD��6@�r#AnimationCurveNodeL���9STAnimCurveNodeS�rProperties70@rPSdSCompoundSSur'PSd|XSNumberSSAD�r'PSd|YSNumberSSAD�r'PSd|ZSNumberSSAD8t#AnimationCurveNodeL ��9SRAnimCurveNodeS+tProperties70sPSdSCompoundSS�s'PSd|XSNumberSSAD L�ƿ�s'PSd|YSNumberSSAD�W
%�t'PSd|ZSNumberSSAD��h3@wu#AnimationCurveNodeL(��9STAnimCurveNodeSjuProperties70�tPSdSCompoundSS�t'PSd|XSNumberSSAD(u'PSd|YSNumberSSAD]u'PSd|ZSNumberSSAD�v#AnimationCurveNodeLb�9SRAnimCurveNodeS�vProperties70�uPSdSCompoundSS2v'PSd|XSNumberSSAD���@gv'PSd|YSNumberSSAD�e���v'PSd|ZSNumberSSAD �@@�w#AnimationCurveNodeL�h�9STAnimCurveNodeS�wProperties70<wPSdSCompoundSSqw'PSd|XSNumberSSAD�w'PSd|YSNumberSSAD�w'PSd|ZSNumberSSAD4y#AnimationCurveNodeLp��9SRAnimCurveNodeS'yProperties70{xPSdSCompoundSS�x'PSd|XSNumberSSAD��p�?�x'PSd|YSNumberSSAD����y'PSd|ZSNumberSSAD@�@$@sz#AnimationCurveNodeL�9STAnimCurveNodeSfzProperties70�yPSdSCompoundSS�y'PSd|XSNumberSSAD$z'PSd|YSNumberSSADYz'PSd|ZSNumberSSAD�{#AnimationCurveNodeL��9SRAnimCurveNodeS�{Properties70�zPSdSCompoundSS.{'PSd|XSNumberSSAD���+@c{'PSd|YSNumberSSAD�
��{'PSd|ZSNumberSSAD}f@�|#AnimationCurveNodeLЊ�9STAnimCurveNodeS�|Properties708|PSdSCompoundSSm|'PSd|XSNumberSSAD�|'PSd|YSNumberSSAD�|'PSd|ZSNumberSSAD0~#AnimationCurveNodeL8��9STAnimCurveNodeS#~Properties70w}PSdSCompoundSS�}'PSd|XSNumberSSAD�}'PSd|YSNumberSSAD~'PSd|ZSNumberSSADo#AnimationCurveNodeL���9STAnimCurveNodeSbProperties70�~PSdSCompoundSS�~'PSd|XSNumberSSAD 'PSd|YSNumberSSADU'PSd|ZSNumberSSAD��#AnimationCurveNodeL`��9SRAnimCurveNodeS��Properties70�PSdSCompoundSS*�'PSd|XSNumberSSAD���?_�'PSd|YSNumberSSAD���翔�'PSd|ZSNumberSSAD ?�
��#AnimationCurveNodeLȃ�9STAnimCurveNodeS��Properties704�PSdSCompoundSSi�'PSd|XSNumberSSAD��'PSd|YSNumberSSADӁ'PSd|ZSNumberSSAD,�#AnimationCurveNodeL ��9SRAnimCurveNodeS�Properties70s�PSdSCompoundSS��'PSd|XSNumberSSAD` 6H@݂'PSd|YSNumberSSAD�g���'PSd|ZSNumberSSAD�B�Q�k�#AnimationCurveNodeL�y�9STAnimCurveNodeS^�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�'PSd|YSNumberSSADQ�'PSd|ZSNumberSSAD��#AnimationCurveNodeLX{�9SRAnimCurveNodeS��Properties70�PSdSCompoundSS&�'PSd|XSNumberSSAD �5�[�'PSd|YSNumberSSAD��2���'PSd|ZSNumberSSAD��|@�#AnimationCurveNodeL�w�9STAnimCurveNodeS܆Properties700�PSdSCompoundSSe�'PSd|XSNumberSSAD��'PSd|YSNumberSSADφ'PSd|ZSNumberSSAD(�#AnimationCurveNodeL�q�9SRAnimCurveNodeS�Properties70o�PSdSCompoundSS��'PSd|XSNumberSSAD��S�ه'PSd|YSNumberSSAD �@�'PSd|ZSNumberSSAD����g�#AnimationCurveNodeL�r�9STAnimCurveNodeSZ�Properties70��PSdSCompoundSS�'PSd|XSNumberSSAD�'PSd|YSNumberSSADM�'PSd|ZSNumberSSAD��#AnimationCurveNodeL@o�9SRAnimCurveNodeS��Properties70�PSdSCompoundSS"�'PSd|XSNumberSSAD�m@W�'PSd|YSNumberSSADI�,���'PSd|ZSNumberSSAD�x�<��#AnimationCurveNodeL8h�9STAnimCurveNodeS؋Properties70,�PSdSCompoundSSa�'PSd|XSNumberSSAD��'PSd|YSNumberSSADˋ'PSd|ZSNumberSSAD$�#AnimationCurveNodeL�\�9SRAnimCurveNodeS�Properties70k�PSdSCompoundSS��'PSd|XSNumberSSAD��I@Ռ'PSd|YSNumberSSAD��?
�'PSd|ZSNumberSSAD��<�c�#AnimationCurveNodeL�_�9STAnimCurveNodeSV�Properties70��PSdSCompoundSSߍ'PSd|XSNumberSSAD�'PSd|YSNumberSSADI�'PSd|ZSNumberSSAD��#AnimationCurveNodeL���9SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD��@S�'PSd|YSNumberSSAD`���?��'PSd|ZSNumberSSAD���;��#AnimationCurveNodeLp��9STAnimCurveNodeSԐProperties70(�PSdSCompoundSS]�'PSd|XSNumberSSAD��'PSd|YSNumberSSADǐ'PSd|ZSNumberSSAD �#AnimationCurveNodeL@��9SRAnimCurveNodeS�Properties70g�PSdSCompoundSS��'PSd|XSNumberSSAD�N��?ё'PSd|YSNumberSSAD�����'PSd|ZSNumberSSAD�D8:�_�#AnimationCurveNodeL��9STAnimCurveNodeSR�Properties70��PSdSCompoundSSے'PSd|XSNumberSSAD�'PSd|YSNumberSSADE�'PSd|ZSNumberSSAD��#AnimationCurveNodeL��9SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD���?O�'PSd|YSNumberSSAD����?��'PSd|ZSNumberSSAD��<�ݕ#AnimationCurveNodeL���9STAnimCurveNodeSЕProperties70$�PSdSCompoundSSY�'PSd|XSNumberSSAD��'PSd|YSNumberSSADÕ'PSd|ZSNumberSSAD�#AnimationCurveNodeL���9SRAnimCurveNodeS�Properties70c�PSdSCompoundSS��'PSd|XSNumberSSAD����?͖'PSd|YSNumberSSAD`�
�?�'PSd|ZSNumberSSADck<�[�#AnimationCurveNodeLP��9STAnimCurveNodeSN�Properties70��PSdSCompoundSSח'PSd|XSNumberSSAD�'PSd|YSNumberSSADA�'PSd|ZSNumberSSAD��#AnimationCurveNodeL ��9SRAnimCurveNodeS��Properties70�PSdSCompoundSS�'PSd|XSNumberSSAD����K�'PSd|YSNumberSSAD�+��?��'PSd|ZSNumberSSAD��9�ٚ#AnimationCurveNodeL���9STAnimCurveNodeS̚Properties70 �PSdSCompoundSSU�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL���9SRAnimCurveNodeS�Properties70_�PSdSCompoundSS��'PSd|XSNumberSSAD�
T�ɛ'PSd|YSNumberSSAD��TԿ��'PSd|ZSNumberSSAD d5?�W�#AnimationCurveNodeL���9STAnimCurveNodeSJ�Properties70��PSdSCompoundSSӜ'PSd|XSNumberSSAD�'PSd|YSNumberSSAD=�'PSd|ZSNumberSSAD��#AnimationCurveNodeL`��9SRAnimCurveNodeS��Properties70ݝPSdSCompoundSS�'PSd|XSNumberSSAD���G�'PSd|YSNumberSSAD�Uտ|�'PSd|ZSNumberSSAD`��@�՟#AnimationCurveNodeL0��9STAnimCurveNodeSȟProperties70�PSdSCompoundSSQ�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL��9SRAnimCurveNodeS�Properties70[�PSdSCompoundSS��'PSd|XSNumberSSAD�1��Š'PSd|YSNumberSSAD R=%@��'PSd|ZSNumberSSAD��1�S�#AnimationCurveNodeL`��9STAnimCurveNodeSF�Properties70��PSdSCompoundSSϡ'PSd|XSNumberSSAD�'PSd|YSNumberSSAD9�'PSd|ZSNumberSSAD��#AnimationCurveNodeL0��9SRAnimCurveNodeS��Properties70٢PSdSCompoundSS�'PSd|XSNumberSSAD �6�C�'PSd|YSNumberSSAD �S�x�'PSd|ZSNumberSSAD�>�Ѥ#AnimationCurveNodeL��9STAnimCurveNodeSĤProperties70�PSdSCompoundSSM�'PSd|XSNumberSSAD��'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL���9SRAnimCurveNodeS�Properties70W�PSdSCompoundSS��'PSd|XSNumberSSAD�Nj���'PSd|YSNumberSSAD�`�ܿ��'PSd|ZSNumberSSADֺ3�O�#AnimationCurveNodeL���9STAnimCurveNodeSB�Properties70��PSdSCompoundSS˦'PSd|XSNumberSSAD�'PSd|YSNumberSSAD5�'PSd|ZSNumberSSAD��#AnimationCurveNodeLp��9SRAnimCurveNodeS��Properties70էPSdSCompoundSS
�'PSd|XSNumberSSAD@�B)@?�'PSd|YSNumberSSAD � @t�'PSd|ZSNumberSSAD ��ͩ#AnimationCurveNodeL@��9STAnimCurveNodeS��Properties70�PSdSCompoundSSI�'PSd|XSNumberSSAD~�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL��9STAnimCurveNodeS��Properties70S�PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD�'PSd|ZSNumberSSADK�#AnimationCurveNodeL���9STAnimCurveNodeS>�Properties70��PSdSCompoundSSǫ'PSd|XSNumberSSAD��'PSd|YSNumberSSAD1�'PSd|ZSNumberSSAD��#AnimationCurveNodeL���9SRAnimCurveNodeS}�Properties70ѬPSdSCompoundSS�'PSd|XSNumberSSAD ÉD�;�'PSd|YSNumberSSAD��a�p�'PSd|ZSNumberSSAD �r(@ɮ#AnimationCurveNodeL���9STAnimCurveNodeS��Properties70�PSdSCompoundSSE�'PSd|XSNumberSSADz�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeLP��9SRAnimCurveNodeS��Properties70O�PSdSCompoundSS��'PSd|XSNumberSSAD��,J@��'PSd|YSNumberSSAD@�~2��'PSd|ZSNumberSSAD��{5�G�#AnimationCurveNodeL ��9STAnimCurveNodeS:�Properties70��PSdSCompoundSSð'PSd|XSNumberSSAD��'PSd|YSNumberSSAD-�'PSd|ZSNumberSSAD��#AnimationCurveNodeL���9SRAnimCurveNodeSy�Properties70ͱPSdSCompoundSS�'PSd|XSNumberSSAD�U�5�7�'PSd|YSNumberSSAD`�@l�'PSd|ZSNumberSSAD�b2@ų#AnimationCurveNodeL���9STAnimCurveNodeS��Properties70�PSdSCompoundSSA�'PSd|XSNumberSSADv�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL���9SRAnimCurveNodeS��Properties70K�PSdSCompoundSS��'PSd|XSNumberSSAD��(@���'PSd|YSNumberSSAD���?�'PSd|ZSNumberSSAD`���C�#AnimationCurveNodeL`�9STAnimCurveNodeS6�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD��'PSd|YSNumberSSAD)�'PSd|ZSNumberSSAD��#AnimationCurveNodeL0�9SRAnimCurveNodeSu�Properties70ɶPSdSCompoundSS��'PSd|XSNumberSSAD��@Y@3�'PSd|YSNumberSSAD���%�h�'PSd|ZSNumberSSAD �0@��#AnimationCurveNodeL�9STAnimCurveNodeS��Properties70�PSdSCompoundSS=�'PSd|XSNumberSSADr�'PSd|YSNumberSSAD��'PSd|ZSNumberSSAD�#AnimationCurveNodeL��9SRAnimCurveNodeS�Properties70G�PSdSCompoundSS|�'PSd|XSNumberSSAD��@��'PSd|YSNumberSSAD`�7&��'PSd|ZSNumberSSAD�B)���AnimationCurveL��-SAnimCurveSV�	DefaultDn�KeyVerI�o��KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�}
KeyValueFloatf\po��	������m��.��ÝN���0���j��亥��
�Å��m�Û���F���<����v�;�i�M�]ï�Q�)�F�w0<�˸1��&������
����­����6��~��Ơ��*@��F�h� �J�iU,˜'
�@���T̬�$��

A�� 	�_]��2M�u�׿4�ȿPF1� ���.����Ӿ/��zR�yts��=��������h��J����u�������6���
�����(¿30�(_5���7��[9®�:Š�<�]@��D���I��yN��S�	iX���[�]�_�_���aŒ�d“�g�W7j�\l���m�z&o•Yp�_iq��5r‹�r�~s��s�"t�0�KeyAttrFlagsi!j�KeyAttrDataFloatf

��KeyAttrRefCounti\H�AnimationCurveL���-SAnimCurveS��	DefaultD�KeyVerI���KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\p)�B48�BL��B�*�B��B��B]޻Bt�B\?�B��B�/�B���B��B��BM�BպBa�B�/�BܸBõB�u�B0�B�'�B�"�B�Bn�B��B��B�_�BiE�B-�BUؤB�b�B\�B�!�B��B��B&k�BDX�B��B���B!�B��BH]C�qC��
CHnCX�C�<C�\C<tCyuC�ICg�C\�C	CwtC�
�BNn�BQ��B���B��B�B��B���B���B�\�B\��B���B��Bp��Bl��B�I�B/��B��BW��Bئ�B
��B;�Bnc�B i�B胿B���B`¿B�ۿB2�B��Be�B��B��B��B��B��KeyAttrFlagsi!�KeyAttrDataFloatf

;�KeyAttrRefCounti\��AnimationCurveL(�-SAnimCurveS��	DefaultD��KeyVerI����KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�aN�}
KeyValueFloatf\p���R���[ޚ�w#�‡�����§j�–��™��w;�•�������ϐ��h�������6��z���	.�®K�ҭ�*ݭ���8�±��ư���Ѳ�̬��tQ��7<��R�²���ܴ’��������A��@C��L���g���cP������Y�����‡ϼ��
�º �µ��:K�°��N������?9��T���C��m��˜�™�����¶������������I���\.��_������¡��”������°��ª��¥W��&���5f����� y��3#��ק����g���������o�Ÿ���@���Q��M���W�����@�ƒ�����x�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti\A�AnimationCurveL���-SAnimCurveSB�	DefaultD���T�Z�KeyVerI���KeyTimel��x�}8v��O̼<��"�2$�xfr\��p���۝�s�SD,l���cKG��v�[W�2���xN�gL��P�$��U�}���y>B�/�B����ÞT�MH�k��^�,��/z	�T1 :�$���T6��0��}�S>4^���,���b�^ ѐ~s�~Py���q4�3���]:QF1��'�"G�������|�ՄW��l}3*�{a�����IL��yYw���n>��'(��5`��7�L���w����A�?�x1��%��-����_��W�}U�up� �
�t���φ��jaV/������o�������`����J�^;����5��T��3����m�M3
��S����upi��5��7"Z8T���U6`��`�eV�_�AuF�a0�s��&x.��1�I�	�������6-�R�!n�ha�(�3��jh-�B���}��W��+��0#��5t���aq�����Ӷ�3]���ۊ�ԍ�`�C���߭�c?|
K��`��n	4i�t��v������~�9
�R�<C���+\X�~\]�6��tm,M{8��k硒qJ'�X��e
y�m���5�pHπ[,ácU.
gba�
V5Z�`��a��ٛm�,� �|�$��W��m#d>��Bqsu���[g���r��NN��¾z�,4Ot7a�&�a��/0%�M�'��G�9�B�e
����4�()�ư����f۷D)�Fa�]��%,�U�5ny��ήa5�ؠ���ç7�%.
\΀�d���8GՌ�b(zpkzӳ|���_�Ű��]��]���c~E7`a'C������p�C�3�˽���TZ�'nmg�r��
['��ͽ��`��$L��H��es ?��lw�j`�E��d��\G]���Z���D���m�ג=`��J�ǽa��p_�e��
�7��`_)�c>e@ΌQ0��<]+����	�XEB�u?r�B6U��m��DH�jL�:G2�@ޓoað�zɠ���A,1��^2�H�{��1�&��FeDŽQMk���?����1lh<�3�lU�����ztOѿ��T[%���Z[N"��B���I���ҍ�8�.�cf�v<baU[f������>�d�;	�B{����
KeyValueFloatf�xW�¯d���e��ӳ�¿t��͆��.u�pCh�UMS��<ŒD1�d� ��-�^�@�XUM¹�U�4�U�J/m£z¤�����
��C\���³a��ޣ�����W�������n*��t�����b���dI��rfï��3�
�!Fú:����Ju��� �Ћ&�.�*óS.Ën3��v9�>��4A�g>��:�Jr5�ӈ2�Nr/��+�n6&�8� �	��H��aà�"��'���,��Y0�B�5�n;î�7�Ϻ3��E0��*���&�f�!ÑbËây�٫�<����~�����[��mc��H�ª_��I����ž���A���o���Ad�‹ߛ¶���ٯ��a7��m�w�.�d€�Q�m�@€�W�!�p�{���iA�����%��s����¿C�����՝������2������'H���>��}��¢@�����	ë����ڦ����
#Ñ�'��!+��(�V�%�?#���z�C�óÄFê��X3�L1���Ã5�SäLõ�"�%�&�w*�2s/���1�^�2Î�1Ä�0�6v/�W.�W�-ö-��,�e�*�K#*��)�fX(���&�~c)�+,�L/���,��,�$1��1�v�1�*�4�Y8�ء9���=�=�@�#�C�RG�xK��vO��iT���Y�)�_Ä�e�Q|kîRq�v�v�S�{úM��(^��m/�ñŅ�!���!���Lb���������o��4�îߙ��� ,��
|�Ø,�×�����É���y��2������į�ٿ��ˈ�å���#���������T����}��l��Pv����Ê���W���S��6��)����KeyAttrFlagsi!�KeyAttrDataFloatf

4�KeyAttrRefCounti���AnimationCurveL�`�-SAnimCurveS��	DefaultD@�5T@��KeyVerI�Y��KeyTimel��x�}8v��O̼<��"�2$�xfr\��p���۝�s�SD,l���cKG��v�[W�2���xN�gL��P�$��U�}���y>B�/�B����ÞT�MH�k��^�,��/z	�T1 :�$���T6��0��}�S>4^���,���b�^ ѐ~s�~Py���q4�3���]:QF1��'�"G�������|�ՄW��l}3*�{a�����IL��yYw���n>��'(��5`��7�L���w����A�?�x1��%��-����_��W�}U�up� �
�t���φ��jaV/������o�������`����J�^;����5��T��3����m�M3
��S����upi��5��7"Z8T���U6`��`�eV�_�AuF�a0�s��&x.��1�I�	�������6-�R�!n�ha�(�3��jh-�B���}��W��+��0#��5t���aq�����Ӷ�3]���ۊ�ԍ�`�C���߭�c?|
K��`��n	4i�t��v������~�9
�R�<C���+\X�~\]�6��tm,M{8��k硒qJ'�X��e
y�m���5�pHπ[,ácU.
gba�
V5Z�`��a��ٛm�,� �|�$��W��m#d>��Bqsu���[g���r��NN��¾z�,4Ot7a�&�a��/0%�M�'��G�9�B�e
����4�()�ư����f۷D)�Fa�]��%,�U�5ny��ήa5�ؠ���ç7�%.
\΀�d���8GՌ�b(zpkzӳ|���_�Ű��]��]���c~E7`a'C������p�C�3�˽���TZ�'nmg�r��
['��ͽ��`��$L��H��es ?��lw�j`�E��d��\G]���Z���D���m�ג=`��J�ǽa��p_�e��
�7��`_)�c>e@ΌQ0��<]+����	�XEB�u?r�B6U��m��DH�jL�:G2�@ޓoað�zɠ���A,1��^2�H�{��1�&��FeDŽQMk���?����1lh<�3�lU�����ztOѿ��T[%���Z[N"��B���I���ҍ�8�.�cf�v<baU[f������>�d�;	�B{����
KeyValueFloatf�x���B�;�BRB�Be��B0`�B'�B)��B��B�Z�B���B�9�BJ��BZȭB�ҮB���B��B%ũB�B�تB�'�B���B`��B�2�BQ��BY�B=M�B8��B-��B�֮B��B��B�&�Bh/�B�3�B�-�B�+�Bt�B��B#ޮBg��B���B!V�B!�BቭB=*�B!v�BEQ�B��BV;�B3g�B���B(V�Br��B��B��B��B���B�U�B���B(f�B��B�B�
�B$K�B<��BPŨB}��B�B�B#�B�F�B��B3��B��B#W�B���B��B�ѡBq��B�i�B��BB�B���B�ߢBR��B�.�Bť�B�Y�BpƥBt�B�L�B�n�Bɛ�B�ѦBx�B��B,ԦB���BSN�B���B3��B�=�B��B�|�B��BWE�B\s�B��B���BA��B�èB3ܨBh�Bw�B~٨Be��B)��B�6�B��B�I�B��BU��B ǣB,נB���B�-�B+ÌB�j�B���B�‚B�k�B���BRӀB��BZ��B,P�B��B��BY�B5��B�b�BS��B��B1*�B��B�4�B�܂B�;�B���B��B��B��B�B:X�B�'�B���B�M�B"��B�Z�B���BH��B74�B�i�B;��BӘB�v�B��B���B&f�B���B�ѮB�}�B��B��B<��B(U�B���BܱB�B?1�BM�B	a�B�n�Baw�BS|�B�~�B�~�B�}�B.y�Bps�B[g�BnW�B��B��B�k�BJ�B#B�B�B:��B�8�B
�B�B_#�B���B�Bg��BG_�B~�B�v�B龧BQk�B&|�B��B>��B�B�>�B[`�B�|�B��B��B���B���BDѳB"�KeyAttrFlagsi!\�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL�Y�-SAnimCurveS��	DefaultD�XX��KeyVerI����KeyTimel��x�}8v��O̼<��"�2$�xfr\��p���۝�s�SD,l���cKG��v�[W�2���xN�gL��P�$��U�}���y>B�/�B����ÞT�MH�k��^�,��/z	�T1 :�$���T6��0��}�S>4^���,���b�^ ѐ~s�~Py���q4�3���]:QF1��'�"G�������|�ՄW��l}3*�{a�����IL��yYw���n>��'(��5`��7�L���w����A�?�x1��%��-����_��W�}U�up� �
�t���φ��jaV/������o�������`����J�^;����5��T��3����m�M3
��S����upi��5��7"Z8T���U6`��`�eV�_�AuF�a0�s��&x.��1�I�	�������6-�R�!n�ha�(�3��jh-�B���}��W��+��0#��5t���aq�����Ӷ�3]���ۊ�ԍ�`�C���߭�c?|
K��`��n	4i�t��v������~�9
�R�<C���+\X�~\]�6��tm,M{8��k硒qJ'�X��e
y�m���5�pHπ[,ácU.
gba�
V5Z�`��a��ٛm�,� �|�$��W��m#d>��Bqsu���[g���r��NN��¾z�,4Ot7a�&�a��/0%�M�'��G�9�B�e
����4�()�ư����f۷D)�Fa�]��%,�U�5ny��ήa5�ؠ���ç7�%.
\΀�d���8GՌ�b(zpkzӳ|���_�Ű��]��]���c~E7`a'C������p�C�3�˽���TZ�'nmg�r��
['��ͽ��`��$L��H��es ?��lw�j`�E��d��\G]���Z���D���m�ג=`��J�ǽa��p_�e��
�7��`_)�c>e@ΌQ0��<]+����	�XEB�u?r�B6U��m��DH�jL�:G2�@ޓoað�zɠ���A,1��^2�H�{��1�&��FeDŽQMk���?����1lh<�3�lU�����ztOѿ��T[%���Z[N"��B���I���ҍ�8�.�cf�v<baU[f������>�d�;	�B{�M��
KeyValueFloatf�x�������/ɶ�7ݫ�$���3v����¦^��\̂��l�)8_��L�	Z\Ÿ�q�zC���Y��$ۇˆ�«���z��†#��n�–>��,��—��†��¹��·���������wl��\��E�À�����.�Må���� ��.%��)�g,�q2�Q~6�h�9��>ÝE�śI�yM�JhI��EÌg?�*�;��_8�&4�P�-��'�"$Ò� ò
%�p(�1�,�-�1�[�4��[9��S>��9���4��h1�k�+��'Å�"éS�[�v�����D��uïE��2��'��Ÿl�������‡5�����gY��I��h���(���a��v���4M��q����s�3,`���L±O7�K�Wa�Xsƒ���������ǚ�r���LĨ©�·^������i���N]��_���ii������5y�¯R���~�U��@�
�H&ñ2�P����Fh!�����gF��e�ܬ��!ÕÜ4�{��K�
�[y�6��E����%�U�� �t$��F)Ç�,�4.���.��.�rt-Í>,�)!,ïP,��,�К+�Q+�Ğ*���)�F�(�i�,Ì-0��!4�h�2��Q2���5�>�5�=�5�"9���<�D�>�"C��E��HÿLÕ
P��wT�FdYé�^�1}d�Hlj�Zdp�t7v�a�{�_l��W����˄�@����1�������óʏ��w��(V�ñn��}N���Í3�Ô�ÁH�ØK�ÿԥ×&��	��ô$�����W���"�ù������ȴ�т������9���w����i��ÃK��	��.���S��k>������*۾�w�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveLX��-SAnimCurveSA�	DefaultDY�KeyVerI�Z��KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\p�(�)�)�)�)����))*0*�(�)�)�)�)�)���@)�@��( *�)@��@�*����)@�����`)@)�(�����@)@))�(�)�(�0���)@�p�`�@)*����@)��)�����@)���@��@�@��)�)�)�)*����@����(�KeyAttrFlagsi!U�KeyAttrDataFloatf

��KeyAttrRefCounti\�AnimationCurveLؒ�-SAnimCurveS��	DefaultD��KeyVerI�6�%KeyTimelp�<A���a(z�ai�
KeyValueFloatf�A�A�A��KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�-SAnimCurveS]�	DefaultDu�KeyVerI���%KeyTimelp�<A���a(z�a��
KeyValueFloatf���?���?���?�KeyAttrFlagsi!E�KeyAttrDataFloatf

r�KeyAttrRefCounti#�AnimationCurveL�-SAnimCurveS��	DefaultD j*@��KeyVerI����KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\pYPSA��9As"A��A�I�@=�@��?��	@���@���@�LAF�A��A"��@��@���@��'@��C@i\�@mSA�%A�<AK�TAwWSA/A��A恵@D݀@ܬ@�A��>Ay�tA���A�߄A�
zAR^iAt�eA�,yA�Z�A���A�1�A�*�A{�xAqIA\(A�WA��
A!Q�@�!�@�]�@�/�@�iA�OA�C�@�9�@U�@���@)��@cg8@�>/@&E�@�q�@�T�@7;A�?A�A���@tܗ@�|3@���?ڠ(@y'�@��@
��@���@��@ �@�*�@qv@Qy@/��@tۃ@k�@|ї@D�@���@��@&��@z�@���@ϫ�@-�@��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti\��AnimationCurveLh`�-SAnimCurveSy�	DefaultD�0���KeyVerI����KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a)�}
KeyValueFloatf\p΀���\�k|B?,�@�hAjd1A�@A�]=A�Ax7�@��?�歞��3��+2���X��|f��o[��=F�bB6���'���O��>&@j�#A�K�A� �A!�A,YxA0�A=U%@n��s����:���W��T�ifN�	�/�������y�:��?/��y�0W��J[���ъ��6����?��+@9�X@@9a@�ji@��@lĊ@��@��@e�@W8�@f��@���@��@l�@��@�3�@ s�@�O�@���?�|>I=����=����緺� ����`�$���(�i�$���=�D|e�$4}��kv�*�]�lOK��@��+�A{
��տ�F����o�Ι<�J�澼w��S�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti\kAnimationCurveL�M�-SAnimCurveS�	DefaultD��4,@5�KeyVerI�6��KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\pG�aA��IA��A�Z�@�dZ@'��?{��>_k��ɿ�>��ee�?������w��:ƕ���?�N@<�A@͐@>:@C��@+{?A��FA�QA��@ӝM@Ut4?z��"����=2�������]�����>���@�A�5<A��MA��`AР}A���A�TmA��6A'��@���@�!�@�&�@u�w@��b@5�J@b�N@7fM@W^@�i�?��>ro�AjZ�)x��N���m�����T8d����Dտ��	���>�G��>��>T/5>bmu?�?;Gǽ�(ؿ����R�
�ܿ �b�7�?k0�?;[�?�?��?��i?�4?u�$?�?<?})�>@
;>�d�<ufd�?�k���KeyAttrFlagsi!1KeyAttrDataFloatf

^KeyAttrRefCounti\AnimationCurveL��-SAnimCurveS�	DefaultD�KeyVerI���KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�aq}
KeyValueFloatf\p�������)������))@*@�P*�*�*0*(���@�Ъ��($+* *,+��*H+$+|+$+�)�)*�*�)��+�*ت������*0*���������* *�� ��)�*�)�)�� �P����)��� ��@��)�) ���P���0*�)�@����(@) ��@�0�0��KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti\�AnimationCurveL���-SAnimCurveSe	DefaultD}KeyVerI�~	�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a}
KeyValueFloatf\p5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A5�A?KeyAttrFlagsi!yKeyAttrDataFloatf

�KeyAttrRefCounti\+
AnimationCurveL�:�-SAnimCurveS		DefaultD!KeyVerI�Z%KeyTimelp�<A���a(z�a�
KeyValueFloatf�qO��qO��qO��KeyAttrFlagsi!�KeyAttrDataFloatf


KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS�
	DefaultD��z%��
KeyVerI���KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a1}
KeyValueFloatf\pO�+��{������������ʚ�������w<�
J^��|���Pm��[=e�)�)���������/���ߐ�n��SR��d3�dWG�y��=J���g��j�c�؟�?V�X?�y���4�2Y�?������V���5?͜�?IfY>+3��<]����$��8���#��H���?�[~?>g�?���?���<�ݿ�%�g�8���W�j�s�W�c�����F>Ije@���@3�@c)�?ZP���R��)���x��I���I��>L�����������<�����̓�n@)�|�4���"�S��?<��2�������o���+��=��y�<��M���Ϳ0�D�,7>��?�[@��N@��p@[KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti\sAnimationCurveLȺ�-SAnimCurveS%	DefaultD@E��?=KeyVerI�>�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�}
KeyValueFloatf\p*��?�dN?*����
�[W��dܥ��v��CR��������5&k��aB�D�Ŀ(d?��@�w�@^F�@L��@_�[@�z@fa�?ƈ۽�mJ�Q�i�1�hG��� ���������K��n��t[������]�� ��v��R���	3�0����Ӿ��S������%��d����D��g���	��5�������k�������e��v©�(Ѣ��.��ə���
����������'m���9�VZi�����f���*��]��u@'�m����@�>���?	�@�CG@��`@"au@�?�@�t�@��@7��@�g@��F@��&@(�@��?;-j?z��>�:�����.I�w��j���B����KeyAttrFlagsi!9KeyAttrDataFloatf

fKeyAttrRefCounti\AnimationCurveLH��-SAnimCurveS�	DefaultD����KeyVerI���KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�ay}
KeyValueFloatf\p�����D��zE����M�!��K)��~ܿx���}����D��X���\�p��#~��JE��������}{#�d��4
�����c�����<������� �>W��?B
,@��#@�K@j�-@?s@�a@1�m�K}|�����p��f���8c��%п�G>�(�?�&�?\-�?Ax@B@�n�?e?<??�?O��"�N� rc��ꢾ�)?�<�?%�@N	$@��:@f�O@@�˾q�¿4���%켿�.W�X���H���������(h���Ξ���{���K�����}���f�KV`��uQ�c8��	 �F#�[���Ϳ��ǿ�*ÿf�����ĿtK¿<���.�ſY"ƿ�KeyAttrFlagsi!�KeyAttrDataFloatf


KeyAttrRefCounti\�#AnimationCurveL�@�-SAnimCurveSm	DefaultD�KeyVerI��!�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a#}
KeyValueFloatf\p��@�0��(�)@�����@)@��)@�@�8*`*�* * ���)����Ȫ *+**(+�)4++P+@+p*)�))��p�+�*�������0��*+���0�p*�(*�)����*�*�����@��(@)��@)�(����@)�)� ����*@)�����)��������@�G#KeyAttrFlagsi!�#KeyAttrDataFloatf

�#KeyAttrRefCounti\3%AnimationCurveL���-SAnimCurveS$	DefaultD)$KeyVerI�b$%KeyTimelp�<A���a(z�a�$
KeyValueFloatf��A��A��A�$KeyAttrFlagsi!�$KeyAttrDataFloatf

&%KeyAttrRefCounti�&AnimationCurveL8x�-SAnimCurveS�%	DefaultD�%KeyVerI��%%KeyTimelp�<A���a(z�a
&
KeyValueFloatf���?���?���?7&KeyAttrFlagsi!q&KeyAttrDataFloatf

�&KeyAttrRefCountiO,AnimationCurveL��-SAnimCurveS'	DefaultD`5� �'KeyVerI�*�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�+}
KeyValueFloatf\p���{K��L7���h���2<������!�Ds�+!�~��j�?=��U?@�?Ȍ)@�L@�{@���@��q@�RU@�K@@��G@��@�@�b�@ݵ@���@��@���@Z�@��@$��@�.�@$�@户@��@��E@��?�Җ?�U�?R�@��l@�q�@���@�z�@ ��@��@Z��@��@��@EA�@�Ì@�R@I�@41�?�l>�|��dO���g?���"��l����į�D��
2��o���D���i���c"�,}%�)BG�Hd�O�W���H��V��RZ�S�*����o��O��Xr�!���ۈ�h��N��������8��C[���7���N��l����+KeyAttrFlagsi!,KeyAttrDataFloatf

B,KeyAttrRefCounti\�1AnimationCurveL�x�-SAnimCurveS�,	DefaultD ���?�,KeyVerI��/�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�aU1}
KeyValueFloatf\pQğ=�:�ꇿD�$�����a+��6���'��u��7ж����p������4+���s�W�	>���>Ç���Ǿ�>���п���'�ͿW˿�SM�ͬ���+���t��H�����d��U��_x���H��Ɍ��>��j��5*��	�����������!D��^���������?G�Ga��W��{"��
������T���{���ܢ��5�������"����ax�8|l��_��&Z���z�]���I�����������?������ZM�����Y��w�>"��?pH�?5�@#!@9�7@��5@(D&@I�@�m@�k�?O�?�6{?�Y�>�P=�-������.��US��h��sl�1KeyAttrFlagsi!�1KeyAttrDataFloatf

�1KeyAttrRefCounti\�7AnimationCurveL�o�-SAnimCurveSI2	DefaultD��@a2KeyVerI�b5�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�6}
KeyValueFloatf\p��'@�"@K_�?��?�I�?���?���?~C @��@��@ AetA�A^A�A;AH�A���@Ȁ�@�@�Xl@}�0@ћ@��?_@ ?w;�?��@��O@і@I�@V�@ͺ�@���@t�AC�A�]A��A�V�@2��@On@��?ܙ?Z�F=���;��<����
��O?��?���?<�@�CN@g�r@�5~@��z@��p@��g@	�s@X�o@M�J@��r@n�@���@��@�o�@Sy�@�F�@��@�J�@���@�f�@���@a��@��@���@ⴶ@���@K��@�ܧ@|Ϡ@�ד@T>�@e�@'�@,O@M�l@�E\@�R@@&H@?4:@N�.@�*@#7KeyAttrFlagsi!]7KeyAttrDataFloatf

�7KeyAttrRefCounti\9AnimationCurveL��-SAnimCurveS�7	DefaultD8KeyVerI�>8%KeyTimelp�<A���a(z�aq8
KeyValueFloatf�u��u��u��8KeyAttrFlagsi!�8KeyAttrDataFloatf

9KeyAttrRefCounti>AnimationCurveLx>�-SAnimCurveSe9	DefaultD}9KeyVerI�<�KeyTimelOxp�<A���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�_���`�ll`0�/�`��#a���a(z�ay=I
KeyValueFloatfO<L�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�AL�A�=KeyAttrFlagsi!�=KeyAttrDataFloatf


>KeyAttrRefCountiO�?AnimationCurveL���-SAnimCurveSm>	DefaultD�>KeyVerI��>%KeyTimelp�<A���a(z�a�>
KeyValueFloatfRhڿRhڿRhڿ?KeyAttrFlagsi!U?KeyAttrDataFloatf

�?KeyAttrRefCounti3EAnimationCurveL��-SAnimCurveS�?	DefaultD $
��?KeyVerI��B�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�D}
KeyValueFloatf\p!�P��e����^���"�������G=���٠�����:���М��+����v�dp�K�]�yd�)Uf��UP��P��ow����}��ޑ��
����ͫ�ڽy�	8���'��{*�-@��<���6���"��M��I������Y٠������P]��OV��[��ϭ������j5�k��3��׿���/�տS𛏿�熿�^�/c�>��?�:
@�0@�!+@Q�@j/�?
��?��?�;���dN�fNF�2�ixO��5o���e���J�$�(�)�O�S�{ �G����HϿ��տ����M���:�4����G�y�5���&ÿ�S��Φ����ɿE�˿�f���\���+��DKeyAttrFlagsi!�DKeyAttrDataFloatf

&EKeyAttrRefCounti\�JAnimationCurveLx��-SAnimCurveS�E	DefaultD�@�EKeyVerI��H�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a9J}
KeyValueFloatf\p�p�@
�@q��@h��@���@6�@D��@�A�)A�{A$h�@4��@#9�@^��@�$�@��A�8/A�I#A?
A�Y�@~�@�ѥ@���@��A;]A���@C��@]��@��~@k'�@�x�@��@p��@^`Aǭ/Ak�BA�YFA�H A���@=
�@�A�g@A?\A�NA��.A�'AaQ�@0+�@Qi�@�)@���?BN�?�/>H噿&7�K�S�P�u��h=�ɣ��YJ�>��U?fՊ?V��?A�t@���@���@� x@���@L��@�u�@7B�@�{R@�?�!���SA��b>���?���?�x1?#��C)��馿(Ť�U �>��"?.��>k�>�8&?�pJ?�>?Оm>��=cJKeyAttrFlagsi!�JKeyAttrDataFloatf

�JKeyAttrRefCounti\{PAnimationCurveL(v�-SAnimCurveS-K	DefaultD���EKKeyVerI�FN�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�O}
KeyValueFloatf\p/�N��Ě����#q��X<�=��?N��?5%�?�=?�����WK�#+¾it����K?�Y@��@0;A��A"�@7&^@1�&��QD�O=n�

�������?=��?�W�?�{P��r��k����0L�?���@`�@a�A�
�@��j@�d?�Y�=��?�X�@�9AB!hA��^A�E;A'�AD��@�1�@M�"@�>�?���>d�`���>~R�?�a@C!�@��A�@AĂAA�0A�o�@��g@���?D�>՚G���t�q[���y����!���j��o�1�K�g�$����yg���'�_�
���V���Ȯ�������;��l��������"�+��{�
�
��p�n��#^��PKeyAttrFlagsi!APKeyAttrDataFloatf

nPKeyAttrRefCounti\�QAnimationCurveL�
�-SAnimCurveS�P	DefaultD�PKeyVerI�"Q%KeyTimelp�<A���a(z�aUQ
KeyValueFloatff� Af� Af� AQKeyAttrFlagsi!�QKeyAttrDataFloatf

�QKeyAttrRefCountikSAnimationCurveL(��-SAnimCurveSIR	DefaultDaRKeyVerI��R%KeyTimelp�<A���a(z�a�R
KeyValueFloatfi傹i傹i傹�RKeyAttrFlagsi!1SKeyAttrDataFloatf

^SKeyAttrRefCountiYAnimationCurveLh��-SAnimCurveS�S	DefaultD�SKeyVerI��V�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�aqX}
KeyValueFloatf\pSo��So��Ro��So��So��Ro��So��So��Ro��So��So��To��So��So��Ro��So��Ro��So��So��So��Ro��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So��So���XKeyAttrFlagsi!�XKeyAttrDataFloatf

YKeyAttrRefCounti\�_AnimationCurveLx7�-SAnimCurveSeY	DefaultD@�d8@}YKeyVerI�.]�KeyTimelr�p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.E�;D\EP�%�E���E�y��EL9�F���AF���oFHwp�F��3�F�t�TG@�G�q~H<1`:H��AhH�#�H8o�H�.��H���I4��MI�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���Kt��+L�a�YL!��Lp�k�LğM�L_/Ml?M���lM�ԚMh\��M�y$N�Y=�N�N`��N
���N�[OW�7O\�eO�Շ�O�i�OXTK�O�-P�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;V#z��Vx9�W��rHW �TvWsw6�W�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a_�
KeyValueFloatfr��&�A�j�AD�A��iA�;HA\�GA4'uA�s�AcM�A�A���A���A���A���A�cB�~B��BF�B�eB-�A���Aa��A���A��A�b�A�>�ATճA�8�A2N�A���A�ÑA�Av��A��A�[�A��A���A�]�A::�AV��A���A��Ao�B�X�AFA�A���ATI�A��AZ�AK�?A��+ArSA��oA(�~A~p�At��A��A�#�Ar�WA�'A���@�\@#Φ����T>@�7
A�A[A��A�A�c�A�1�A߁�A)�A� �A���A7I�A���A@o�A�wA��JAְVA�qfA��zAԫ�AU��A
�A�z�A#n�A⒎A�MAW<As�_A�V�AA�AE�A���Ajm�AT�A�P?A��A�l#A)lUAHqA!�cA��?A�UA���@���@�	�@H&d@��?�MP�`${�ɮ�G_KeyAttrFlagsi!�_KeyAttrDataFloatf

�_KeyAttrRefCountirgfAnimationCurveLȫ�-SAnimCurveS`	DefaultD����)`KeyVerI��c�KeyTimelr�p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.E�;D\EP�%�E���E�y��EL9�F���AF���oFHwp�F��3�F�t�TG@�G�q~H<1`:H��AhH�#�H8o�H�.��H���I4��MI�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���Kt��+L�a�YL!��Lp�k�LğM�L_/Ml?M���lM�ԚMh\��M�y$N�Y=�N�N`��N
���N�[OW�7O\�eO�Շ�O�i�OXTK�O�-P�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;V#z��Vx9�W��rHW �TvWsw6�W�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a�e�
KeyValueFloatfr�ԇ_�M4�?̋�@\�@���@���@wU�@���@�)�?������A!�p�m�-�����Q`������-�/`@��AS�E�m�;>s�c�O)F³c.���*Z�������]�����F�&���?P�@�yv@�+?���/u�:������5�1�~~t�U�������|�%�;�qEP´8\�6�g�7�e�m>F�o'�|Y¦U���s����|�����2!>]�@| :A�qjAMZ�Am��A�UA0Apw�@��@�;?�����צ���'��p����W����ǚ�	��<���4v{�;eT�J'��2¢�����7���O�`��=K?�>xE��)�a�����1�&�.�D,�l���s��D��?�e5@s\P@�J@�>��ȿ>��0���C�?a��
��}����̧��`��������������ۯ��e���eKeyAttrFlagsi!-fKeyAttrDataFloatf

ZfKeyAttrRefCountirmAnimationCurveL(y�-SAnimCurveS�f	DefaultD`{iP@�fKeyVerI��j�KeyTimelr�p�<A���A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.E�;D\EP�%�E���E�y��EL9�F���AF���oFHwp�F��3�F�t�TG@�G�q~H<1`:H��AhH�#�H8o�H�.��H���I4��MI�l�{I0�O�I�i3J��֎J(g��J��]FKxd!�K ���Kt��+L�a�YL!��Lp�k�LğM�L_/Ml?M���lM�ԚMh\��M�y$N�Y=�N�N`��N
���N�[OW�7O\�eO�Շ�O�i�OXTK�O�-P�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;V#z��Vx9�W��rHW �TvWsw6�W�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aul�
KeyValueFloatfr��K�BVn�BmB�G}B��|B #|B�|B"nB�e�BMV�BA�BR:�Bj��B��B�~BaSqB�#hB�7^B.`[BX�XB�]B2uZBN,WB��\B��^B��_Bv1_B��^B2�cB�RhB�XsBs�}B�?�BR��BɐB҉�B���B�2�B��B�+�BW��B1��B�wBrqB�WkBkBǏlB��sBD�|B��B՜�Bl�yB��pB@lB�eBZQ`B�<WBx�MB��EBf�<B/�4B�j+B +B�PBn�B]�$B��:BU�OB��^B[�cB!"]B�NMBt�8B�� B�sBx��A
�A`�A���A�J�A�
�AQ|Bo'B��BB�I\B�uB怋B2:�BAB�BZĘBEr�B���B�ʼnBFԄB��B��B���B��B�B�B"�B�ÐB�،B|�B듌B���B	ГB��BvE�B�d�B��B��BBݒBTl�B���B�lKeyAttrFlagsi!�lKeyAttrDataFloatf

mKeyAttrRefCountir�nAnimationCurveL���-SAnimCurveSim	DefaultD�mKeyVerI��m%KeyTimelp�<A���a(z�a�m
KeyValueFloatf���������nKeyAttrFlagsi!QnKeyAttrDataFloatf

~nKeyAttrRefCountipAnimationCurveL��-SAnimCurveS�n	DefaultD�nKeyVerI�2o%KeyTimelp�<A���a(z�aeo
KeyValueFloatf�?�?�?�oKeyAttrFlagsi!�oKeyAttrDataFloatf

�oKeyAttrRefCounti{qAnimationCurveLh��-SAnimCurveSYp	DefaultDqpKeyVerI��p%KeyTimelp�<A���a(z�a�p
KeyValueFloatfc�տc�տc�տqKeyAttrFlagsi!AqKeyAttrDataFloatf

nqKeyAttrRefCounti8}AnimationCurveLx��-SAnimCurveS�q	DefaultD�A�@�qKeyVerI��wKeyTimel+�x�y8�	��h�hP�\9�3:�F��3j��]�$���0ۉR���<�3Iv죒U�a�r�D�1E�ar�߷�>��q�3N$����wHM�ͅ1nŏa��7�Xa�Ly��kX�㐢��VK��C^�utS]��\��`���s��Tۂ̈́a
�������:@OZ*j�x��d6�?�w�j<C�e�C�x�pQ�z1J�aM���}�Opj��}J�:��3���>8d+�^z�yLB!��$�u�ǚˁ~)��ܚ�(�B�\�KX�wq���Vu!
��3��@��ce:��
Jᵩ2'�kb\�������&9[�j!8x\͕0S�	����h����R/�s�\�y,V���k���ao�+��{�'����6^X�Ӛ<
`A�C�qx��X�Y�WQ��a��Q[�NXE�Eף��S5�M�,��5:� �igX�JcB;g�|��c�L�W�I�;�������
Cs����4e6|�&����ʝФ���G��y�a糴R���H����U�|��i��>��.�	�M�'y�`����Յd�OKV�.,7
�4�B�:�j4��Pm�4�v�ҁf{�Q��Ƅe��ا��v�н0����0��u#hm�0��Q&�}�`��l0�i�hpH�9�]K��[
Mm�j=�>��f�j]O��,����E�Ϛᢼ��0)��:4aj݇o�X-��i�h���,�
�=	�$�w 5�ZӋ��o,F�A���b+a��#��"��d��
ބ�γ���c�i[���5< '[��^ހ��6<��=�O�tNt'���"���$0k��������!ȣ�ÉKv_a�o�t����/c�y��7�G�;��S�uE�4t���u_����sP�������E�2��ړa����P�N��7�/�
<g#�Q�Auv�-T|1����AO
��p�E	�֦_
ӕzju�]�����ޞ}
��ۼ������'�*Hv���ha�&�6�����P�7_�f]�A����C����M|�%���N��Tw�!h~��0l-4�%QG���9\b;>S?�'!#���:9��&8Β���E��S����I�0h�6���=|���� d��.��n�� Cd��M8��z
f6UH �y؁C(����T�9|M�7�A�����J)>���/�W�Nނ'�C�ǂv��̔@H�Xv�l0���kx����~�{�ւ@HsX��ʄϫ�¦�[�`�B|#̑�>��OZ�����2���F�Ç�#RcK�C�e_�$�,]�uS�*���3��~Ш���s\2����7�K��Q��{��~�qwĖ�jS���	��ȵfN����UXeu{
�܎��W���tRu�ߪ�A��x�9/$��K��2m�׮�_�������i����.A����b8�43���	�ˤ�P�#�������5W�E��4���}7�4�����'�|�
KeyValueFloatf+ux
Ћ3pG����]^E	�����}'n'jwuL��A��I�[�C�D��Z���rm1V��%jٚ�4S�F�)�ƥ<
�%w�?�3+�E4�/235����T����6摲������[���l_&�_h�g�8苳��'`S��ƶŸ�H��_���"�!jD�]���ը:Q�DW9g�`]�/�8vy�Txi�8�
g0*p�f+��M!��%��&
�VEŵ��>��,����1u������cM�/���5,PSN���$	*�5��!Ai<�NgWZ��P�a?q\}P*h�&�V�I5��.=yGˬf�O1���<��]��u8ܶq�ixԙ�����h�!ߨt�<�W� ԠתK��b<�1�_}���OP���Ֆټ T����#��Ib�Y��O~��o����@n<���׈D�u9�S��.Z��qK��;O廲�_��ێŽsY�m��e�\2���>���a��m���ClP5��J�L)í���"�t2��&��*J{_�t�g�%�NPU��:��a���I��R�#%꣨z�}t�I��D�w�DN��4�����"�z}��P�E���N�����.:�y��F�Q������"��G�x�%ho�T�Nx?�B܎#�+���r��(�vWᕦ'ˮ#9�ۇ:pbO��᧟�ckS���l:$��C_ra�3��/d�g,߰��{�x��J�/
�S��D��6�[g�x�>���y��mv.�L�7��^̓R7�q�GV����Gm�dV��9���3���;k?c2���|��W��ߋ��=���m�}h�o�ms'ԨIS���&��P%?��ra'�"j<���~�q�E��oݰ\b��Yp����vҦ����y4��>��<?�K[_��Od�z6v�wFP�7n��TG4N�K�{�d\��ě�B�.����Z2b��������5\þ�Z����U▰�
�`�&���x�wK`dw�B<�$@͊iz��N�Y����,�Hi�ruNN��[�������tIn�7������|�M~Ͽ�%뚓#��o�|7jVx���pW�B3?H�L��ֹZS�X�Ϣ�c���}=Y�Jۥ23����vm+~�'U�z��wܨ���K���n�|KeyAttrFlagsi!�|KeyAttrDataFloatf

+}KeyAttrRefCounti+��AnimationCurveL���-SAnimCurveS�}	DefaultD`
�<@�}KeyVerI���KeyTimel+�x�y8�	��h�hP�\9�3:�F��3j��]�$���0ۉR���<�3Iv죒U�a�r�D�1E�ar�߷�>��q�3N$����wHM�ͅ1nŏa��7�Xa�Ly��kX�㐢��VK��C^�utS]��\��`���s��Tۂ̈́a
�������:@OZ*j�x��d6�?�w�j<C�e�C�x�pQ�z1J�aM���}�Opj��}J�:��3���>8d+�^z�yLB!��$�u�ǚˁ~)��ܚ�(�B�\�KX�wq���Vu!
��3��@��ce:��
Jᵩ2'�kb\�������&9[�j!8x\͕0S�	����h����R/�s�\�y,V���k���ao�+��{�'����6^X�Ӛ<
`A�C�qx��X�Y�WQ��a��Q[�NXE�Eף��S5�M�,��5:� �igX�JcB;g�|��c�L�W�I�;�������
Cs����4e6|�&����ʝФ���G��y�a糴R���H����U�|��i��>��.�	�M�'y�`����Յd�OKV�.,7
�4�B�:�j4��Pm�4�v�ҁf{�Q��Ƅe��ا��v�н0����0��u#hm�0��Q&�}�`��l0�i�hpH�9�]K��[
Mm�j=�>��f�j]O��,����E�Ϛᢼ��0)��:4aj݇o�X-��i�h���,�
�=	�$�w 5�ZӋ��o,F�A���b+a��#��"��d��
ބ�γ���c�i[���5< '[��^ހ��6<��=�O�tNt'���"���$0k��������!ȣ�ÉKv_a�o�t����/c�y��7�G�;��S�uE�4t���u_����sP�������E�2��ړa����P�N��7�/�
<g#�Q�Auv�-T|1����AO
��p�E	�֦_
ӕzju�]�����ޞ}
��ۼ������'�*Hv���ha�&�6�����P�7_�f]�A����C����M|�%���N��Tw�!h~��0l-4�%QG���9\b;>S?�'!#���:9��&8Β���E��S����I�0h�6���=|���� d��.��n�� Cd��M8��z
f6UH �y؁C(����T�9|M�7�A�����J)>���/�W�Nނ'�C�ǂv��̔@H�Xv�l0���kx����~�{�ւ@HsX��ʄϫ�¦�[�`�B|#̑�>��OZ�����2���F�Ç�#RcK�C�e_�$�,]�uS�*���3��~Ш���s\2����7�K��Q��{��~�qwĖ�jS���	��ȵfN����UXeu{
�܎��W���tRu�ߪ�A��x�9/$��K��2m�׮�_�������i����.A����b8�43���	�ˤ�P�#�������5W�E��4���}7�4�����'�9
KeyValueFloatf+,x
�{L�u�E^��$Ce.FJ��)�N��GTD�p�
Ѹ!#�T��r3ah�$"���y���]Hxɒyť�6HSA��h��?�v����|w�9IMw�����؋�'q�A(ݷh��Eb�>��bK+�Ya%��U�L�emG��D���]Cl�1���1�f�s� �����
���D�A�P���sePc�R�s?�ӽ��Թv��ג�U�$[}ޥ�й6���ӈL]�5�`.�l�8"o��a�Œ�F1!�H
�*V'�+�E|忢�~f��]7F�¥g��j��7�'��z-�|���YHA{		����u�Gp��!)ڎ�E�i�������>�`{�#%�!�~#YQ&Y�*�-�z�b�D�i����̟JN��x�$sgH�{
�K
�?��F�y�FFh=�=u$L�fLb%m��D��)�������y]6���My�n��S�I�E�i��{��1V1�8�88^�X"͹T�ys��)�:~�u|<5.u���ʳ��WA��R���'|Y
�6rh|4���������~�
5��V_v{M!'w�݃��ԂEz����.�!h~�2Y�5�A,��4���;멭՘\����`�T	��������_V��+�X��-s�����N'gr���N�ow2��$d�����^s�EQ���C�� ��.�9Ơ�N��z�8��E��cՈ3�>����1`�.YxT��@���b��5IQ���j���b�y��Rd���wK1������
{�B5)>)R�HV�Edr��J
�M�Ɏ��W:�t,�(Z� �VGç՜
� l�ܲKY.���q����d1P�GIb���0�j0:�{;h	��⡱�Hc�3�o��<�G'7��~� ���#�W&/OFIn�+��@r���ȿL�.F���8�Ѧa�h�K<_UGň��s-��z!e/w��y����Ʌ�nNJ�ب�đ�'
+{����a�=Q�/:�_�MV7����;�O�Hs��/~�m�Exn��z�Y���«��g���J��X!��"DC�b!�E�c��U3Ŕ�@ђ�/ƹ&��ҳ-m8�KeyAttrFlagsi!r�KeyAttrDataFloatf

��KeyAttrRefCounti+��AnimationCurveLX�-SAnimCurveS�	DefaultD�h�ڿ�KeyVerI�/�KeyTimel+�x�y8�	��h�hP�\9�3:�F��3j��]�$���0ۉR���<�3Iv죒U�a�r�D�1E�ar�߷�>��q�3N$����wHM�ͅ1nŏa��7�Xa�Ly��kX�㐢��VK��C^�utS]��\��`���s��Tۂ̈́a
�������:@OZ*j�x��d6�?�w�j<C�e�C�x�pQ�z1J�aM���}�Opj��}J�:��3���>8d+�^z�yLB!��$�u�ǚˁ~)��ܚ�(�B�\�KX�wq���Vu!
��3��@��ce:��
Jᵩ2'�kb\�������&9[�j!8x\͕0S�	����h����R/�s�\�y,V���k���ao�+��{�'����6^X�Ӛ<
`A�C�qx��X�Y�WQ��a��Q[�NXE�Eף��S5�M�,��5:� �igX�JcB;g�|��c�L�W�I�;�������
Cs����4e6|�&����ʝФ���G��y�a糴R���H����U�|��i��>��.�	�M�'y�`����Յd�OKV�.,7
�4�B�:�j4��Pm�4�v�ҁf{�Q��Ƅe��ا��v�н0����0��u#hm�0��Q&�}�`��l0�i�hpH�9�]K��[
Mm�j=�>��f�j]O��,����E�Ϛᢼ��0)��:4aj݇o�X-��i�h���,�
�=	�$�w 5�ZӋ��o,F�A���b+a��#��"��d��
ބ�γ���c�i[���5< '[��^ހ��6<��=�O�tNt'���"���$0k��������!ȣ�ÉKv_a�o�t����/c�y��7�G�;��S�uE�4t���u_����sP�������E�2��ړa����P�N��7�/�
<g#�Q�Auv�-T|1����AO
��p�E	�֦_
ӕzju�]�����ޞ}
��ۼ������'�*Hv���ha�&�6�����P�7_�f]�A����C����M|�%���N��Tw�!h~��0l-4�%QG���9\b;>S?�'!#���:9��&8Β���E��S����I�0h�6���=|���� d��.��n�� Cd��M8��z
f6UH �y؁C(����T�9|M�7�A�����J)>���/�W�Nނ'�C�ǂv��̔@H�Xv�l0���kx����~�{�ւ@HsX��ʄϫ�¦�[�`�B|#̑�>��OZ�����2���F�Ç�#RcK�C�e_�$�,]�uS�*���3��~Ш���s\2����7�K��Q��{��~�qwĖ�jS���	��ȵfN����UXeu{
�܎��W���tRu�ߪ�A��x�9/$��K��2m�׮�_�������i����.A����b8�43���	�ˤ�P�#�������5W�E��4���}7�4�����'��
KeyValueFloatf+�x
э?�wp�QB8^w�+$n�̩͹�����j�Bz�˦Ջ�H*ʼnФ��$�I1�:=��p��V��F�m
�z�a����@�E���Wƛ��[�J�f�f,S��[%D�$O,r�4��\�:H;"҆�?Q�_�oԇ0���]���y�P��aC�V�����h^�`,[�7y�h���E�><#�
1]�K;[Z�ױ
:�:�ZoV�A:"��'WR
���ݚ������y�M�|��%|�[��ⓥܵ�{\���lȲ�"�RSA�V��ޕ�ǵ��\J&�ySB�����^�Uʫ���qe�}���\b�HܽG��BJ}}��/�~_SEw��E��:�,XB����PD�C}#3&Ġ�jV3 �c/����^x1�X��tA�?��o�0��_4.�g��'��S�@���˝Vl�Y;��ف��N�N��gqof�4�
K��Ƭ�[0���l�ʈ�h�z�r�;�=���?�qS�'�q��)�՗��1#�۱�9#��P���0��3�3 �Y�
��Z����F�8�����������"��-��Є��K�~S��iSJ�a�N?�N��YtO$�m�H����t��
T��q#1����WFFo�:$	�z�!r�7RLެ������y���ӣ5
TY�A�^8LC��S∜H7��T".�+��
C��$Ԏd#=��z�#ٵ���ݫ����p{�.�!$�c�"�o���&,0ڜ��b�b:�-�ef��X�]+e��lٌ�VlW�T&˲d�~S�e�dֻ"{-d�=��1�06�Ua����+�P�vWO�"֙ǙN5��ԡQ�t��_�2��V���*����_�W�r�p�+C3<Κ�Dm�����R����>
�������x4�{���u�C�zf#��u��*5�O��;颵%�p�
M��9��!@�r1L���s��,���� ?��F�$�!�(�pNUX�v7���������&;LR��;
u�`\��P�#D�b���ܦ��O�����QZ:��x'�<^A��"Z�)�fw!#�+�0���y���]�mh��U�s�p�1�e���^�+��?��65�4]�6�ﳋ��~)�����L�uKNp�=�*�#A�$2޿�4<- ���&+��f�B�<"�}?�4��
�KeyAttrFlagsi!J�KeyAttrDataFloatf

w�KeyAttrRefCounti+��AnimationCurveL8?�-SAnimCurveSڔ	DefaultD�KeyVerI�+�%KeyTimelp�<A���a(z�a^�
KeyValueFloatf�L���L���L����KeyAttrFlagsi!•KeyAttrDataFloatf

�KeyAttrRefCountit�AnimationCurveLh��-SAnimCurveSR�	DefaultDj�KeyVerI���%KeyTimelp�<A���a(z�a֖
KeyValueFloatf�
@�
@�
@�KeyAttrFlagsi!:�KeyAttrDataFloatf

g�KeyAttrRefCounti�AnimationCurveLh��-SAnimCurveSʗ	DefaultD�KeyVerI��%KeyTimelp�<A���a(z�aN�
KeyValueFloatf�?�?�?x�KeyAttrFlagsi!��KeyAttrDataFloatf

ߘKeyAttrRefCounti��AnimationCurveLH��-SAnimCurveSB�	DefaultD��տZ�KeyVerI�k��KeyTimel^�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��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�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�_���`�ll`0�/�`��#a���a(z�a
��
KeyValueFloatf^x�������B??�?�)�?�9�?�6�?�=�?�C�?�(0?�(��sǨ�\��#W^;өT?�,�?�?ʄ@�?@���?��?��v?q<>f�=��<?@�?J�?d��?���?���?���>ƤQ��^��+?P��?��@/(@��@$^�?�?�=?��H>4֬=tS�=�m+>`�=�ʽ/O:���D>� ?�6J?F��?t��?�v�?�J�?���?���?��@��$@��9@5�F@F�H@��B@]�:@��@��x?%�#=����UFپټ�(����3)���FŽ�>���>J6�>]�K�+���-����9���j��{C�ix����į�����d���*������A~���f��	�4�KeyAttrFlagsi!n�KeyAttrDataFloatf

��KeyAttrRefCounti^d�AnimationCurveL�+�-SAnimCurveS��	DefaultD@��?�KeyVerI�'��KeyTimel^�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��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�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�_���`�ll`0�/�`��#a���a(z�aƣ�
KeyValueFloatf^xr�=9&�%P�?#�#@YS@�|f@��q@wpb@�.@lߘ?�����k�;���ۂ?�!&@	�V@�Ѓ@H��@��@5ݑ@�x@&K@[��?�e���sL?�B@p(B@h;@D�5@Q-@b�0���g������~@hM�@棷@1��@���@���@��v@z3@��?c՝?g�?���?��?W&�>���>��1@/Ր@��@��@�W�@��@S��@M��@*:A��A��&Aї2A��5A[e7A�2AչA��@m�?ޏ˿��H����TԒ�.`�����ߥ$��u�{$?���?���?gR���N��^���n���꿋E羓�@�����[j�Q���N��l��@���;��1Օ�}��^ҫ��KeyAttrFlagsi!*�KeyAttrDataFloatf

W�KeyAttrRefCounti^ �AnimationCurveL(��-SAnimCurveS��	DefaultD@�-(�ҤKeyVerI���KeyTimel^�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��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�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�_���`�ll`0�/�`��#a���a(z�a���
KeyValueFloatf^xRoA��D?��c?�t�7���6�R2��+� 0*��]1�0[A��-�����S�@3Ӟ@� �@v\A�\.Aq�%An��@�?�C����P�7�8�6�ϱ(��2*���*�� ���|=&����nҭ��y����<�?�M=�Q�Z[���_�����eR�����8��������P������,���������������,��]D������b���:{�~�k�
]�dcH�80���������?i��4q���N���F��M���:�?e8�
�?�Z/�������ݓ������/���(^��zq��ͫ���:���އ�����р�!+����5�8���A�`R6�M~�-���"㪿�B��ڱ����KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti^��AnimationCurveL(I�-SAnimCurveSv�	DefaultD��KeyVerI�Ǫ%KeyTimelp�<A���a(z�a��
KeyValueFloatfM���M���M���$�KeyAttrFlagsi!^�KeyAttrDataFloatf

��KeyAttrRefCountiܰAnimationCurveL�{�-SAnimCurveS�	DefaultD�KeyVerI�Ǯ�KeyTimelT�p�<AX�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�_���`�ll`0�/�`��#a���a(z�a>�]
KeyValueFloatfTP]2L�]2L�]2L�_2L�_2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�^2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�]2L�h�KeyAttrFlagsi!��KeyAttrDataFloatf

ϰKeyAttrRefCountiTT�AnimationCurveL8��-SAnimCurveS2�	DefaultDJ�KeyVerI���%KeyTimelp�<A���a(z�a��
KeyValueFloatf��D���D���D��KeyAttrFlagsi!�KeyAttrDataFloatf

G�KeyAttrRefCounti��AnimationCurveLH��-SAnimCurveS��	DefaultD`2* �²KeyVerI��KeyTimelBp�<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"�
KeyValueFloatfB�Q�q��������L�%��>	�R	�n.�
��������|C��������d������� ���`����
��-��ۯ�>"���G	�o�	��+	�a���3�������}��̓��5�������/������@��ڀ��_��@�������0������� ��t��������c�I�E������,	��!	�ɞ�z�����S8����;������V��Q�L�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiB,�AnimationCurveL��-SAnimCurveS�	DefaultD��0@.�KeyVerI�_�KeyTimelBp�<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��
KeyValueFloatfB�υA0`�A�ӇA���A�7�A���A�1�A�ƌA=s�A�AZ�A^�A��A~�Ak%A6�|Ay�{Alw{A��|AM�~A{M�A���A�E�Aw��Aj�A��A���A��A��A��A���A
�A!��A�|�A��}Ay�{A�{AY{A��{A1P}A$�AY>�AӂAZ�A��A�r�A�O�A�,�AE�AډA!��AT�A��A�m�A9njA���A�A�[�A�i�A�>�A&�A�ׇA]܆A�(�A�ӅA�υA��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiB��AnimationCurveLxY�-SAnimCurveS��	DefaultD`��8@��KeyVerI�ӽ%KeyTimelCp�<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�X�
KeyValueFloatfCC'�A��A]ķA�ګA	��A@�A!�A'�AHe�AF��A�i�A���A��Ad��AUg�AIF�A1�B6BFB�n�A�	�A�N�A�$�AOg�A��A�Z�A7��A�7�A�x�A4k�A:x�A�APm�A��A�A�B�%BC�BT�B�AN�A�#�A��Au��Ar��A{��AU�A�A�AB�A1�A�AQ��AF��Ai^�AK$�A=s�AQݘA�ٞA���Ao�A(m�A8׾ATY�A�AC'�AC'�A0�KeyAttrFlagsi!j�KeyAttrDataFloatf

��KeyAttrRefCountiC�AnimationCurveLh��-SAnimCurveS��	DefaultD�KeyVerI�K�%KeyTimelp�<A���a(z�a~�
KeyValueFloatf�6��6��6���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveSr�	DefaultD��KeyVerI���%KeyTimelp�<A���a(z�a��
KeyValueFloatfD�D�D� �KeyAttrFlagsi!Z�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL8��-SAnimCurveS��	DefaultD�KeyVerI�;�%KeyTimelp�<A���a(z�an�
KeyValueFloatf�Ȕ��Ȕ��Ȕ���KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountix�AnimationCurveL�c�-SAnimCurveSb�	DefaultD�?U�z�KeyVerI���KeyTimelBp�<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��
KeyValueFloatfB����½���=��\)����m� 6V��}J���O�
nc�?���F#��
h��+���wW���.���5��:2��;�������gy��z|��|��qh��>���d���J��+C��3M���[��y�i����[��h���fz������X��y���R���+���Hn��|���o���κ��BƷ�W���P���'t���*��A������Ny�!�k��U`�W�;jP�R�L�)�M�XW�Z
h�nG}��A�����ӏ��~ߦ��i��쒪��KeyAttrFlagsi!>�KeyAttrDataFloatf

k�KeyAttrRefCountiB��AnimationCurveL���-SAnimCurveS��	DefaultD 2��?��KeyVerI��KeyTimelBp�<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��XF�
KeyValueFloatfB�I�?�%�?x�m?��6?��?y��>Tp�>�{�>�T�>	�+?:�k?���?'��?.9�?��@6�@V+&@uL(@�V@�L
@6��?���?�K�?�<?-��>�>���>�1�>���>fW?&Fb?��?C�?ɟ�?@i)$@&4+@F�)@~='@�@@]K@/��?=�?'�?���?�^�?���?�c?^G?��-?��?��?��>_l�>��>}z�>s�>
m�>Ŵ�>� ?��E?�el?'܇?�U�?i�?�U�?p�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiB\�AnimationCurveL���-SAnimCurveS:�	DefaultD@C<@R�KeyVerI���%KeyTimelCp�<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�X��
KeyValueFloatfCb�A��A���A���A�R�A�J�A�T�A�
�Av��A���A��A��APA�Ai$�A2B��B��B@�B�
B��B���A��A���A��A�F�A�w�A��A&E�A��A=)�AD��AL��A�G�A(��A��BPBG\
B��BHB�}	B�4B�
B9Y�A$i�A���A���A
<�A{�A���A$`�A�L�A���A�ʹA��A�e�A26�A[��A#��A�f�A���A��A�z�A$c�A
��A���A��A��A��KeyAttrFlagsi!"�KeyAttrDataFloatf

O�KeyAttrRefCountiC��AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelp�<A���a(z�a6�
KeyValueFloatf�!	��!	��!	�`�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti<�AnimationCurveL8�-SAnimCurveS*�	DefaultDB�KeyVerI���KeyTimelW�p�<A`�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�_���`�ll`0�/�`��#a���a(z�a��i
KeyValueFloatfW\��b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���b���KeyAttrFlagsi!�KeyAttrDataFloatf

/�KeyAttrRefCountiW��AnimationCurveLX��-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimelp�<A���a(z�a�
KeyValueFloatfqZ�qZ�qZ�@�KeyAttrFlagsi!z�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS
�	DefaultDZn
�"�KeyVerI�3��KeyTimel>�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`��N�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��XR�
KeyValueFloatf>��rS��J^�.�v��O���4��=ŝ��ʣ�/��*��L��DP���*��`N����z�W�j�C�]��zU��S�e$Z��Gg���x��e���i��5���Yڠ���������/��)��L��DP���*��^N����z�W�j�C�]��zU��rS��rS��rS��rS�U�ʫ[��Sf���s����U����K���Y��B��=�������'Ĥ������,���K���D���Gz��h��sZ���S��rS�|�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti>�AnimationCurveLX��-SAnimCurveSF�	DefaultD�?��?^�KeyVerI�_��KeyTimel<�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=�NPЕ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��Xv��
KeyValueFloatf<����>�2?x�?��@?3ck?��?�`�?��?}2�?v��?W�w?IX?�W:?� ?{
?�A�>8f�>�u�>Q��>�T	?Y0?o�:?
�\?$��?�5�?��?�|�?��?2�?s��?U�w?IX?�W:?�� ?{
?�A�>6f�>���>���>f��>]q�>�P?(�?�0,?O�D?~+`?�E|?>!�?Nn�?�U�?�Қ?�t�?`�?�+`?�`=?��?B:
?82�>�{�>���>��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti<\�AnimationCurveLx��-SAnimCurveSj�	DefaultD^�1@��KeyVerI���KeyTimel?�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`��N�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�X��	
KeyValueFloatf?���A2B�A�УAT��A�z�Atw�A�{�A��AU'�A���A���A A�AMƲAՋ�A��A�ܒA8j�A�C�Aq��A�C�A@0�A��A��AA5�A��A�8�A�Q�A��AU'�A���A���AA�ALƲA֋�A��A�ܒA8j�A��A��A��A��A�#�A?��AP��A�áA�9�AN�A�K�A$~�A�0�A��AgD�A���A/7�A])�A�K�A�At �A�ҙA$��AaF�A��A��A��KeyAttrFlagsi!"�KeyAttrDataFloatf

O�KeyAttrRefCounti?��AnimationCurveLh�-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelp�<A���a(z�a6�
KeyValueFloatfE���E���E���`�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountix�AnimationCurveL��-SAnimCurveS*�	DefaultDB�KeyVerI�C��KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\pP�{>O�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>O�{>P�{>P�{>P�{>P�{>P�{>P�{>P�{>O�{>O�{>�KeyAttrFlagsi!>�KeyAttrDataFloatf

k�KeyAttrRefCounti\��AnimationCurveLx�-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelp�<A���a(z�aR�
KeyValueFloatf�m{��m{��m{�|�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti\�AnimationCurveLx��-SAnimCurveSF�	DefaultD`�T�^�KeyVerI���KeyTimelBp�<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��
KeyValueFloatfB����"�p�5���J�7^���l��0s�a�n�a�/L��1��;����K���
Kj����\}��7s���g����b�Ⱦ������p�#�ϕE� �`��Er��cw�$�p���f�IOR�0�5�X��߾;+��<8��Y����p�)$��Ћ������l�œ��Mcݾ!��;s��f#�)�.��:�P�D�`�N���W��j_��f��Kk���n���p��Tp�d�j��z`��jS�T�D��I6��R)�ǝ�1������KeyAttrFlagsi!"�KeyAttrDataFloatf

O�KeyAttrRefCountiB��AnimationCurveL�5�-SAnimCurveS��	DefaultD`�t@��KeyVerI���KeyTimelBp�<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*�
KeyValueFloatfB��@���@
��@�^�@ú�@uI�@V�@�5�@�&�@��@���@M+�@���@/��@Ҫ�@��@|��@�3�@_�@���@Ė�@���@3K�@���@�:�@w��@��@��@0|�@n%�@}f�@��@5��@k��@�f�@bc�@X�@,�@���@��@�b�@���@��@J��@��@�.�@+%�@���@E��@�M�@���@��@9�@_��@�b�@#��@$��@b��@o��@���@��@7��@��@�]�@��@��@T�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiB@�AnimationCurveL���-SAnimCurveS�	DefaultD�Y�9@6�KeyVerI�o�%KeyTimelCp�<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�X��
KeyValueFloatfCϒ�AZE�A7ʿA�H�A���A'D�ARG�A�=�A}p�A`X�A��A��A�{�AEa�A���A��B'%B��B+Bm��A
��A2��AbV�A�A��A҇�A�ɚA�a�AČ�A�I�AY��A��A[��AH��Al��A��B7�Bo-B_B�7B���Al�A���A��AK)�A�"�A��A- �ADE�A���AꃭA|�A��A~��A�|�A�M�A���A��A��A�-�A�a�A{�A��AB��A�t�Aϒ�Aϒ�A��KeyAttrFlagsi!�KeyAttrDataFloatf

3�KeyAttrRefCountiC��AnimationCurveL8��-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimelp�<A���a(z�a�
KeyValueFloatf/=��/=��/=��D�KeyAttrFlagsi!~�KeyAttrDataFloatf

��KeyAttrRefCounti0�AnimationCurveL���-SAnimCurveS�	DefaultD&�KeyVerI�_�%KeyTimelp�<A���a(z�a��
KeyValueFloatf�����������KeyAttrFlagsi!��KeyAttrDataFloatf

#�KeyAttrRefCounti�AnimationCurveLx:�-SAnimCurveS��	DefaultD��KeyVerI�?�KeyTimel0�p�<A�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�_���`�ll`0�/�`��#a���a(z�a&�
KeyValueFloatf0�[:��[:��[:��Z:��Z:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��[:��PKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti00AnimationCurveL�Z�-SAnimCurveS	DefaultD SS�2KeyVerI�cKeyTimelBp�<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�
KeyValueFloatfB��
�����￧xҿ�඿7r��ҝ�����[w���ƿN����D���2*�,�9�i�E�5�L��LN��H�=�:�@�(��`�Ds����п�����▿�4��M���7���-n��^�����.��?�<K�jP��O�S}M�+�F��c<�X�/�u|"�o��E��"�9�����]޿�pϿ�������ժ��(���8��2
��Ù�K-���h���Ŀ�ٿ����o��5�]
���
��KeyAttrFlagsi!�KeyAttrDataFloatf

#KeyAttrRefCountiB�AnimationCurveL�M�-SAnimCurveS�	DefaultD 9x�?�KeyVerI��	KeyTimelBp�<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�

KeyValueFloatfB��c>�J>25>���=D�h=�p�<�Cj<�x�<{Q@=�˻=?j>�Jj>���>k��>n�>3�?��?�m"?�?��?8��>yp�>,A>{{�=W�/=Ά�;�#��0<�C�<�K�=��> f>��>�j�>g?�X?�q(?†&?�#?oJ?�(?��>���>�ȕ>~�w>T>>2>pR>�3�=���=j��=�W=M
#=hd�<:e�<�0�<R	�<d��<GhV=08�=��=�C>�K8>�iV>�f>H�f>(KeyAttrFlagsi!bKeyAttrDataFloatf

�KeyAttrRefCountiBAnimationCurveLȨ�-SAnimCurveS�	DefaultD@YT<@
KeyVerI�C%KeyTimelCp�<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�Xv
KeyValueFloatfCʢ�A4�A�A��AQ��A+��A٥�A�}�A���A��A؂�AN��A:��A��A�B�IBɉB�4B�cB6�BPI�A��A�D�A5��AqO�A�ǮA���AK��A�A���A���Ar��A��AbgB*�Bt�
B�B��B�B��B�4B�Bj��A���A�=�A��A���A���A�u�A���A��A?�A}��A�N�A�ݰA��A��A�h�A���A1q�AG�Aׯ�A�7�AS��A���A��A��A�KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountiC�AnimationCurveL��-SAnimCurveSj	DefaultD�KeyVerI��%KeyTimelp�<A���a(z�a�
KeyValueFloatf��<���<���<�KeyAttrFlagsi!RKeyAttrDataFloatf

KeyAttrRefCountiAnimationCurveL���-SAnimCurveS�	DefaultD�KeyVerI�3%KeyTimelp�<A���a(z�af
KeyValueFloatfl�D�l�D�l�D��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti|AnimationCurveLH��-SAnimCurveSZ	DefaultDrKeyVerI��%KeyTimelp�<A���a(z�a�
KeyValueFloatf֨�֨�֨�KeyAttrFlagsi!BKeyAttrDataFloatf

oKeyAttrRefCounti�AnimationCurveLx�-SAnimCurveS�	DefaultD�*����KeyVerI���KeyTimel>�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`��N�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
KeyValueFloatf>�U!�����0%ɿ1�޿_���d����5�����ܫ�������:*ۿ�s̿+ ���x���ǭ��]��%����N����ʿ�Pۿ�쿷�����Y��N	�4�����ݫ�������9*ۿ�s̿) ���x���ǭ�]!���,��+��T!��q��Ҳ�񆻿&�ƿ�Mӿ/�࿘��ы������������f���@������]�ܿ��˿f����ӱ��`��S!��DKeyAttrFlagsi!~KeyAttrDataFloatf

�KeyAttrRefCounti>�AnimationCurveLHY�-SAnimCurveS	DefaultD��W�?&KeyVerI��KeyTimel9�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�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��-X�
KeyValueFloatf9���Z=�t=,�=���=D&*><M[>U>� �>�y>�#]>�9>��><��=9�=�0�=�er=��^=�M[=1Ei=���=��=hs�=�<>KD>�<m>�x�>��>� �>
�y>�#]>�9>��>T��=1�=�0�=�er=��^=�]=jm=[[�=��=�q�=�S�=1
>:F>>B^>��w>An�>ǂ>��m>M�G>=
>�T�=Z�=�r�=/j=NU[=DKeyAttrFlagsi!~KeyAttrDataFloatf

�KeyAttrRefCounti9!AnimationCurveL��-SAnimCurveS	DefaultD��1@&KeyVerI�?KeyTimel?�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`��N�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�Xb 	
KeyValueFloatf?�-x�AĕAʓ�A���A���A`��A\ �AE�A���A�u�A�V�Ao�A�õAxY�A�5�A]�A�ԏA�AU��A�ݛA���A^�A�<�A���A���A��A�	�A	E�A���A�u�A�V�Ao�A�õAxY�A�5�A]�A�ԏA-x�Ax�A
x�A-x�AA��A*��AZ7�A�~�A��A�\�Ax��A���At��ARL�A��A4��A���Am��Ax��A� �As�A�n�A�,�Ak��A-x�A-x�A� KeyAttrFlagsi!� KeyAttrDataFloatf

� KeyAttrRefCounti?x"AnimationCurveL�"�-SAnimCurveSV!	DefaultDn!KeyVerI��!%KeyTimelp�<A���a(z�a�!
KeyValueFloatf���������"KeyAttrFlagsi!>"KeyAttrDataFloatf

k"KeyAttrRefCounti�#AnimationCurveL8��-SAnimCurveS�"	DefaultD�"KeyVerI�#%KeyTimelp�<A���a(z�aR#
KeyValueFloatf�Q�>�Q�>�Q�>|#KeyAttrFlagsi!�#KeyAttrDataFloatf

�#KeyAttrRefCountih%AnimationCurveL���-SAnimCurveSF$	DefaultD^$KeyVerI��$%KeyTimelp�<A���a(z�a�$
KeyValueFloatf���?���?���?�$KeyAttrFlagsi!.%KeyAttrDataFloatf

[%KeyAttrRefCounti�)AnimationCurveLX��-SAnimCurveS�%	DefaultD�a=@�%KeyVerI��'�KeyTimel=�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�ű�S0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�W�(
KeyValueFloatf=��@��@�p@;��?���?�;�?���?�<�?�Z�?�@��@�
@x@ԁ@��@�o@tP@�z@�@�@��@��@n4@|�@د�?��?�8�?�{�?[��?Q�@�[@�#@Ȟ@1R@=�@�R@Ef@go@89@��@{�@c�@2@0�@GQ@Q�@��?G�?���?g��?���?�?�?���?%v�?�l�?��?���?���?��@�W@�@$)KeyAttrFlagsi!^)KeyAttrDataFloatf

�)KeyAttrRefCounti=.AnimationCurveL��-SAnimCurveS�)	DefaultD����*KeyVerI�7,KeyTimelBp�<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��Xf-
KeyValueFloatfB%忌M�j��k�jZ�����h%��&��"��w����>��C������l��.J�Wg�Qf⿽�\T�8����^�
��97�Z� ���&���(�H&�-N#�=W�Ī�Zu
�>������w�4꿐w�d+�fhݿ �ڿٿx9ٿf*ۿ��޿����꿛������M���
�^�����Q�4� �BR$��+&���%��"��W�&�$
�צ�����_��^�%忐-KeyAttrFlagsi!�-KeyAttrDataFloatf

�-KeyAttrRefCountiB|2AnimationCurveL���-SAnimCurveSZ.	DefaultD�J�;@r.KeyVerI��0%KeyTimelCp�<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�X�1
KeyValueFloatfCW
�A�C�A�e�A3E�A��A���A&�A��A���A�ޱA3c�A���A}��A�.�A��B��B��B�X
B�"
B�~B9��A5�A1��A���AU��A2֛A=��A�ϜA#��A��AO�An��A���A.�A@CBj>Bi	B��
B	t
B��
BA�B
?B�j�AA�A���A���A�Y�AV��A���A'�A��A�K�Aۋ�A��A�AȜA*�A���Ag��A0��Aڧ�Ah��A�@�Aig�A���AW
�AW
�A2KeyAttrFlagsi!B2KeyAttrDataFloatf

o2KeyAttrRefCountiC�3AnimationCurveL��-SAnimCurveS�2	DefaultD�2KeyVerI�#3%KeyTimelp�<A���a(z�aV3
KeyValueFloatfc0��c0��c0���3KeyAttrFlagsi!�3KeyAttrDataFloatf

�3KeyAttrRefCounti�9AnimationCurveL���-SAnimCurveSJ4	DefaultDb4KeyVerI�c7�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�8}
KeyValueFloatf\p4�<4�<5�<5�<6�<6�<6�<6�<4�<4�<6�<4�<3�<6�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<6�<6�<4�<4�<5�<5�<6�<6�<5�<5�<4�<5�<5�<5�<5�<5�<5�<4�<5�<6�<5�<5�<5�<5�<5�<4�<5�<4�<5�<5�<4�<4�<5�<6�<5�<5�<4�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<5�<4�<$9KeyAttrFlagsi!^9KeyAttrDataFloatf

�9KeyAttrRefCounti\;AnimationCurveL85�-SAnimCurveS�9	DefaultD:KeyVerI�?:%KeyTimelp�<A���a(z�ar:
KeyValueFloatf?%??%??%?�:KeyAttrFlagsi!�:KeyAttrDataFloatf

;KeyAttrRefCounti|?AnimationCurveLhT�-SAnimCurveSf;	DefaultD�c��?~;KeyVerI��=KeyTimelBp�<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�>
KeyValueFloatfB+E?�u=?��*?��?[�?��>/��>�f�>�n�>�p
?�	!?1�9?{�R?͇j??�z�?���?���?�)�?Gc�?z�h?�1L?6.?Xa?Ă�>�Q�>��>��>pU�>?V?�9?q�U?�p?�%�?L�?���?@ˎ?�W�?U��?�+�?J�x?�ig?*W?�I?��>?�3?�{(?͂?��?�?{��>��>��>��>D
�>���>;t�>՜�>M`?n�?��)?��6?��@?��E?�3F??KeyAttrFlagsi!B?KeyAttrDataFloatf

o?KeyAttrRefCountiB�CAnimationCurveL��-SAnimCurveS�?	DefaultD�����?KeyVerI�BKeyTimelBp�<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��XJC
KeyValueFloatfBE|�A���ﵽV�n��[�[p�w�3����Y���0)�ї�$�V��x�M��kz�V<��n坾>�������;�~���I�P��5忽/KC�T�^�-��;X<�n�;�h?�ovӼ!Jy�bBڽ��#�uL]��S��u❾o���@w��D{��;8��Kk��:�y���U���5�r����	���콪`Ľi����l�
�'�����5���ēl�����T����˻@Es��<߼�6�r���ⲽ��ݽ�T�����X
�tCKeyAttrFlagsi!�CKeyAttrDataFloatf

�CKeyAttrRefCountiB`HAnimationCurveLذ�-SAnimCurveS>D	DefaultD��@@VDKeyVerI��F%KeyTimelCp�<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�X�G
KeyValueFloatfC�B��B���A���A~��Az��AH��A��A�	�A���A���A,��AE	B@B4B�t B�V$B�#%BQ�!B��B0�B6�B5��AA�A�K�A�A���A��A��A
��A6��A*��A�.
B#BG�B��"B��%BѮ%B�`%B]�"B��B�QBEB��BV�BP3BLB�f�A��A���A��A���A���AQ��AB	�A��A���A0O�A��A�|�AY�AU
�A;,B��B;�B��B��B�GKeyAttrFlagsi!&HKeyAttrDataFloatf

SHKeyAttrRefCountiC�IAnimationCurveL�c�-SAnimCurveS�H	DefaultD�HKeyVerI�I%KeyTimelp�<A���a(z�a:I
KeyValueFloatf�S��S��S�dIKeyAttrFlagsi!�IKeyAttrDataFloatf

�IKeyAttrRefCountiPKAnimationCurveL�U�-SAnimCurveS.J	DefaultDFJKeyVerI�J%KeyTimelp�<A���a(z�a�J
KeyValueFloatf�7A��7A��7A��JKeyAttrFlagsi!KKeyAttrDataFloatf

CKKeyAttrRefCounti\OAnimationCurveL8W�-SAnimCurveS�K	DefaultD�KKeyVerI��M�KeyTimel:�p�<Ah\��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�_���`�ll`0�/�`��#a���a(z�a�N�
KeyValueFloatf:�N
->N
->N
->M
->N
->N
->N
->N
->N
->N
->N
->N
->N
->O
->O
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->N
->O
->O
->N
->N
->N
->M
->M
->N
->N
->N
->N
->N
->N
->N
->N
->�NKeyAttrFlagsi!"OKeyAttrDataFloatf

OOKeyAttrRefCounti:�SAnimationCurveL�-SAnimCurveS�O	DefaultD��(�?�OKeyVerI��Q�KeyTimel<�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=�NPЕ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�R�
KeyValueFloatf<��G?I"?o$?_2?%H??8�I?B:P?B�Q?�DO?J? �B?�9?�20?��&?�?��?7`?�o?��?��?�%?�K0?<);?<E?�M?71R?��S?D�Q?�DO?|J?$�B?�9?�20?��&?�?��?5`?�G?:;?�&?
�?�y?"�"?.+?x�3?<?��C?�4J?��N?N�Q?�IQ?N$M?;�E?<?�=1?�D&?�p?�?�q?=?SKeyAttrFlagsi!FSKeyAttrDataFloatf

sSKeyAttrRefCounti<hWAnimationCurveLH�-SAnimCurveS�S	DefaultD �o���SKeyVerI��U�KeyTimel7�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���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X�V�
KeyValueFloatf7��K��I_��:���dz�(��/�|��e��l����{�キ+ͽ"�_�����y��^�M�N���K��UW�L,r�1����=��TҽR���V�������W��
l������キ+ͽ�g���y�y��^�6Z�up��@���ѝ������սx;���L���������9������ս�0��ܐ�	t���W��L��VKeyAttrFlagsi!.WKeyAttrDataFloatf

[WKeyAttrRefCounti7�[AnimationCurveLx��-SAnimCurveS�W	DefaultD��6@�WKeyVerI��YKeyTimel?�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`��N�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�X[	
KeyValueFloatf?���AV+�A�y�A��A��A�(B'�B��B5-B!iBMg�A1&�A��A'T�A���Ag��Ag�A�۶A�I�A�r�A���AQ=�A}�A���Al�BvMBEfB��B5-B!iBMg�A1&�A��A'T�A���Ag��Ag�A~��AY��Ac��A���A�ŷA%Y�A���A�T�A�C�A���A�S�A���A��B@�B��B��B�B���A�S�Aӂ�A���A/�A���AG޶A���A���A<[KeyAttrFlagsi!v[KeyAttrDataFloatf

�[KeyAttrRefCounti?(]AnimationCurveLh��-SAnimCurveS\	DefaultD\KeyVerI�W\%KeyTimelp�<A���a(z�a�\
KeyValueFloatf-C��-C��-C���\KeyAttrFlagsi!�\KeyAttrDataFloatf

]KeyAttrRefCounti�bAnimationCurveLh��-SAnimCurveS~]	DefaultD�]KeyVerI��`�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a.b}
KeyValueFloatf\pϓ��ӓ��ӓ��ϓ��Γ��ϓ��ϓ��ϓ��ӓ��ӓ��Γ��ӓ��ӓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��Γ��ϓ��ϓ��ϓ��Γ��ғ��ӓ��ӓ��ϓ��Γ��Γ��ϓ��ϓ��ӓ��ӓ��ϓ��ғ��ғ��Γ��ӓ��ӓ��ӓ��ϓ��ϓ��Γ��ӓ��ӓ��ϓ��ӓ��ӓ��ӓ��ӓ��ϓ��ӓ��ӓ��ӓ��ϓ��ϓ��ӓ��ӓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ϓ��ӓ��ӓ��ϓ��ӓ��ӓ��ϓ��ӓ��ӓ��ϓ��ϓ��ғ��ӓ��ϓ��ӓ��ӓ��XbKeyAttrFlagsi!�bKeyAttrDataFloatf

�bKeyAttrRefCounti\DdAnimationCurveL�3�-SAnimCurveS"c	DefaultD:cKeyVerI�sc%KeyTimelp�<A���a(z�a�c
KeyValueFloatf�[@�[@�[@�cKeyAttrFlagsi!
dKeyAttrDataFloatf

7dKeyAttrRefCounti�hAnimationCurveL��-SAnimCurveS�d	DefaultD L�ƿ�dKeyVerI��fKeyTimelBp�<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��Xh
KeyValueFloatfBa�7��b����">�^�>��)?�
]?>[|?�4?Luj?��E?/H?�̻>�>����6��]
��`	�D�����4Ğ�Kl���h->;�>�<-?)a?�΁?�߆?H�?^no?��K?��?"	�>MV>j����Ö�9%�
n�|��U�����8<
�s@�[�¾
��==M�	'�]Һ���=��>���>Ñ
?�X,?əJ?��c?�v?��?�l~?Bi?�^D?&m?A��>�>>[JR<�,��5�a�7�<hKeyAttrFlagsi!vhKeyAttrDataFloatf

�hKeyAttrRefCountiBmAnimationCurveL���-SAnimCurveSi	DefaultD�W
%�iKeyVerI�OkKeyTimelBp�<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~l
KeyValueFloatfB�R(��-���8���E��$R��*\�a�a�	�`���Y��yO��B���4��z&��X���o�0-�f3��������o���)���:���J�n�X�b�[�d�
Aa�YA\�R�KD���4�">%�����
�wm��������� ����M��v�����. ���&��t,��2���8�#�?��XF�p�L�~�R��X�Eq\���_�HBa���`�O�\�_�U�a�L���B��y9��M1��T+�	t(��R(��lKeyAttrFlagsi!�lKeyAttrDataFloatf

mKeyAttrRefCountiB�qAnimationCurveL���-SAnimCurveSrm	DefaultD��h3@�mKeyVerI��o%KeyTimelCp�<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�X�p
KeyValueFloatfC�D�A�N�Ab�A�uoA�RAt�<A@�0A��3AaCA�[[A�>zAm��A���AH̲AȻ�A�\�Ap>�A���AA"�AE�A䔱A�V�A���A)�eALSEA�)0A#�)A�2Azn=Aa6UA�vAxc�AۢA��A���AN�A>�As��A6=�A�`�A\��A.A�As��A%r�A��A2�A-U�A�n�A��|A�fmAl�^APQA|�EA�N<Am�5A2A��2A��;A�tKA��_A�+vAA�Au$�A���A'�A�D�A�D�A qKeyAttrFlagsi!ZqKeyAttrDataFloatf

�qKeyAttrRefCountiCsAnimationCurveL(�-SAnimCurveS�q	DefaultDrKeyVerI�;r%KeyTimelp�<A���a(z�anr
KeyValueFloatf},m�},m�},m��rKeyAttrFlagsi!�rKeyAttrDataFloatf

�rKeyAttrRefCounti�xAnimationCurveL��-SAnimCurveSbs	DefaultDzsKeyVerI�sv�KeyTimel[�p�<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�_���`�ll`0�/�`��#a���a(z�axy
KeyValueFloatf[l���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=���=0xKeyAttrFlagsi!jxKeyAttrDataFloatf

�xKeyAttrRefCounti[zAnimationCurveL��-SAnimCurveS�x	DefaultDyKeyVerI�Ky%KeyTimelp�<A���a(z�a~y
KeyValueFloatf
�?
�?
�?�yKeyAttrFlagsi!�yKeyAttrDataFloatf

zKeyAttrRefCounti�~AnimationCurveL8`�-SAnimCurveSrz	DefaultD���@�zKeyVerI��|KeyTimelBp�<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�}
KeyValueFloatfB�O�@+L�@i�~@:�]@�J>@i�%@k�@.t@��4@�T@��{@FI�@���@ T�@0��@���@���@��@�L�@�3�@=�@H��@���@�_@M6@�g@]B@H�@_,@�]K@��u@8��@��@��@���@���@r��@���@���@|<�@���@/��@�J�@߫�@�ז@.>�@���@�v@fe@�U@zoF@9�9@z�.@:�%@��@!�@�@��'@��8@C�N@�f@A~@�"�@���@.&�@�O�@~KeyAttrFlagsi!N~KeyAttrDataFloatf

{~KeyAttrRefCountiB�AnimationCurveL�o�-SAnimCurveS�~	DefaultD�e���~KeyVerI�'�KeyTimelBp�<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��XV�
KeyValueFloatfB�-�����A���y�RO��2���%���-�ӥG�ylq����h���߿���%��)�|�3���5��,��)�=����ӿ
쥿b��-�H�"�'�'��>�*�s�<���d��q�� ���=���)
�� ���0�|S8�`x7��'6���,����[d
�}���(fؿ�忿=2���������q!����j�t:W��gG��=;��}2���,�c*�*2+�A�5�O�I��pe�y}��l���(���_��G޺��-����KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiBl�AnimationCurveL��-SAnimCurveSJ�	DefaultD �@@b�KeyVerI���%KeyTimelCp�<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�XΆ
KeyValueFloatfC�B�LBZz�A�'�A@��A��A�t�A���A��A�H�A%��A���A0 B�B�$B��BhB��B��B��B��
BAB��A�*�A�	�A4�AB�A��A�P�A�w�Aؼ�Ags�A��B��BbTBA�BeB(GBh�B;jBVBQB#�
B9�B-�BA�B�}�Am?�A���Af��A���A	$�A��A���A��A ��A�K�A��A��A���Au>�A
��A���A`OB��B�B�B��KeyAttrFlagsi!2�KeyAttrDataFloatf

_�KeyAttrRefCountiC�AnimationCurveL(��-SAnimCurveS‡	DefaultDڇKeyVerI��%KeyTimelp�<A���a(z�aF�
KeyValueFloatf�p!��p!��p!�p�KeyAttrFlagsi!��KeyAttrDataFloatf

׈KeyAttrRefCounti\�AnimationCurveL(��-SAnimCurveS:�	DefaultDR�KeyVerI���%KeyTimelp�<A���a(z�a��
KeyValueFloatfuH��uH��uH���KeyAttrFlagsi!"�KeyAttrDataFloatf

O�KeyAttrRefCountiԋAnimationCurveL���-SAnimCurveS��	DefaultDʊKeyVerI��%KeyTimelp�<A���a(z�a6�
KeyValueFloatf��?��?��?`�KeyAttrFlagsi!��KeyAttrDataFloatf

NjKeyAttrRefCounti��AnimationCurveL���-SAnimCurveS*�	DefaultD��p�?B�KeyVerI�C��KeyTimel<�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=�NPЕ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��XZ��
KeyValueFloatf<����>�N�>���>��?�$?��2?sc;?�c=?8:?�3?��(?;S?�|?6�?���>@b�>���>���>~��>S�>���>�?tA?�3,?=7?��=?��??�c=?@:?�3?��(?;S?�|?6�?���>@b�>���>���>���>��>h=�>���>t�>L?��?��?Pm*?�I3?,�9?�=?��<?�C7?�.-?��?T�?�?4��>�Y�>���>���>��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti<�AnimationCurveL�&�-SAnimCurveSN�	DefaultD����f�KeyVerI�g��KeyTimel<�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=�NPЕ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~��
KeyValueFloatf<�ȿſ����]�����Ŀ��ʿ��п&ҿ��Ͽ}5˿�MƿxX¿�I���n���b¿l*ſ�tǿ��ǿDƿJÿƔ��:L����¿�ǿߤͿktҿ�Կ%ҿ��Ͽ~5˿�MƿxX¿�I���n���b¿l*ſ�tǿȿȿ��ǿ=�ſv4ÿw��x�����#/ÿ,�ƿX˿QRϿ��ѿ�ѿ{�Ϳ�0ȿ!/ÿg���y��v�¿rƿ��ǿȿ��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti<d�AnimationCurveLG�-SAnimCurveSr�	DefaultD@�@$@��KeyVerI���KeyTimel?�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`��N�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�XƗ	
KeyValueFloatf?�z"A�	1A��SA��xA�*�A�ڜA;T�A4��A_�A\�AI�AO��A�sAdYAzmBA�50A��$A�k"A<F+A0�=AV�VAhEsAes�A�G�AX��A�4�A�i�A4��A_�A\�AI�AO��A�sAdYAzmBA�50A��$Az"Az"Az"Az"A�?$AFe-A�B<AUaOA�HeA��|AljA�z�A#��A�o�A@4�A��A�סA"H�AljAC�uA<�XA'�>A`�+A�p"Az"Az"A�KeyAttrFlagsi!*�KeyAttrDataFloatf

W�KeyAttrRefCounti?ܙAnimationCurveL8��-SAnimCurveS��	DefaultDҘKeyVerI��%KeyTimelp�<A���a(z�a>�
KeyValueFloatf������������h�KeyAttrFlagsi!��KeyAttrDataFloatf

ϙKeyAttrRefCountiT�AnimationCurveL��-SAnimCurveS2�	DefaultDJ�KeyVerI���%KeyTimelp�<A���a(z�a��
KeyValueFloatf�$���$���$����KeyAttrFlagsi!�KeyAttrDataFloatf

G�KeyAttrRefCountih�AnimationCurveL8c�-SAnimCurveS��	DefaultD›KeyVerI�c��KeyTimelP�p�<A�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�_���`�ll`0�/�`��#a���a(z�aʟM
KeyValueFloatfP@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@�}%@��KeyAttrFlagsi!.�KeyAttrDataFloatf

[�KeyAttrRefCountiP��AnimationCurveL�~�-SAnimCurveS��	DefaultD���+@֠KeyVerI���KeyTimel>�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`��N�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�
KeyValueFloatf>�e�]A,�[A2KWA@SAe7OA�LLA;�JA�JA��JA�3LA�ANA��PA
�SA&�VAdYA:�[A�&]A�v]AkP\A�YAt�VAu�SA�gPAx�MApbKA|JAK�IA�JA��JA�3LA�ANA��PA
�SA&�VAdYA:�[A�&]Ae�]Ae�]Ae�]Ae�]A�9]A�
\A=(ZA5�WA;9UA��RA� PA�MA`'LAB�JA�.JA�=JA�ZKA�aMA� PAZXSA÷VAB�YA9B\AOv]Ae�]A0�KeyAttrFlagsi!j�KeyAttrDataFloatf

��KeyAttrRefCounti>�AnimationCurveL(^�-SAnimCurveS��	DefaultD�
��KeyVerI�+�KeyTimel?�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`��N�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�XN�	
KeyValueFloatf?��0U���n�d���1ʴ��/��\j������D��N���H��pL���.��Dï�.ٙ�Y;��~`m��Y�2�U� �d�"��"k��/���
a��|��w���a�����D��N���H��pL���.��Dï�.ٙ�Y;��~`m��Y��0U��0U��0U��0U�,�X��h�����K����������������
u�������b��������������+,�����H���e���U��0U��0U�x�KeyAttrFlagsi!��KeyAttrDataFloatf

ߨKeyAttrRefCounti?(�AnimationCurveLh8�-SAnimCurveSB�	DefaultD}f@Z�KeyVerI�k��KeyTimel>�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`��N�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��
KeyValueFloatf>��3�@xv�@Õ�@�T�@l�@И�@���@dZ�@�$�@z�@t��@c̳@�_�@g��@�}�@���@E��@(��@o�@���@��@�<�@�ܱ@�u�@I��@W��@~X�@dZ�@�$�@z�@t��@c̳@�_�@g��@�}�@���@E��@�3�@�3�@�3�@�3�@&�@ W�@t��@���@�z�@�s�@e{�@�V�@l͛@���@���@\
�@�`�@qj�@e{�@g�@��@�a�@L6�@���@�3�@��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti>��AnimationCurveL���-SAnimCurveS~�	DefaultD��KeyVerI�ϭ%KeyTimelp�<A���a(z�a�
KeyValueFloatfS�ѿS�ѿS�ѿ,�KeyAttrFlagsi!f�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS��	DefaultD�KeyVerI�G�%KeyTimelp�<A���a(z�az�
KeyValueFloatf�l��l��l���KeyAttrFlagsi!ޯKeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveSn�	DefaultD��KeyVerI���%KeyTimelp�<A���a(z�a�
KeyValueFloatf?X@?X@?X@�KeyAttrFlagsi!V�KeyAttrDataFloatf

��KeyAttrRefCounti�AnimationCurveL�9�-SAnimCurveS�	DefaultD��KeyVerI�7�%KeyTimelp�<A���a(z�aj�
KeyValueFloatf��"���"���"���KeyAttrFlagsi!βKeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL��-SAnimCurveS^�	DefaultDv�KeyVerI���%KeyTimelp�<A���a(z�a�
KeyValueFloatf��C���C���C��KeyAttrFlagsi!F�KeyAttrDataFloatf

s�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveSִ	DefaultD�KeyVerI�'�%KeyTimelp�<A���a(z�aZ�
KeyValueFloatf�T@�T@�T@��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountip�AnimationCurveLH>�-SAnimCurveSN�	DefaultDf�KeyVerI���%KeyTimelp�<A���a(z�aҶ
KeyValueFloatf�u@�u@�u@��KeyAttrFlagsi!6�KeyAttrDataFloatf

c�KeyAttrRefCounti�AnimationCurveL�j�-SAnimCurveSƷ	DefaultD޷KeyVerI��%KeyTimelp�<A���a(z�aJ�
KeyValueFloatfJL�AJL�AJL�At�KeyAttrFlagsi!��KeyAttrDataFloatf

۸KeyAttrRefCounti`�AnimationCurveL��-SAnimCurveS>�	DefaultDV�KeyVerI���%KeyTimelp�<A���a(z�a¹
KeyValueFloatfRhڿRhڿRhڿ�KeyAttrFlagsi!&�KeyAttrDataFloatf

S�KeyAttrRefCounti�AnimationCurveL���-SAnimCurveS��	DefaultD���?κKeyVerI�׽�KeyTimel]�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к;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�_���`�ll`0�/�`��#a���a(z�ar��
KeyValueFloatf]t��?�|�?4d�>�(��j0?���?��?���?
1�?���?.O�?�h�?��?�t�>TdP>�ή>��=��w>�`?�F�?���?�	@‰�?ELH=a�޿�.�,xD���\������̈́&�B�j?cf�?�u:?ؗC=ݪ^��uJ>S�*?�J?�p�=��?�Җ?r�?jUL?*@F�@VV�?�!�?ii?�(>bi
����&ڿ�R���9�t�e��̌���� ������V������O���(���>�=�E0��j��BϿI�ؿ�-����u�d����4�q����ꦿMy�����?$$?�z��O:�����R
>^�3?�L??�o�>\��>	?*,�>"	>�;����KeyAttrFlagsi!ֿKeyAttrDataFloatf

�KeyAttrRefCounti]��AnimationCurveL��-SAnimCurveSf�	DefaultD����~�KeyVerI����KeyTimel]�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к;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�_���`�ll`0�/�`��#a���a(z�a"��
KeyValueFloatf]t��>�I
�r�?WS�?�:C��!(��+��+���9��s8���d)>
6��C~���?��mu��Ⱦ�9>4�I>��;��2˿�/뿯Lÿ�_�+i�?u��@jT�@���@�I�@�Am�#A���@M]>~bH�P�>��0��r���vu��k��۽���?�Q�>6���>ۿ#LI����氵���v���>�����?+�@]@���@5�@6�@
��@�z�@	��@���@%��@^��@ΛA��8A�x,A�
�@�׳@�П@	�@�ӂ@�ɍ@�}@�=@@4p@��K@,A�@p�|@G�L@��?Q����LX�Aٲ?&t#@J@���?dݳ==�N���>}�?��>Mp�=>
>
^�>�?L�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti]p�AnimationCurveL8�-SAnimCurveS�	DefaultD ?�
�.�KeyVerI�7��KeyTimel]�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к;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�_���`�ll`0�/�`��#a���a(z�a���
KeyValueFloatf]t��m�S���Tg��Б����>^�?�WϽ+
ȿ9�%��'Z�v����eg;�Z���cUW?f��?x�7?BF���P�G6��7+��ē�g|���/������ܤ?	��@ד@�Zz������1�⛂�{��?��@*�@;��@O�N@{k{?��t��p6�.>�8q�I�Z@���@&��@�ғ@�-@G#?���2��zU�J�v�H�O�{�ȿQb'?T.I@���@DAA�.A�1,A�]�@��?�1s���)�4R������^��(�l� ���9�_P�m[��_�Wu��W��OA��l�����տ��V�_�6Y��~��^���Lm��&���m���/�����������8��{�������KeyAttrFlagsi!6�KeyAttrDataFloatf

c�KeyAttrRefCounti]��AnimationCurveL�[�-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelp�<A���a(z�aJ�
KeyValueFloatf�� A�� A�� At�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLc�-SAnimCurveS>�	DefaultDV�KeyVerI�W��KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\p��3 ��3��3��3"��3��3��3��3$��3��3 ��3��3��3.��3��3*��3��3��3��3 ��3"��3.��3 ��3��3��3��3��3��3��3 ��3��3��3 ��3��3(��3��3$��3��3��3���3(��3��3��3��3��38��30��3��3��3��3��3��3��3��3$��3(��3��3��3 ��3 ��3��3��3 ��3��3$��3��3��3��3,��3��3��3��3��3��3��3(��3��3$��3$��3��3��3��38��3(��3��3 ��3��3,��3$��3(��3��3(��3�KeyAttrFlagsi!R�KeyAttrDataFloatf

�KeyAttrRefCounti\0�AnimationCurveL"�-SAnimCurveS��	DefaultD��KeyVerI����KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\p������������ ���@���������������`���@�����������@������������������@���p�������`���`�������P���`���0���8���d�������D���8���x���`�������@���z���l���Z���T���P���P���<���t���Z���p���z���b���h���h���h���p���`���X���l���l���`���T���`���h���X���h���X���`���8���X���T���\���T���\���P���d���p�������|���@���h���p���@���p���H���X���X���p���X���h�������h���t���x���d���P���,�����KeyAttrFlagsi!��KeyAttrDataFloatf

#�KeyAttrRefCounti\v�AnimationCurveL���-SAnimCurveS��	DefaultD` 6H@��KeyVerI����KeyTimel��x�},�q��*f�v�t)Q^c��˹N�W\����Z����m�d#�����F^R�D]
]
7�N���m;m�0o���3/��y�y�f;L���2,
k���&�ֱ�&������Ŵ��XU:jB���&%����v,��'k����6L�=Ǽ>	JV���K�$��>]�
y�����d���Wfc�Cq#�oxoaٽM�Ur�Z�/��s�^���J���7�O�����/�����0�Og{$.I��;/��j�4.m�2�F��e�]]6X�4U����+�Щ�N[Hf���d�e�*ƹ��V|�e���h��]<28iA�
�Ú4�3*ʰXw�5E�az��e$Yt�2���a��	9&�h�';�?L�杊"g�c��Y��m^c�5����&���a�dY-N�����nǸd�E8���s�"f�ޡuM`�Xݾ�!���#,.Iq�}/^��-bN��p,��l0�>�����Q�9�G^b�*�U�ou؟u?�G�
��p9sg
{����g�’>��
�s�i.�^��c���8O�?�
�g8�B��x2ö��W��	���з
k|��XܭuK �}�c���,�rb��4�rV�w��S̻I6q�Qbe��Y"9��c�E����C��ܨG�ps��|2���Vb}��
��M!7�[�]�.��3��dۅ.��W���#"������5�4����;[�k�h�.���!
KeyValueFloatf��AB�&DB�*DBw,DB�=B1�7B6� BıB�U
B��
B�.
BIrB��B�B�KB�DB-
Bx��A�A�d�Ah$�A43ZAiEA�2:@�2??���?�LA���A���A$�A5~B�B�j*BL;B �KB��UB�XaB��TB�vHBk7Bk1$B��B��BJRB�|Bx B\C#B��B�@B~�BdB���A��A��A��RAg^
A��{@��K�K0#�6{��������m3��\�~D����81�@8�(A���A�Y�A�ƐAM5,A��\@AԈ�B?�T�q�U�����?�����ؽ!�@�-ARuyA|�A_��A��Aȅ�A77�A[��AO�B̂B�B��B�B��B�8B�)&B�D/BA�:BG�CB	<Bx1BN�'Bu�B���A$�A�3B��Bh��A�)�A��A��A
�A���AzYB5JB�kB��BV\�A���A���A}��A��A���A
��A�p�A���A�j�A��A�uvA��<A�	Ak��@�KeyAttrFlagsi!<�KeyAttrDataFloatf

i�KeyAttrRefCounti���AnimationCurveL�s�-SAnimCurveS��	DefaultD�g����KeyVerI����KeyTimel��x�},�q��*f�v�t)Q^c��˹N�W\����Z����m�d#�����F^R�D]
]
7�N���m;m�0o���3/��y�y�f;L���2,
k���&�ֱ�&������Ŵ��XU:jB���&%����v,��'k����6L�=Ǽ>	JV���K�$��>]�
y�����d���Wfc�Cq#�oxoaٽM�Ur�Z�/��s�^���J���7�O�����/�����0�Og{$.I��;/��j�4.m�2�F��e�]]6X�4U����+�Щ�N[Hf���d�e�*ƹ��V|�e���h��]<28iA�
�Ú4�3*ʰXw�5E�az��e$Yt�2���a��	9&�h�';�?L�杊"g�c��Y��m^c�5����&���a�dY-N�����nǸd�E8���s�"f�ޡuM`�Xݾ�!���#,.Iq�}/^��-bN��p,��l0�>�����Q�9�G^b�*�U�ou؟u?�G�
��p9sg
{����g�’>��
�s�i.�^��c���8O�?�
�g8�B��x2ö��W��	���з
k|��XܭuK �}�c���,�rb��4�rV�w��S̻I6q�Qbe��Y"9��c�E����C��ܨG�ps��|2���Vb}��
��M!7�[�]�.��3��dۅ.��W���#"������5�4����;[�k�h�.��!
KeyValueFloatf�=�^�T�@m��@Y�9A���A���A�G�Ac��A ��A@��A�)�AO.PA���@���?FV������S��1|�H͒��2����V��,:��R���N��"��[[��I���7��e'�e��u��"�
�'ނ@(%&A䴐A��AA�BhW#Bݿ8B�@NBQB��:Bf4$B��Bv��A��A�t�AV�A>�?�M�li��[5X�e��������#J��Y��������=����q�T�����^y3���@�M[@sΥ@�b@�T@�a�����!����>L��?R7u@@��@
k$A��sA��A'y�AяA�Q�A<0�A��A1ΩA���A���A,)
B�#B��8BF<KB��[B�ohB�`lB
�fB�7XB�hIB�99Bޔ B��B"�A��A�ȑA�
oA��3A���@�j+@1j?�}�?(��?�m�?=��?k̒>0v�懰��M��6o��H\��Z"��=�~<J�&#}�ģ]�V���ݒ�y��>=MC?87�?O��?�B�?��?�:�?��a?H�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveL�F�-SAnimCurveS�	DefaultD�B�Q�*�KeyVerI�)��KeyTimel��x�},�q��*f�v�t)Q^c��˹N�W\����Z����m�d#�����F^R�D]
]
7�N���m;m�0o���3/��y�y�f;L���2,
k���&�ֱ�&������Ŵ��XU:jB���&%����v,��'k����6L�=Ǽ>	JV���K�$��>]�
y�����d���Wfc�Cq#�oxoaٽM�Ur�Z�/��s�^���J���7�O�����/�����0�Og{$.I��;/��j�4.m�2�F��e�]]6X�4U����+�Щ�N[Hf���d�e�*ƹ��V|�e���h��]<28iA�
�Ú4�3*ʰXw�5E�az��e$Yt�2���a��	9&�h�';�?L�杊"g�c��Y��m^c�5����&���a�dY-N�����nǸd�E8���s�"f�ޡuM`�Xݾ�!���#,.Iq�}/^��-bN��p,��l0�>�����Q�9�G^b�*�U�ou؟u?�G�
��p9sg
{����g�’>��
�s�i.�^��c���8O�?�
�g8�B��x2ö��W��	���з
k|��XܭuK �}�c���,�rb��4�rV�w��S̻I6q�Qbe��Y"9��c�E����C��ܨG�ps��|2���Vb}��
��M!7�[�]�.��3��dۅ.��W���#"������5�4����;[�k�h�.�d�!
KeyValueFloatf�Ҏ���¨���p	��L����v��lu�«|���؆�|�½���,[�º��Y������GS��`��L�³^��Nw�����8���Y���+}�ˋt�Տr��u��:x�^%z�Ą��2����]R�ʊ��Z��
�™w��߫~�_�w�S�t�GMt�5cs�(�o±'m���l³�l��m��p�a�u�5�y�M=~¹���q~�������žǂ���~��r�k0g�#�[��R��*P��0M��ZT’�Y���f�'Ls‰�~—m�‘���E�‡/�ªU�����3���w�]o�dkh�C+išxi�Yzj�T7k���k��lƒq�u�x�L�~�!�����ˆ�������ʄ�aJ��1|¥r��	@|’/w�ko��Bf½H_«�a��Ad�I�e�Mdx��Ʉ‘�ž���e��„2��aٍ�:���f�µ�}œs�Hn�
s�	�£���u��*-���^Ɩ²d����z&�ƒ}��xs���ܖ�N���ݖ¡�¼�­�Ž�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�z�AnimationCurveL���-SAnimCurveSX�	DefaultDp�KeyVerI���%KeyTimelp�<A���a(z�a��
KeyValueFloatfM=�AM=�AM=�A�KeyAttrFlagsi!@�KeyAttrDataFloatf

m�KeyAttrRefCounti�AnimationCurveLX�-SAnimCurveS��	DefaultD��KeyVerI����KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\p��5��5�@�4�H5���4�P�5���5��*5��m5�`�5�P�5��95�05��5�p`5��y5�05��5�@W5���5��a5���5���4�p�4� L5�P�5��@6�P`6� s4��5��I4��h5���5�#6� "5���4�`5��~5���5�@�5� �5�@X5���5���5�@95��b5�5�@z5��?5�@_5�@�5��5��v5��f5��l5��45� %5���5�`�4��N5��g5��F5���4���5��5�p5��+5��M5��85�@5�`�5�Pe5��-5�`�5��a5��z5�@�5�`?5� 5�0�4��p5�P5��c5��m5�0z5�65�h�5� 
5�@35��X5�P]5��;5���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti\��AnimationCurveL���-SAnimCurveSt�	DefaultD��KeyVerI����KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a$�}
KeyValueFloatf\p�H;2�p;2@�;2@/<2�;2��;2��;2@|;2@�;2@y;2@i;2�<2�;2��;2�;2	;2��;2�'<2�9;2`g;2<2��;2��;2�i;2��;2`�<2`<2`<2`V;2�%<2@
<2u;20�;2��;2�*<2x�:2�T;2X�:2��:2�;2�:2�x<20#;2�h;20C;2x4;2�7;2�w;2@p;2�;2��;2@.<2@�;2 �;2��;2@�;2 �;2�;2 l;2�;2`�;2��;2�<2�';2��;2��;2��;2@?;2`�;2��;2�b;2`�;2 �;2��;2��;2�h;2�@;2`<2@�;2@�;2�<2��;2`};2�m;2��;2 �;2 �:2<2�$;2`�;2��;2��;2N�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti\��AnimationCurveL���-SAnimCurveS�	DefaultD �5�0�KeyVerI���KeyTimel��x�P�u��o1��p7� p���d&��L���L�8(w���0;���pq qp�W�D�ٹ���!h#[��ܭ�V�1�ph#`���׽�GA_��(�bU
6Byj�#8D+[��q��w7�-7{&s_�̓�/%�PG����L��<���M@�QE�������~6��T���<{����4�?f
���n\�W}
?U4C�J�*l,qJ�%&.�頭��f!��{��y����%��nj�q�<F��3����ة�J��"�|��N~ČN#�lO�aX�f�O�҉����S�7��V*"VU@��������S�G��]������p�O�~l�*����z����F����Nx��������;P�Vt����Psc������������OP����Au�p�n���\�SJ�(Y0=����)��1,���
�_6>���$���
Efǫ}��~�4�r!�J������wm}s'�?`��4����Yjb��fQ�\|�o�_�-;�7w�@�3�	�41���
_���-���Sn����� �J�6�$����t{@�K�'��w���a�����o�
�Շ��Ղ?h	�򇡎� ���i'Gca�_g>��^Q3%�/a7s�N1�z���&:�x�~�1��TE>	j�j��j���o'6�$C�/E�_�UlL-0�yZ�L4�
�h,�Ú�w�0��	WB�>�k����%94��>q�[Pex� �q���x�y����8I��+9�R��™���m�,�󚅋���L�Bo�GJ�Y���5���4,�
�I��l���v���
�Dھ�u9�Y����x��T)��
Mbg��=.Bמ����]} �(WC{s6�z�"#&6kڠ�_�k4��Sĸ��w��A��%V���0�>�'�K{NUW
J������<���
KeyValueFloatf���?���P`�ku'�=������ܙ&��������eW��{"�-B��y���&�����j���L���Ҟ�+���R���G̼�	'��$X���q��ԉ��#������x٭�p����j��W���*���^�FzF�xoL��������[�������4���(��Y&���U���
��C��Fc��jg������%�������������s��%,�g�;�k�M��Zbµ�x�{Ĉ˜���`C���r�¸r��T׻��N����ž��¤q�·#��Md��
ú��>%�e�ýi�I� ��|&��=+�4�-�}�-�`�*�{+(�^j$� ���Hz���ü�Ñ}�����0�U����u�™���Y��ª.��������4��‰Z�Œ���^��z��.j�$W�m�G��0��'!šx£u����"[��D���_m��ԍ��}������@����M�2�)�G@�����q�_�:	�����������	�y	��BpI��1�Ҋ��@�¾@�vA�@��@���@;�A@��S��(������,��L��u�������"�������l��~���}��n������d��?���>�d���1�o�ƞ,�������\������f���)@��@⤤@���@�L�@0<�@�7�@��/A��HA�:]AV*nA�KeyAttrFlagsi!J�KeyAttrDataFloatf

w�KeyAttrRefCounti�FAnimationCurveL���-SAnimCurveS��	DefaultD��2���KeyVerI���KeyTimel��x�P�u��o1��p7� p���d&��L���L�8(w���0;���pq qp�W�D�ٹ���!h#[��ܭ�V�1�ph#`���׽�GA_��(�bU
6Byj�#8D+[��q��w7�-7{&s_�̓�/%�PG����L��<���M@�QE�������~6��T���<{����4�?f
���n\�W}
?U4C�J�*l,qJ�%&.�頭��f!��{��y����%��nj�q�<F��3����ة�J��"�|��N~ČN#�lO�aX�f�O�҉����S�7��V*"VU@��������S�G��]������p�O�~l�*����z����F����Nx��������;P�Vt����Psc������������OP����Au�p�n���\�SJ�(Y0=����)��1,���
�_6>���$���
Efǫ}��~�4�r!�J������wm}s'�?`��4����Yjb��fQ�\|�o�_�-;�7w�@�3�	�41���
_���-���Sn����� �J�6�$����t{@�K�'��w���a�����o�
�Շ��Ղ?h	�򇡎� ���i'Gca�_g>��^Q3%�/a7s�N1�z���&:�x�~�1��TE>	j�j��j���o'6�$C�/E�_�UlL-0�yZ�L4�
�h,�Ú�w�0��	WB�>�k����%94��>q�[Pex� �q���x�y����8I��+9�R��™���m�,�󚅋���L�Bo�GJ�Y���5���4,�
�I��l���v���
�Dھ�u9�Y����x��T)��
Mbg��=.Bמ����]} �(WC{s6�z�"#&6kڠ�_�k4��Sĸ��w��A��%V���0�>�'�K{NUW
J������<��
KeyValueFloatf������[��
�v�o-G�y�B�h�#��
�G����/5�[����@�]q���̡�
L���Z˜)�k�3��H��Z]�=p��W���ȍ��W��R��n}�Ъb‚H��9�L"�R_�A����X������ɗ���w��4�r0���z����b��'B6��R��o�R+��OY�¿���Zɟ¹(��%!��[Ѩ��@���u��%v�žF�����-�…g��lƮ�	���4�—N���Z���X���C��r)��A��l���9��ŭ� ׬�����"��X��ݡǜ��g��d����°���w^��=Ӫ��x����”������x��‰���0��j��a���T���Ȧ��9��}���U��P$�����?���g��!Ӭ�9������f��EF�¯5�����”�������}��5���F��=���A%��K��“1���������u�x�X�V�<®� �Ta
²������̱��ܔ�Ƅ��t�r�_��R��4c�<���M�����X����JG�*�7��Wm���T��������	œ<!�D4“�G��;^™�n�Нt�@r�%�j’@`½�O���6•*��0�m��E����������@1���^��vim�<\�z6U��BH�;i9�"-�l��E�����8;������KeyAttrFlagsi!KeyAttrDataFloatf

9KeyAttrRefCounti�AnimationCurveL�g�-SAnimCurveS�	DefaultD��|@�KeyVerI���KeyTimel��x�P�u��o1��p7� p���d&��L���L�8(w���0;���pq qp�W�D�ٹ���!h#[��ܭ�V�1�ph#`���׽�GA_��(�bU
6Byj�#8D+[��q��w7�-7{&s_�̓�/%�PG����L��<���M@�QE�������~6��T���<{����4�?f
���n\�W}
?U4C�J�*l,qJ�%&.�頭��f!��{��y����%��nj�q�<F��3����ة�J��"�|��N~ČN#�lO�aX�f�O�҉����S�7��V*"VU@��������S�G��]������p�O�~l�*����z����F����Nx��������;P�Vt����Psc������������OP����Au�p�n���\�SJ�(Y0=����)��1,���
�_6>���$���
Efǫ}��~�4�r!�J������wm}s'�?`��4����Yjb��fQ�\|�o�_�-;�7w�@�3�	�41���
_���-���Sn����� �J�6�$����t{@�K�'��w���a�����o�
�Շ��Ղ?h	�򇡎� ���i'Gca�_g>��^Q3%�/a7s�N1�z���&:�x�~�1��TE>	j�j��j���o'6�$C�/E�_�UlL-0�yZ�L4�
�h,�Ú�w�0��	WB�>�k����%94��>q�[Pex� �q���x�y����8I��+9�R��™���m�,�󚅋���L�Bo�GJ�Y���5���4,�
�I��l���v���
�Dھ�u9�Y����x��T)��
Mbg��=.Bמ����]} �(WC{s6�z�"#&6kڠ�_�k4��Sĸ��w��A��%V���0�>�'�K{NUW
J������<j�
KeyValueFloatf�����@˂�@q�@2-7?�� ����[̿,�����[Ϳӕg� 	�?�֟@��A��<A�yA�N�A�&�A��A�RBCBNC
Bl�
BY,
B�5B!u�AC��A�]�A�~�A�Y�A�Y�A��\A��A���@!�@���@o��@�LA��A|�AT�A,L;A7ukA���AE2�Axh�As �Ax�A��BdB��"B� .B�{;B��JB)�\B��pBɫ�B�ۏB�B�G�Bf�BW�B���B��B�j�Bݬ�B��Bz�C��C��
C��CqUC��C��Ck�#C�T)C��-C{Z0C�(1C�_/C�-Co�*Cb'&C�� CwCX�C��C�wC�Ce$CRC�P�BI��B<��B���B���B�M�B���B�B8Z�Bd��B���Bߤ�BJOnBB_B�GB�
8B=2#B2BLCB���A�R�A�x�A���A	BЈB�fB� B�%�A���A���A���A��A�ՐA6{qA"#CA��AD	�@?WI@O��?��?��:��K�k�D��˖�P}v>`�$?2�?�G+�s��?M�7@�T�@ЇA�O&A��ZA�]�A�5�AU
�A�c�Ap��A�9�A)��A�t�Aʻ�A�8�A��Am��A�}�A��A��ZA�/A�AK�@0$a@��@��?F[�>X�fϐ�E���6%��.��׶��=�������KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS^	DefaultDvKeyVerI��%KeyTimelp�<A���a(z�a�
KeyValueFloatf��A��A��AKeyAttrFlagsi!FKeyAttrDataFloatf

sKeyAttrRefCounti$AnimationCurveL�c�-SAnimCurveS�	DefaultD�KeyVerI���KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�}
KeyValueFloatf\p@�J���;��|>��}F�@8:��&K��(I� :@��aG�0O��G�P_G���C� E�`J�`,E�$;��S9���<��-T���K���G��?=��0�`FE���U��S�`nZ�@�5�`�Q� J6���E���M���a��7��f@���:���=��~?�`�@� 39��A���!�`>� �Q�@H�@P���F� �E��C���J�@�L�uG�@�F���E� RC��B��5H���@��C�`�E���C��M<��$G��PE��d>� @�@;��r@��N>� �=�`�F��2;��E��IH�0oI���J���F���A�0>�=M�@_@�peG��VJ���H�0D��kH���B���A��G�0�D��WB��KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCounti\�AnimationCurveL8��-SAnimCurveSz	DefaultD�KeyVerI���KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a*}
KeyValueFloatf\p0Z0D�0�0y1�j0@�0��0��0ڽ0"�0��0��0ɥ0u�0@k�0@1��0u0���0U�0�k�0r�0<�0��0��0��0ݪ0�0)�0���0`b1 X�0���0�ij0t%0@�1���0@�1�;1�6�0@�;1'0 �1�0��1@f
1@��0���0`��0��0��0��1��0���0�0��0��0*�0p�0��0�0�0>1��0�0���0�g�0�0���0@��0���0@8�0���0���0;�0X�0Ӗ0�S�0�
�0�0?�0��0/�0�0S�0�0�0�*�0"L0j�0�o1�0TKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti\�!AnimationCurveL���-SAnimCurveS	DefaultD��S�6KeyVerI�G�KeyTimel^�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��rHW �TvWsw6�W�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a� �
KeyValueFloatf^x
���i���&��,��Z1���F�=-R��|M��x:��"0��%�����h�j��Hɝ>��z?`Ҵ?fj�?�z�?���?g��>VL�=���x4�b�>���J�p�O�T�?�~$1���#�:�-{ݿ����^C�44|�b�$>Cq�>@��>
��>]yJ>�����U->�U?k�C?�� ?�?�=?ڌ ?�/>��ž�
s�����RϿ�໿�������X$��d�$��޾�C.��2�Њ���\ۿ��	�mPȿ�՘�4}=�@">c
5>�?ɔ?���?'�
@��@7I@E�?[�<?ga��n�;�Vdn��xS��@N����'q��Ԁӿ,ڿ>Կ<'�	<�������5 ���R��!KeyAttrFlagsi!J!KeyAttrDataFloatf

w!KeyAttrRefCounti^@'AnimationCurveL��-SAnimCurveS�!	DefaultD �@�!KeyVerI�%�KeyTimel^�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��rHW �TvWsw6�W�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a�&�
KeyValueFloatf^x�xF@���@�.A�IA�\-AzP?AGnGAaGA 4.A*A�A��@Vr@q�?�'��ÿ�!���=��u/��:"�iݙ�d
@k��@c�A��-A�DA��QAH�NA��GA��:At�$A��	AhT�@yk@��m?�O迵?��mԦ����i�.�]A����)���]��Gw�B�j�ɛA�C��"N2���?SIY@(@�@0��@�A�)�@�6�@��@�:A��@Z��@�"�@��@~��@�A��(A�A���@s��?Ղn���˿` ��I�����溢�}S��\ˮ��R��X/���2?�$2@��E@�x@�S@�>@i�9@��f@]�t@F�i@�i@��w@���@0;�@�΋@�0�@��r@�&KeyAttrFlagsi!'KeyAttrDataFloatf

3'KeyAttrRefCounti^�,AnimationCurveL��-SAnimCurveS�'	DefaultD�����'KeyVerI��*�KeyTimel^�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��rHW �TvWsw6�W�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a^,�
KeyValueFloatf^x�D(���:�d����F�ͮ5��,)�~�0�^�.�1�jrc�?�@���@��@5�A�h�@I��@1ɀ@��a@�@j@�.�@av�@?s�@�鼗k��^�C�UDd��7��_����v�@-%
A�<A��]A8cA:�VAB&QA�YA0�\A�[A=DjA�8rAedjAPXAK�TA�[\A�EA��A��@�f@G��fa�c%���e0�.g��0��z���]������{��b������������/��;Dž@��(Aߊ"A*�A��JA9}8A)]�@m�f@Ӥ?��=g%۽�;��aEr>WS�?C�W@�lP@�%�?�r�a����6�>?Wڠ>M�C�S��f��?bB@�Ȓ@6��@�E�@��@�,KeyAttrFlagsi!�,KeyAttrDataFloatf

�,KeyAttrRefCounti^t.AnimationCurveL8��-SAnimCurveSR-	DefaultDj-KeyVerI��-%KeyTimelp�<A���a(z�a�-
KeyValueFloatf��@��@��@.KeyAttrFlagsi!:.KeyAttrDataFloatf

g.KeyAttrRefCounti�/AnimationCurveLx��-SAnimCurveS�.	DefaultD�.KeyVerI�/%KeyTimelp�<A���a(z�aN/
KeyValueFloatf�RH��RH��RH�x/KeyAttrFlagsi!�/KeyAttrDataFloatf

�/KeyAttrRefCountid1AnimationCurveL�p�-SAnimCurveSB0	DefaultDZ0KeyVerI��0%KeyTimelp�<A���a(z�a�0
KeyValueFloatfrhN�rhN�rhN��0KeyAttrFlagsi!*1KeyAttrDataFloatf

W1KeyAttrRefCounti�5AnimationCurveL8f�-SAnimCurveS�1	DefaultD�m@�1KeyVerI�4KeyTimelBp�<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��X25
KeyValueFloatfB�k@Ǔ(@�lH@�Wk@�@�̒@$>�@C�@1�@�{@��T@��)@9y�?��?�`8?(D�>�0���᣽��(>��+?	I�?��	@?m>@�io@��@#A�@	+�@g�@�@좁@��Y@�*@P;�?�u�?~q?9�_=��+[��܃��#=>��?>��?͡�?tA�?�@>"(@y�9@x�K@*�]@�n@XD@��@na�@+��@�,�@b�@���@t��@p��@c|@��b@W�I@
�3@|�#@��@�k@\5KeyAttrFlagsi!�5KeyAttrDataFloatf

�5KeyAttrRefCountiB<:AnimationCurveL���-SAnimCurveS&6	DefaultDI�,�>6KeyVerI�o8KeyTimelBp�<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�9
KeyValueFloatfBH�g��d��!]�GU���M�p�G���D���E���I���P��Y���b��el���u��M~��x����������:0����K%u���i��%^��US��vJ���D�*�B��'E��PH�F�N�G�W�Szb��m��x�Y���{ރ�a��.<������I��-�����z�tt���m���h�@�d�[�`���\�`qX��jT�M�P�,M��.J�F�G�hF��!E��UE��G���K�'Q�z�V��\�O�a�s�e��|g�H�g��9KeyAttrFlagsi!:KeyAttrDataFloatf

/:KeyAttrRefCountiB�>AnimationCurveLH}�-SAnimCurveS�:	DefaultD�x�<��:KeyVerI��<%KeyTimelCp�<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�X>
KeyValueFloatfC�K��|����������$	�U*�#��A�
�‰x�DZ¢-���r��FT������Oq���������"��Σ���M���U�����H'‡P���m�ӝ���u�‰��m�������7������/x��䄲������(���׷�]���h���5��6�����������x��4c��Qj���* v�+|	�H¶C�/��r�s³j�~�
�,N��J�U���t��V���p���K���K��@>KeyAttrFlagsi!z>KeyAttrDataFloatf

�>KeyAttrRefCountiC,@AnimationCurveL�6�-SAnimCurveS
?	DefaultD"?KeyVerI�[?%KeyTimelp�<A���a(z�a�?
KeyValueFloatf�'E@�'E@�'E@�?KeyAttrFlagsi!�?KeyAttrDataFloatf

@KeyAttrRefCounti�EAnimationCurveL�v�-SAnimCurveS�@	DefaultD�@KeyVerI��C�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a2E}
KeyValueFloatf\p�VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ��VJ�\EKeyAttrFlagsi!�EKeyAttrDataFloatf

�EKeyAttrRefCounti\KAnimationCurveL\�-SAnimCurveS&F	DefaultD>FKeyVerI��H�KeyTimelT�p�<AX�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�_���`�ll`0�/�`��#a���a(z�avJ]
KeyValueFloatfTP{H�{H�{H�zH�{H�{H�{H�zH�{H�{H�zH�{H�{H�{H�zH�{H�{H�{H�{H�{H�{H�{H�zH�{H�{H�{H�{H�zH�{H�zH�zH�{H�zH�{H�{H�{H�zH�zH�zH�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�{H�zH�{H�{H�zH�{H�{H�{H�{H�{H�{H�zH�{H�{H�{H�{H��JKeyAttrFlagsi!�JKeyAttrDataFloatf

KKeyAttrRefCountiT�LAnimationCurveLh��-SAnimCurveSjK	DefaultD��I@�KKeyVerI��KEKeyTimel8�|b.E��AhH8o�H���I�l�{I���Q��FVL)
KeyValueFloatf�<�@�_�@�3�@��@�ܡ@�ϡ@��@HLKeyAttrFlagsi!�LKeyAttrDataFloatf

�LKeyAttrRefCounti�PAnimationCurveL�T�-SAnimCurveSM	DefaultD��?*MKeyVerI�#O�KeyTimel;�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$NXTK�O�KP�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��-X6P�
KeyValueFloatf;����?���?U�?yή?[�?^q�?���?E��?�W�?p�?eg�?8m�?|S�?~D�?=k�?0�?��?�֦?ב�?|�?{ �?#x�?�ޯ?	�?~�?��?�v�?��?�j�?�-�?dv�?	p�?�G�?�*�?�H�?3ѧ?7�?犧?:�?vϨ?>��?���?3�?姭?4E�?�ڰ?yO�?���?Wv�?w��?��?-�?��?���?���?o�?W��?i7�?���?`PKeyAttrFlagsi!�PKeyAttrDataFloatf

�PKeyAttrRefCounti;LUAnimationCurveLȓ�-SAnimCurveS*Q	DefaultD��<�BQKeyVerI�{S%KeyTimelCp�<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�X�T
KeyValueFloatfC4����'�����њŠ>”z�
Q�`��r�l�~���e8���W��j��H����ٷ��;���ݯ��{���������e������y��o�
�ɖ���d)�)��g_’(�:�������G,��
���'��������#(��8������
�������X��*��oc��$���L��r������g�J�Ÿa
�8��OI�)���¨���%	�We–Q������0����(��8���4���4����TKeyAttrFlagsi!UKeyAttrDataFloatf

?UKeyAttrRefCountiC�VAnimationCurveLȇ�-SAnimCurveS�U	DefaultD�UKeyVerI��U%KeyTimelp�<A���a(z�a&V
KeyValueFloatf�@�@�@PVKeyAttrFlagsi!�VKeyAttrDataFloatf

�VKeyAttrRefCountih\AnimationCurveLh��-SAnimCurveSW	DefaultD2WKeyVerI�3Z�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�[}
KeyValueFloatf\p
�'��'��'��'��'��'��'��'�4�'�-�'�
�'��'��'��'��'��'��'�
�'��'��'��'��'��'��'�
�'���'��'��'�B�'�&�'�;�'�.�'�
�'���'���'���'�/�'�0�'��'���'���'���'���'��'�.�'�.�'��'���'���'�
�'���'���'�
�'�0�'�*�'�,�'�)�'��'���'�E�'�-�'��'��'�)�'�-�'��'��'��'��'��'��'��'��'��'��'���'���'��'��'�2�'�0�'�0�'�/�'��'��'�0�'�-�'��'���'���'��'��'��[KeyAttrFlagsi!.\KeyAttrDataFloatf

[\KeyAttrRefCounti\bAnimationCurveL���-SAnimCurveS�\	DefaultD�\KeyVerI��_�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�ana}
KeyValueFloatf\p�E�5?C�5@�5�C�5�[�5`E�5�S�5�T�5�V�5(M�5jH�5�Q�5�O�5TN�5�K�5 W�5_H�5J=�5YS�5/Q�5G�5JG�5�T�5�J�5�A�5h�5֡�5�o�5�,�5Q�5+I�5mJ�58J�5"M�5�=�5�a�5�Q�5�S�5:X�5jB�5�U�5�;�5�D�5�I�5<T�5�O�5kU�5�K�5�M�5H�5fL�5�Y�5�X�5pT�5�G�5�J�5(M�5�G�5]N�5�K�5R�57$�5�K�5F�5�H�5�G�5J�5JK�5I�5�K�5IH�5dK�5RM�5�C�5�I�5sL�5�H�5�P�5�N�5 R�5uY�5*N�5�L�5>R�5I�5�Q�5wB�5�_�5�C�5VR�5�L�5�L�5�aKeyAttrFlagsi!�aKeyAttrDataFloatf

�aKeyAttrRefCounti\HfAnimationCurveL��-SAnimCurveSbb	DefaultD��@zbKeyVerI��d�KeyTimel>�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`��N�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�e
KeyValueFloatf>�G�@�<�@4��@�&�@�v@n�b@�8V@�@S@�X@)9b@�;p@�Z�@�@���@�f�@���@�V�@ %�@,�@��@���@\�@F6~@|�k@�p\@#_R@kO@�@S@�X@(9b@�;p@�Z�@�@���@�f�@���@�V�@�G�@�G�@�G�@�G�@��@�u�@�x�@��@��@��@ko|@�n@�a@��X@��S@.%T@09\@e[j@jo|@�,�@���@e��@�@h#�@�G�@�eKeyAttrFlagsi!fKeyAttrDataFloatf

;fKeyAttrRefCounti>�jAnimationCurveL؛�-SAnimCurveS�f	DefaultD`���?�fKeyVerI��h�KeyTimel>�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`��N�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�i
KeyValueFloatf>�3T�?���?���?�t?� K?�2)?�Q?62?ˋ?�(?�5@?�\?��z?�C�?T��?q�?{��?��?v��?2Z�?��?F�z?YVX?�a8?
?��?��?72?ɋ?�(?�5@?�\?�z?�C�?U��?q�?z��?5T�?5T�?2T�?4T�?�	�?μ�?j �?��?Cb�?��o?NEU?ˊ<?�q'?�?H�?-�?�?�6?IEU?P�w?�Ō?��?���?��?3T�?jKeyAttrFlagsi!JjKeyAttrDataFloatf

wjKeyAttrRefCounti>�nAnimationCurveL�|�-SAnimCurveS�j	DefaultD���;��jKeyVerI�mKeyTimel?�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`��N�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�X.n	
KeyValueFloatf?������������@5��1O���R���N��22�������ז��Π�$������;��:4��f���C]�������F��8���M������o���ٔ����������`x��32�������ז��Π�$������;��:4��f���C]����������������������C���&�����0����z���}���K������s��߅���Ԍ�(���Ơ���}��i���$���J���0��+�����������XnKeyAttrFlagsi!�nKeyAttrDataFloatf

�nKeyAttrRefCounti?DpAnimationCurveL�B�-SAnimCurveS"o	DefaultD:oKeyVerI�so%KeyTimelp�<A���a(z�a�o
KeyValueFloatf}��@}��@}��@�oKeyAttrFlagsi!
pKeyAttrDataFloatf

7pKeyAttrRefCounti�qAnimationCurveL��-SAnimCurveS�p	DefaultD�pKeyVerI��p%KeyTimelp�<A���a(z�aq
KeyValueFloatf�¿��¿��¿�HqKeyAttrFlagsi!�qKeyAttrDataFloatf

�qKeyAttrRefCounti4sAnimationCurveL(��-SAnimCurveSr	DefaultD*rKeyVerI�cr%KeyTimelp�<A���a(z�a�r
KeyValueFloatf)��)��)���rKeyAttrFlagsi!�rKeyAttrDataFloatf

'sKeyAttrRefCounti�wAnimationCurveL�#�-SAnimCurveS�s	DefaultD�N��?�sKeyVerI��uKeyTimelBp�<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��Xw
KeyValueFloatfBtj�?&�?V!�?^%�?F��?J�@�@@�O@f��??I�?��?��?�<�?u�u?�F?F� ?�	?U�?*�?�B?�{?��?�9�?q�?;+�?��@؎	@�$@e:@�?�z�?���??ԑ?:�e?}�1?�'
?���>+;?ڪ?{W ?�D?��n?�h�?��?{�?���?���?F��?�&�?+L�?���?�'�?a2@�@@$@F9@��@e�@S��?JL�?�N�?���?,��?w;�?⟴?tj�?,wKeyAttrFlagsi!fwKeyAttrDataFloatf

�wKeyAttrRefCountiB|AnimationCurveLx��-SAnimCurveS�w	DefaultD����xKeyVerI�?zKeyTimelBp�<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��Xn{
KeyValueFloatfBT���׉�������������L��qy���^��`���֮������6��Oq��K����������G�����-��܂��e����@���{���l��ߪ������V������V��F���������������1�����������PP��7����������Z��6����m��e^���}��%����Ƶ�����a��]���oΫ�����ڂ���{����� ������E��������&b��uǹ��P��썽�T����{KeyAttrFlagsi!�{KeyAttrDataFloatf

�{KeyAttrRefCountiB��AnimationCurveL�=�-SAnimCurveSb|	DefaultD�D8:�z|KeyVerI��~%KeyTimelCp�<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�X�
KeyValueFloatfC$��������d��Q����������p��\�l��*���p/��'��ks���j��m��Τ��W&��7ϟ�@W��ɰ��[��G����������m»�›)„]���¼D��&����W��(����`�����j����ʞ�E���U������{���۴�����b��S4���R������H�������6����[���j��y�·¡�¹^��2�S*�K�»������.��]{���������$���$����KeyAttrFlagsi!J�KeyAttrDataFloatf

w�KeyAttrRefCountiC��AnimationCurveL���-SAnimCurveSڀ	DefaultD�KeyVerI�+�%KeyTimelp�<A���a(z�a^�
KeyValueFloatf��@��@��@��KeyAttrFlagsi!KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL��-SAnimCurveSR�	DefaultDj�KeyVerI�k��KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�}
KeyValueFloatf\p������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������,�KeyAttrFlagsi!f�KeyAttrDataFloatf

��KeyAttrRefCounti\ЋAnimationCurveL8N�-SAnimCurveS��	DefaultD�KeyVerI���KeyTimel=�p�<Ap�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�_���`�ll`0�/�`��#a���a(z�a2�
KeyValueFloatf=���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d���d�\�KeyAttrFlagsi!��KeyAttrDataFloatf

ËKeyAttrRefCounti=܏AnimationCurveLH��-SAnimCurveS&�	DefaultD���?>�KeyVerI�/��KeyTimel:�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(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��M�Շ�OXTK�O�KP�QҦPPЕQ���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X>��
KeyValueFloatf:���?�%�?!�?.��?U��?{��?N��?��?���?+�?N��?h��?޵�?Z��?�?�Q�?p��?���?w��?]Y�?���?>m�? �?���?��?�
�?0�?`��?^��?���?���?i��?t��?�[�?��?@��?B�?r��?���?d�?�b�?���?��?gi�?�$�?���?8��?���?&k�?�&�?��?��?x�?h8�?���?b�?t�?:��?h�KeyAttrFlagsi!��KeyAttrDataFloatf

ϏKeyAttrRefCounti:$�AnimationCurveL��-SAnimCurveS2�	DefaultD����?J�KeyVerI�c�KeyTimel?�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`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T0��OU�>��U��FV(<
cVк;Vx9�W �TvW�6�Wp��-X��	
KeyValueFloatf?��?E?��F?��K?�UQ?�qV?v}Z?!�[?d�[?s�Y?o�V?�R?^vM?��G?�zB?Ŗ=?�Z:?[R8?��7?��9?9�<?��B?��H?�iO?OT?��W?��Y?�zZ?$aY?��W?EU?Q?3qL?�G?�B?k�>?�|;?��9?��9?�;?�$=?��??oyB?(E?�8G?�H?��J?��L?��N?=�P?�S?�^V?H�X?/Z?�[?#p[?�JZ?�DX?ݎT?�mP?�PL?��H?H�F?��E?��KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti?��AnimationCurveL�A�-SAnimCurveSz�	DefaultD��<���KeyVerI�˖%KeyTimelCp�<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�X��
KeyValueFloatfCl�������D����n�ˆ�Ž�� ;¥���Z�����W���8���������*���f��R����������~���������A�2œ�Sn‹��h
����Y��������$������@S�������HJ������0��d���Ѕ��T������U��Z1���v�������!�^�Ž��6�
�	
�α�*��Sg�u?
³y	���ڨ���)��P����������a���a���(�KeyAttrFlagsi!b�KeyAttrDataFloatf

��KeyAttrRefCountiC�AnimationCurveLX��-SAnimCurveS�	DefaultD
�KeyVerI�C�%KeyTimelp�<A���a(z�av�
KeyValueFloatf�XE@�XE@�XE@��KeyAttrFlagsi!ڙKeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLx}�-SAnimCurveSj�	DefaultD��KeyVerI����KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�}
KeyValueFloatf\p��2�D�2L�2�ֈ2 D�2@��2 ��2�2�_�2���2�Ĉ2�"�2�2���2��2��2�@�2���2���2tg�2C�2�~�2�v�2((�2�?�2�#�2�C�2��2hz�2Pӊ2|*�2<�2���2���2आ2���2�2�2Џ�2h��2 *�28|�2�Z�2�Ԇ2��2М�2�2��2 ��2Ht�2�ҋ2�k�2�2�%�2xc�2�LJ2t�2П�2|��2�3�2�ˆ2���2Ԅ�2�a�2�I�28ц20�24̅2��2��2�C�2�(�2x��2�ۇ2�|�2 Ĉ2,�2��2`�2�
�2|�2���2�O�2�ˆ2���2�Z�2|)�2�/�2ɇ2ؼ�2�v�2x�2D�KeyAttrFlagsi!~�KeyAttrDataFloatf

��KeyAttrRefCounti\\�AnimationCurveL���-SAnimCurveS�	DefaultD&�KeyVerI�'��KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\p�ܵ��ܵ��ܵv�ܵ��ܵ��ܵ��ܵ��ܵ��ܵ��ܵ��ܵ�ܵ��ܵ�ܵ�ܵc�ܵ��ܵ �ܵ(�ܵZ�ܵ��ܵ+�ܵ{�ܵ��ܵ��ܵ��ܵ�ܵ~�ܵ6�ܵ;�ܵD�ܵ��ܵ��ܵ��ܵ�ܵ��ܵ`�ܵh�ܵ�ܵ�ܵx�ܵ<�ܵ��ܵ��ܵ~�ܵ��ܵh�ܵ]�ܵ#�ܵY�ܵ��ܵ��ܵ��ܵ��ܵ��ܵr�ܵd�ܵ2�ܵM�ܵ��ܵ��ܵ6�ܵ0�ܵA�ܵ��ܵ�ܵ��ܵ�ܵ��ܵQ�ܵ��ܵp�ܵ��ܵ��ܵ��ܵ��ܵ��ܵ>�ܵ�ܵ�ܵk�ܵ��ܵm�ܵ��ܵM�ܵ��ܵ.�ܵ��ܵ��ܵ��ܵf�ܵh�ܵ�KeyAttrFlagsi!"�KeyAttrDataFloatf

O�KeyAttrRefCounti\��AnimationCurveL�k�-SAnimCurveS��	DefaultD����?ʥKeyVerI�ۧ�KeyTimel>�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`��N�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��
KeyValueFloatf>���?�8�?��?�;�?�_�?ȅ�?��?*��?2U�?��?���?��?Y/�?�	�?s��?O��?P�?��?��?p��?�v�?[
�?�#�?�,�?H��?���?���?,��?1U�?��?���?��?X/�?�	�?p��?P��?P�?��?��?N��?��?��?�	�?���?
�?�?Ni�?i��?+��?���?�ժ?��?�V�?/w�?�)�?e��?K��?�z�?]�?���?���?��?$�KeyAttrFlagsi!^�KeyAttrDataFloatf

��KeyAttrRefCounti>��AnimationCurveLX��-SAnimCurveS�	DefaultD`�
�?�KeyVerI���KeyTimel<�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=�NPЕ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��
KeyValueFloatf<��oH?�???3*?�+?���>�o�>��>R��>ez�>�/�>��>�?��?+�&?y�4?��??�F?�0H?��B?��7?�B(?=�?<b?4��>̂�>��>�r�>R��>bz�>�/�>��>�?��?)�&?z�4?��??�F?�oH?�oH?�G?�zA?�`8?��,?�6?��?ƿ?��>-��>]��>�b�>N/�>)�>�1�>��?�?&'?��6?c�B?�-H?oH?H�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti<�AnimationCurveL�y�-SAnimCurveS�	DefaultDck<�*�KeyVerI�C�KeyTimel?�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`��N�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�Xf�	
KeyValueFloatf?�[�����B���<��������弐�z���v���f��:���Rj�����|��5����v������])��\������g���X��Ϝ���=��:������7ԋ�z���v���f��:���Rj�����|��5����v������[��[��[��[��F������/����V��M���Q{��CT��W����'������g��;=�����F��DT��E��������e������&��[��[����KeyAttrFlagsi!ʱKeyAttrDataFloatf

��KeyAttrRefCounti?|�AnimationCurveL���-SAnimCurveSZ�	DefaultDr�KeyVerI���%KeyTimelp�<A���a(z�a޲
KeyValueFloatf�F�@�F�@�F�@�KeyAttrFlagsi!B�KeyAttrDataFloatf

o�KeyAttrRefCounti�AnimationCurveL���-SAnimCurveSҳ	DefaultD�KeyVerI�+�-KeyTimelD p�<A�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�_���`�ll`0�/�`��#a���a(z�ab�
KeyValueFloatfD�	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A��	A���KeyAttrFlagsi!ƷKeyAttrDataFloatf

�KeyAttrRefCountiDx�AnimationCurveL8o�-SAnimCurveSV�	DefaultDn�KeyVerI���%KeyTimelp�<A���a(z�aڸ
KeyValueFloatf�΁?�΁?�΁?�KeyAttrFlagsi!>�KeyAttrDataFloatf

k�KeyAttrRefCounti�AnimationCurveL#�-SAnimCurveSι	DefaultD�����KeyVerI��KeyTimelBp�<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��XF�
KeyValueFloatfB78�w��Q�;b�1�#�I�.��5�lA4�ۏ-�Z�"����X<�.���ʿf���⦘������(������烫�}�˿P�ɫ�{�� ,���5�@�8���4�V�/�39%�m��'����翖fſv����Б��ц����ԅ������������V���vҿ����j���?���
����YS��G$��b*��^/�L�2�~�4�w�4���/���'����7���_��%�����N��78�p�KeyAttrFlagsi!��KeyAttrDataFloatf

׽KeyAttrRefCountiBP�AnimationCurveL2�-SAnimCurveS:�	DefaultD�+��?R�KeyVerI���KeyTimelBp�<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��
KeyValueFloatfB]��?7�?�?;�[?7�?�T�>}
>��=7Dg>s��>�g%?�yk?�k�?m�?��?�z�?��@�@>��?@|�?�۾?'ŕ?�V?�%?��>kH�=�V=t��=!4N>��>�v?��f?��?���?A^�?A��?Ż@3"@�@��@R@���?C.�?.��?��?�w�?�m�?���?�]�?ˠ`?$3?�A?���>���>�,>�v�=�>+;m>D��>�_%?��f?`��?h�?{�?3�?]��?��KeyAttrFlagsi!�KeyAttrDataFloatf

C�KeyAttrRefCountiB��AnimationCurveL���-SAnimCurveS��	DefaultD��9���KeyVerI���%KeyTimelCp�<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�X*�
KeyValueFloatfC���������5��b6��c���	­�
��3
���	�U��-���i���g��,	������{������_��J����ر�h����:���a�����M��[	‚��Z�
�0�
�N����������E��f��	
�����>0��V�����U=��8���˻�K����6��FL��d7������'���������†�Ž^
�n�l�
��S
�T�
��5�Lj²���s���]��&��'����������T�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiC@�AnimationCurveLD�-SAnimCurveS�	DefaultD6�KeyVerI�o�%KeyTimelp�<A���a(z�a��
KeyValueFloatf���@���@���@��KeyAttrFlagsi!�KeyAttrDataFloatf

3�KeyAttrRefCounti��AnimationCurveLx��-SAnimCurveS��	DefaultD��KeyVerI����KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�aF�}
KeyValueFloatf\pu��9]��9Z��9X��9[��9Y��9z��9���9Z��9V��9W��9x��9z��9��9u��9ڙ�9���9`��9a��9N��9T��9W��9}��9^��99��9Y��9T��9՘�9@��9R��9#��9��9��9���9��9}��9b��9��9���9}��9d��9}��9w��9ߘ�9L��9u��9N��9X��9X��9Z��9v��9W��9X��99��9Z��9z��9a��9v��9`��95��9;��9w��9]��9W��9Y��9^��9]��9a��9\��9]��9��9��9��99��9W��9V��9U��9x��9{��9]��9V��9\��98��9V��9W��9Z��9V��9\��9[��9X��9Z��9{��9p�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti\��AnimationCurveLe�-SAnimCurveS:�	DefaultDR�KeyVerI�S��KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\pv>.�v>.�u>.�u>.�u>.�u>.�u>.�u>.�u>.�v>.�v>.�u>.�u>.�v>.�u>.�u>.�v>.�v>.�u>.�u>.�v>.�u>.�u>.�u>.�u>.�v>.�v>.�v>.�u>.�v>.�u>.�v>.�v>.�v>.�v>.�u>.�u>.�u>.�u>.�v>.�u>.�v>.�u>.�u>.�u>.�u>.�u>.�u>.�u>.�v>.�v>.�v>.�v>.�u>.�u>.�u>.�u>.�v>.�u>.�v>.�u>.�v>.�u>.�v>.�u>.�v>.�u>.�u>.�v>.�v>.�u>.�u>.�u>.�v>.�u>.�v>.�v>.�u>.�u>.�u>.�u>.�u>.�v>.�v>.�u>.�u>.�v>.�u>.�v>.�u>.�u>.�u>.��KeyAttrFlagsi!N�KeyAttrDataFloatf

{�KeyAttrRefCounti\�AnimationCurveLH��-SAnimCurveS��	DefaultD�
T���KeyVerI����KeyTimel�p�<A���A���Ah�FPB
�B�y��E���AF�q~H��AhH8o�H���Ip�k�L_/Mh\��M�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T�>��U��FV(<
cVк;Vx9�W �TvWv�u
KeyValueFloatfho�B��pC�KBE��%G���H��4G�zNF��F��G��H��sI���H��gG�f�E�U{D���E���F��0H�FcI��jJ��K���I��H�jG���E��/D���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveL�w�-SAnimCurveSj�	DefaultD��TԿ��KeyVerI�#��KeyTimel0�p�<A���A���Ah�FPB
�B���C`�cC�DX�vD���D�|b.EP�%�E�y��E���AFHwp�F@�G�q~H��AhH8o�H���I�l�{I0�O�I��]FKxd!�K ���K�a�YLp�k�L_/M���lMh\��MW�7O�Շ�O�QҦPPЕQHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T�>��U��FV(<
cVк;Vx9�W �TvW�6�W
��
KeyValueFloatf0�ԧ���6���#���t���`���&��C6���l�����+$���������
`������&��m]���ˠ�o/��;L���~���,��ƽ��B��_%��n��S-���������.���O��.���^�������c����������)��g���������B`��������������mҫ�����k,��4�KeyAttrFlagsi!n�KeyAttrDataFloatf

��KeyAttrRefCounti0 �AnimationCurveLH�-SAnimCurveS��	DefaultD d5?��KeyVerI�O�%KeyTimelCp�<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�X��
KeyValueFloatfC!��� ^�	�����.j�:@!��%£�$��!����'��P�	¶R˜u��P������G�����������b��)	���=ŒJ
ª��� ¯�%��S'�S/%��B"�z+¥�º
�)���/���A���!����������Z7��`!��pX��Q���������n����B�����Dc’%
������
��"��3�!�F�#�](%�S�$¹'"�kJ�
�@5©p	��|�='��������������KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCountiC��AnimationCurveL؀�-SAnimCurveSv�	DefaultD��KeyVerI���%KeyTimelp�<A���a(z�a��
KeyValueFloatf�_Y@�_Y@�_Y@$�KeyAttrFlagsi!^�KeyAttrDataFloatf

��KeyAttrRefCounti<�AnimationCurveL88�-SAnimCurveS��	DefaultD�KeyVerI���KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\p����]����������r������V���煣�N���6���Y���Y���T���������������А��I���َ��d|��̃��ц��p������X����!��[]��<j������������Ԉ������fv��3�����������슣�؈������2������k���內�����膣����v����������
�������Ӂ��ނ��P���A���>���*�������(���c���`���㌣�����-��������������ٌ��m�������0���f���K������)���=���ꆣ������������������R�������i��������������m�������������KeyAttrFlagsi!�KeyAttrDataFloatf

/�KeyAttrRefCounti\��AnimationCurveL�i�-SAnimCurveS��	DefaultD��KeyVerI����KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�aB�}
KeyValueFloatf\p�s�4,j�4�c�4�u�4�I�4P��4��4P3�4�|�4���4�y�4��4��4$��4_v�4��4���4�q�4r��4Bw�4
o�4�p�4�}�4�M�4�|�4
��4��4��4�;�4�8�4��4�w�4m�4�g�4�a�4���4(��4���4\��4$c�4��4�K�4��4{�4���4֐�4?��4�z�49��4�g�4�<�4J�4�E�4�l�47~�4�{�4u�4�p�4���4�i�4�z�4Z��47u�4vT�4zm�4]s�4Uy�4�|�4�v�4mz�4t�4�x�4�y�4�m�4Xv�4�{�4�t�4t��4�}�4_��4��4�{�4:|�4ڄ�4t�4d��4Ao�4b��4�n�4��40z�4�|�4l�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti\�AnimationCurveLx�-SAnimCurveS6�	DefaultD���N�KeyVerI�O��KeyTimel<�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=�NPЕ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��Xf��
KeyValueFloatf<���C��?��3��o'����������3
���������ͻ ��_)���1��[9�;V?��C��C�s�@���:���2�?I)�Q��vW�n��}�	�9K��3
���������л ��_)���1��[9�;V?��C���C���C��AC�qB@�!b;�g5�?�-��=&����.��`y�F��hn
�s�
�˩�o������q(��2���:�_�@�q�C���C���KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti<�AnimationCurveL���-SAnimCurveSZ�	DefaultD�Uտr�KeyVerI�k��KeyTimel;�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=�NPЕ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��-X~��
KeyValueFloatf;��ڨ�
���J���V��7Ib��eG�"6��1���8�HxF��Y��$p�4������<#��4j��:���3���Ƨ��.U������Y僾¼l��oS�a�>�b�0���,��1���8�GxF��Y��$p�7������7#��5j��<����ڨ�oj��ا�R�����.?���E��1^��Oj��V��F��~9�f�2�-3�(@>�z�Q��Oj��������X͛��u��婨���KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti;d�AnimationCurveL��-SAnimCurveSr�	DefaultD`��@���KeyVerI���KeyTimel?�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`��N�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�X��	
KeyValueFloatf?�
¬K�II��O������Br������ж�fi��p���<\��'��������n��A�����™Y�o�‹���'�	���ԅ����������餽��(��\����ж�fi��p���<\��'��������n��@�����™Y�
�
�
�
�n~��4…}�!n��v�������o����������M��5(��lz���{�������o��W@�����������'��
�
���KeyAttrFlagsi!*�KeyAttrDataFloatf

W�KeyAttrRefCounti?��AnimationCurveLx��-SAnimCurveS��	DefaultD��KeyVerI��%KeyTimelp�<A���a(z�a>�
KeyValueFloatfg�@g�@g�@h�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiT�AnimationCurveL��-SAnimCurveS2�	DefaultDJ�KeyVerI���%KeyTimelp�<A���a(z�a��
KeyValueFloatfn�H�n�H�n�H���KeyAttrFlagsi!�KeyAttrDataFloatf

G�KeyAttrRefCounti��AnimationCurveL�5�-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimelp�<A���a(z�a.�
KeyValueFloatf�P@�P@�P@X�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti8AnimationCurveLH��-SAnimCurveS"�	DefaultD�1��:�KeyVerI�k�KeyTimelBp�<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��
KeyValueFloatfB�ٷ����8��������K����u���R
���v���~��v��.���cv���M���4���/��E��q�mp���׸�J��UW��;H�7C�
���s�2��֤��������h����Ɏ���f�U�>�=�+�4,���-� �?��\��Z��l����ܥ�+޴�=���x4��8t������k6��y��������B�����Hv��"�=��k	�D��\*��1��,���#��]���ٷ���KeyAttrFlagsi!��KeyAttrDataFloatf

+KeyAttrRefCountiB�AnimationCurveL�S�-SAnimCurveS�	DefaultD R=%@�KeyVerI��%KeyTimelCp�<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�X
KeyValueFloatfC��)A�\#A$�A��A��@��@�ľ@+#�@���@"c�@�ZA�A�c%A�6A*�EA�RA��YA�+[A��TAy�GA@�5A��!A'�AP*�@�@sؼ@㣶@d��@o��@��@'mA��A<�&AC9Ap�IA?�UA��[A�Z\A��\Am�XA*cQA�HA��=A�4A��+Aޟ$A�A�AA�pA��A�?�@H��@��@�]�@/4�@<Ҿ@-��@L��@���@"��@9Ac�A=�A��%Am�)A��)A��)A<KeyAttrFlagsi!vKeyAttrDataFloatf

�KeyAttrRefCountiC(	AnimationCurveL8��-SAnimCurveS	DefaultD��1�KeyVerI�W%KeyTimelCp�<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�X�
KeyValueFloatfC���������<u���n���R��U����1��s-��2���qK��L��������/d�<_M��4?�6F<��5H���`��E�����f����A������!���]�������\���>h���%���f���͏��{�N,]�wlF���:��:�P�9�2�A��O�}�a��Su�E'��|7������N���L��蓪��ز�=к��/�������������.����t��q���I+���[���t�������f���‘�������������KeyAttrFlagsi!�KeyAttrDataFloatf

	KeyAttrRefCountiC�
AnimationCurveL��-SAnimCurveS~		DefaultD�	KeyVerI��	%KeyTimelp�<A���a(z�a

KeyValueFloatfݳ~@ݳ~@ݳ~@,
KeyAttrFlagsi!f
KeyAttrDataFloatf

�
KeyAttrRefCountiDAnimationCurveL��-SAnimCurveS�
	DefaultDKeyVerI��KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�}
KeyValueFloatf\pS6�;T6�;T6�;S6�;T6�;S6�;S6�;S6�;S6�;S6�;S6�;S6�;S6�;S6�;S6�;[6�;T6�;T6�;T6�;S6�;S6�;S6�;T6�;T6�;S6�;S6�;S6�;S6�;T6�;S6�;T6�;S6�;S6�;R6�;T6�;S6�;T6�;T6�;S6�;T6�;T6�;T6�;U6�;L6�;R6�;S6�;R6�;S6�;S6�;S6�;S6�;S6�;S6�;S6�;S6�;S6�;T6�;S6�;T6�;S6�;S6�;S6�;T6�;S6�;S6�;T6�;T6�;T6�;T6�;T6�;T6�;S6�;T6�;S6�;S6�;S6�;S6�;S6�;S6�;T6�;S6�;T6�;S6�;S6�;S6�;S6�;S6�;S6�;T6�;S6�;S6�;S6�;�KeyAttrFlagsi!
KeyAttrDataFloatf

7KeyAttrRefCounti\�AnimationCurveL���-SAnimCurveS�	DefaultD�KeyVerI��%KeyTimelp�<A���a(z�a
KeyValueFloatf{��={��={��=HKeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCounti(AnimationCurveL���-SAnimCurveS	DefaultD �6�*KeyVerI�[KeyTimelBp�<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�
KeyValueFloatfBɷ����������̕��>���č��l�����������8I�������-���%������\���$������nr�����ú�������	��Am��������|���	���������)�������'���/��6���z��
A��7���;m���p���Q��]��L����r��������Q���,���0�����������v���f����c��W���(|��rt��b�������O��T���8H������]��G���{���ɷ���KeyAttrFlagsi!�KeyAttrDataFloatf

KeyAttrRefCountiB�AnimationCurveLX@�-SAnimCurveS~	DefaultD �S��KeyVerI��KeyTimelBp�<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�
KeyValueFloatfB���W����}+��� ��'�`g,��+-���*���&�%� �G��
��Ք��'�i
����^T���q��:��X�$B�%���=#�߁)���-���.�>@-��9+�?�&��!���l���?����$���������ƛ����������������8��b�w��Q��	r
��6�~����O�6$��Z(��m+��-���,��*��$�n��3��	���	������� KeyAttrFlagsi!ZKeyAttrDataFloatf

�KeyAttrRefCountiBAnimationCurveL��-SAnimCurveS�	DefaultD�>�KeyVerI�;%KeyTimelCp�<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�Xn
KeyValueFloatfC���~j�����k/™��"7—���K‚]�6��1�&���>J��2��������t��Q����0��_1�������8�����^¡k��¤J �B�vz�4�´�
�by�0��K������������b��M���D��8����������������
���������aJ•���=�.���‹���e�&<�k�{j ��&�N�
�W8��D��z��������������KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiC� AnimationCurveL��-SAnimCurveSb	DefaultDzKeyVerI��%KeyTimelp�<A���a(z�a�
KeyValueFloatf��2@��2@��2@ KeyAttrFlagsi!J KeyAttrDataFloatf

w KeyAttrRefCounti(&AnimationCurveLH��-SAnimCurveS� 	DefaultD� KeyVerI��#�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a�%}
KeyValueFloatf\p?>,��U,��V,��D,��,�BA,�L,�#,��,��,��A,��#,��6,�v:,�n5,�q+,��N,�^,��;,�n",��8,��;,��9,�Ji,�xQ,�vm,��$,�\ ,�j?,��0,��1,��>,��6,��),�#L,�7,��?,��8,��2,��F,��),��R,��M,�Z?,��@,��A,��8,��9,��7,� H,��O,�yJ,�j<,�>4,��P,�6N,�`d,��,�,�,�"�+�`j+��,��F,��M,��?,�<K,��C,�uE,��G,��K,��K,�&7,�<L,��A,��7,��7,��8,��2,�[<,�b@,��,�Q?,�9,��0,�(5,��6,�I,�B$,�-P,��/,�%5,�<,��%KeyAttrFlagsi!�%KeyAttrDataFloatf

&KeyAttrRefCounti\�+AnimationCurveL���-SAnimCurveS~&	DefaultD�&KeyVerI��)�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a.+}
KeyValueFloatf\p򖬶��������)���`���5���ޔ��4���W����������ҕ������������:���c����������٘��O�������}�������z���c���;���O�������������m�������#���䕬�ْ�����򓬶l���ǖ������3���c���
�������_������!�������y���՛������\������3���v���M�����������Ɲ��.���Ց��,�������ۖ������������������/���ܔ����������Ε������ݖ���������ŕ��L���Q�����������M���ϖ��H���u�������Õ��@�����������X+KeyAttrFlagsi!�+KeyAttrDataFloatf

�+KeyAttrRefCounti\0AnimationCurveL�N�-SAnimCurveS",	DefaultD�Nj�:,KeyVerI�K.�KeyTimel>�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`��N�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��Xj/
KeyValueFloatf>�<^�����1R���͸��x���L��8�~��ux�w3���������C���Լ��f���%��ǣ��kr�������u���Y��4���gQ��ZT��骅���v���p��ux�w3���������C���Լ��f���%��ǣ��kr��<^��<^��<^��<^��`�������U`��D��6>���P��$���͗��A��t���gy��Jz��q��L���$��U����������������<^���/KeyAttrFlagsi!�/KeyAttrDataFloatf

�/KeyAttrRefCounti>D4AnimationCurveL(��-SAnimCurveS^0	DefaultD�`�ܿv0KeyVerI��2�KeyTimel>�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`��N�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�3
KeyValueFloatf>�S�h��"j�`>[�>��7?�[]?Tf?\�W?��9?{�?�O�>�22>?���7M��\���E۾F��.���ys��09�GH4>/�>T?jK?�h?jq?Rf?^�W?��9?y�?�O�>�22>_���'M��\���E۾	S�
S�S�S澢�ݾcv���}��ͽ�=�}>�z�>��?`�:?�U?c�d?@{c?R�K?i"?�z�>QfH>}h��+�i��!����
S��3KeyAttrFlagsi!
4KeyAttrDataFloatf

74KeyAttrRefCounti>�8AnimationCurveLx��-SAnimCurveS�4	DefaultDֺ3��4KeyVerI��6KeyTimel?�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`��N�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�X�7	
KeyValueFloatf?��֝��̖�ĕ��4dj��JI�5�-�#=��������,�	z@�LpW�E�o�J��㧎�.0��a�������?�������=���o���S��':���$�f�����������,�
z@�MpW�E�o�J��㧎�.0��a����֝��֝��֝��֝�h˜�����������Q�|�Rg��{Q�ރ=�s{,��������X�*�$��I8��{Q�?m�pR���^���L��J����֝��֝�8KeyAttrFlagsi!R8KeyAttrDataFloatf

8KeyAttrRefCounti?:AnimationCurveL���-SAnimCurveS�8	DefaultD�8KeyVerI�39%KeyTimelp�<A���a(z�af9
KeyValueFloatf�(�?�(�?�(�?�9KeyAttrFlagsi!�9KeyAttrDataFloatf

�9KeyAttrRefCounti|;AnimationCurveL���-SAnimCurveSZ:	DefaultDr:KeyVerI��:%KeyTimelp�<A���a(z�a�:
KeyValueFloatf�o���o���o��;KeyAttrFlagsi!B;KeyAttrDataFloatf

o;KeyAttrRefCounti�<AnimationCurveL��-SAnimCurveS�;	DefaultD�;KeyVerI�#<%KeyTimelp�<A���a(z�aV<
KeyValueFloatfg#@g#@g#@�<KeyAttrFlagsi!�<KeyAttrDataFloatf

�<KeyAttrRefCounti0AAnimationCurveL���-SAnimCurveSJ=	DefaultD@�B)@b=KeyVerI�s?�KeyTimel>�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`��N�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�@
KeyValueFloatf>�rJA�{KAq�NAq�RA��VA�}ZAD�\A�y]A�\A��ZAXA'$UA"4RA
zOA�(MA�gKA�XJA� JAR�JA��LA�.OA�;RAs�UA��XA9�[A��]A9^A�y]A�\A��ZAXA'$UA"4RA
zOA�(MA�gKA�XJArJArJArJArJAjKJA�#KAh�LA�sNA|�PA�@SAv�UA]mXAI�ZA|i\A�b]A5M]A̿[AYYAv�UA#�RA�bOA��LA��JA9!JArJA�@KeyAttrFlagsi!�@KeyAttrDataFloatf

#AKeyAttrRefCounti>xEAnimationCurveLh��-SAnimCurveS�A	DefaultD � @�AKeyVerI��CKeyTimel?�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`��N�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�X�D	
KeyValueFloatf?��gA���@���@���@{��@*f}@A]@W�U@��a@`�{@=��@B��@��@|�@'��@#��@tb�@�;A���@���@�v�@�˺@Xr�@�߉@"m@�S@:
L@W�U@��a@_�{@=��@B��@��@|�@(��@#��@tb�@�gA�gA�gA�gA���@)��@�@��@���@)�@e.�@6��@A�z@�c@,�V@+�W@/vl@�+�@e.�@5��@���@���@�m�@K9A�gA�gAEKeyAttrFlagsi!>EKeyAttrDataFloatf

kEKeyAttrRefCounti?�IAnimationCurveL���-SAnimCurveS�E	DefaultD ���EKeyVerI��G�KeyTimel>�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`��N�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��XI
KeyValueFloatf>��.�����q?����������������f	���T������d������!;���9�����a����d�����ı��y���������4J������5���a���f	���T������d������!;���9�����a����.���.���.���.���[���-��(���/��_m���{���g���o��{���6���T����Z���*���Q���g������Ŭ��N���I���g���.��@IKeyAttrFlagsi!zIKeyAttrDataFloatf

�IKeyAttrRefCounti>,KAnimationCurveL(��-SAnimCurveS
J	DefaultD"JKeyVerI�[J%KeyTimelp�<A���a(z�a�J
KeyValueFloatfS��?S��?S��?�JKeyAttrFlagsi!�JKeyAttrDataFloatf

KKeyAttrRefCounti�LAnimationCurveL��-SAnimCurveS�K	DefaultD�KKeyVerI��K%KeyTimelp�<A���a(z�aL
KeyValueFloatf�l��l��l�0LKeyAttrFlagsi!jLKeyAttrDataFloatf

�LKeyAttrRefCountiNAnimationCurveLx��-SAnimCurveS�L	DefaultDMKeyVerI�KM%KeyTimelp�<A���a(z�a~M
KeyValueFloatfSX@SX@SX@�MKeyAttrFlagsi!�MKeyAttrDataFloatf

NKeyAttrRefCounti�OAnimationCurveLh��-SAnimCurveSrN	DefaultD�NKeyVerI��N%KeyTimelp�<A���a(z�a�N
KeyValueFloatf��"@��"@��"@ OKeyAttrFlagsi!ZOKeyAttrDataFloatf

�OKeyAttrRefCountiQAnimationCurveLHb�-SAnimCurveS�O	DefaultDPKeyVerI�;P%KeyTimelp�<A���a(z�anP
KeyValueFloatf��C���C���C��PKeyAttrFlagsi!�PKeyAttrDataFloatf

�PKeyAttrRefCounti�RAnimationCurveL���-SAnimCurveSbQ	DefaultDzQKeyVerI��Q%KeyTimelp�<A���a(z�a�Q
KeyValueFloatf�T@�T@�T@RKeyAttrFlagsi!JRKeyAttrDataFloatf

wRKeyAttrRefCounti�SAnimationCurveL��-SAnimCurveS�R	DefaultD�RKeyVerI�+S%KeyTimelp�<A���a(z�a^S
KeyValueFloatfBp��Bp��Bp���SKeyAttrFlagsi!�SKeyAttrDataFloatf

�SKeyAttrRefCountitUAnimationCurveL��-SAnimCurveSRT	DefaultDjTKeyVerI��T%KeyTimelp�<A���a(z�a�T
KeyValueFloatf���������UKeyAttrFlagsi!:UKeyAttrDataFloatf

gUKeyAttrRefCounti[AnimationCurveLX��-SAnimCurveS�U	DefaultD�UKeyVerI��X�KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�azZ}
KeyValueFloatf\p��@�@����)@���@*�)�*�)�)��))*�)��)`**�))@���(( )@((���'����(���'�(��(�������(@�(@(���'�'�(�'@)�(�(�(���(�(()�)������()��)����@)���(��)@)����)�)�ZKeyAttrFlagsi!�ZKeyAttrDataFloatf

[KeyAttrRefCounti\�aAnimationCurveL���-SAnimCurveSn[	DefaultD ÉD��[KeyVerI�W_�KeyTimelv�p�<A���AlI��A���Aj�sB�7�-Bh�FPB�F(~B
�Bd���B���C`�cC�T�C\A6�C�DX�vD�>��D���DT��E�|b.E�;D\EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I4��MI�l�{I�+n�I0�O�I��1J�i3J,)�`J��֎J(g��J|&|K��]FKz�N]K��Kxd!�K"D�K��{�K ���K���LI?7L�a�YL!��Lp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦP���PPЕQ��w0Q�NY^QL;�Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;V#z��Vx9�W��rHW �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aVa�
KeyValueFloatfv�N$°��!G������35���k�����+���˽@�>!A�/eAf�jAP�Aѭ�@�;@Ⱐ��.�ծ��ҧ��H������6%�p�6�z�6ªr+��2´J������d,���?�Ɵ�S��X0���Լ�m��X�&���>��ʏ@�'A_A�<0A�Ƥ@]�{�����>�<����N�������tª�(�?�@�3gX���l�;v�…m�§���������)���%��‚���#\�����ޅ���p\��>G»/�.��\�����c���6��+������ru���:s��`��D��o!�:���A�[��F�a��˖����6���{����v��U������%��M�e���(����z�(���*�	��� �d�2}8�͒J���&�>y�����R���Í�����VVn��w,�H����}���?��?�y�?�q@��]@�~�@�aKeyAttrFlagsi!�aKeyAttrDataFloatf

�aKeyAttrRefCountiv�hAnimationCurveL؏�-SAnimCurveSJb	DefaultD��a�bbKeyVerI�3f�KeyTimelv�p�<A���AlI��A���Aj�sB�7�-Bh�FPB�F(~B
�Bd���B���C`�cC�T�C\A6�C�DX�vD�>��D���DT��E�|b.E�;D\EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I4��MI�l�{I�+n�I0�O�I��1J�i3J,)�`J��֎J(g��J|&|K��]FKz�N]K��Kxd!�K"D�K��{�K ���K���LI?7L�a�YL!��Lp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦP���PPЕQ��w0Q�NY^QL;�Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;V#z��Vx9�W��rHW �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a2h�
KeyValueFloatfv������
�#���3���+�E��b
�Cl��<�����e�2�^�j�E�S��9F��#6�I�L��]��<l���i�(d�"�N��]5����*���<��W$D��t�y�h��t�3ˀ�]�F��%����ɍ�S�י�^� ��'� �4��?���e��܈������������m��ͦ��|V���\���ŕ�����ZW��W�Yߤ��[��G7��5����w��j��
f�?'�?��𾦉8��Dx�i�r��Qa�4���q��Q����)�G�P���B�e%[�������,��3���j�����F߲����I����ĝ����Cq�jyQ�n~5���Ӂ��'��<Z�k�gX�7�?�>D&�2��=���&�\��T
��Ҧ���0��}������J�������Q�������������^��nG�8F��L���z����� ��\hKeyAttrFlagsi!�hKeyAttrDataFloatf

�hKeyAttrRefCountiv�oAnimationCurveL���-SAnimCurveS&i	DefaultD �r(@>iKeyVerI�m�KeyTimelv�p�<A���AlI��A���Aj�sB�7�-Bh�FPB�F(~B
�Bd���B���C`�cC�T�C\A6�C�DX�vD�>��D���DT��E�|b.E�;D\EP�%�E�y��E���AFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I4��MI�l�{I�+n�I0�O�I��1J�i3J,)�`J��֎J(g��J|&|K��]FKz�N]K��Kxd!�K"D�K��{�K ���K���LI?7L�a�YL!��Lp�k�L_/M���lMh\��M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦP���PPЕQ��w0Q�NY^QL;�Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cVк;V#z��Vx9�W��rHW �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�ao�
KeyValueFloatfv��CA�$A\�@/��@=�+@�W�>5��Z�~�/ܾ�UE��#�\OM��E�d����f�M�������.>�&�?K*C@;^�@52�@2�;A��A@GA
Q�@1��@0)�@]A�@��A��FAt�FA%AݹA��@(�8@=n9��K���M�����TD2�
F@�Ö@,��@&r�@�H�@җ	AΣA*SA�f%A��)A,7A?o>A�I�@�&�?�����d@<5�@�A�@oAu�
A�AA�Ѿ@[x@Y��?�G'�O=��]K�Xq���j���2���6�V\̿�l�A���ա�7�=��>��:�i`ɿ�
������]*���v@>�a8@���@H9�@��"@��B?�'���ܿ�~�����pY�`F�@x��
ʧ�����c��ƒ����/�&���ܿOn���$T���¾�t�c2-�?�r=”5>�>ԫ�>
��>uY>�>8oKeyAttrFlagsi!roKeyAttrDataFloatf

�oKeyAttrRefCountiv�rAnimationCurveLX��-SAnimCurveSp	DefaultDpKeyVerI��q]KeyTimel*Pp�<A�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�_���`�ll`0�/�`��#a���a(z�aZr�
KeyValueFloatf*��������#������������������������������������������������������������������������������rKeyAttrFlagsi!�rKeyAttrDataFloatf

�rKeyAttrRefCounti*DvAnimationCurveL(R�-SAnimCurveSNs	DefaultDfsKeyVerI��t]KeyTimel*Pp�<A�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�_���`�ll`0�/�`��#a���a(z�a�u�
KeyValueFloatf*��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��uKeyAttrFlagsi!
vKeyAttrDataFloatf

7vKeyAttrRefCounti*�yAnimationCurveL8�-SAnimCurveS�v	DefaultD�vKeyVerI�#x]KeyTimel*Pp�<A�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�_���`�ll`0�/�`��#a���a(z�a�x�
KeyValueFloatf*��-���-���-��哽�-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-���-��yKeyAttrFlagsi!VyKeyAttrDataFloatf

�yKeyAttrRefCounti*�AnimationCurveLXR�-SAnimCurveS�y	DefaultD��,J@�yKeyVerI��}�KeyTimel�|x�}L�y�'��a��u;$�Еou^�'��[�I�Sj�6�c�u����̜Ú���X6*+jV�����Z6FixVc�
�Nϻ�]������Q/��Rũ�aU��	�����K���[��Sb	�/�W`�W��8o�=�M5C���~���a���\�;^U�OG�[1�t�V$��B��	��JZ ")�*����ƣG�XV9vw��_�ԗ6l(?�@�|ZS�/��M�S2�ĝ���weWL��tq��M�}4�l(�W��_�mxf�����4��ʏ۰������l��ao'��i��`]ќ�Ϛ��e���^�“�~��釃��ޞ���B%��]�{��z,8��ׇO�`�7�\��/Ñ�7��j�W2�^�k&Gp�_Y�`~~���g��?,��������㐮��pq��^d�A�ƌ�@�����xF��V;~��WZ�^����w�8W>�9�#�w���q�iNϋc���Ɩw����jz�ӄ��
�{��+��2�=V��l6ڂc|_gc���ro`��z�{��I#�2o���S�L��'�^}�"!�m��<��5�X�����y2�f��aYF�{v�9X�|+F*Nbʶ�w}cƉ��e����/b]R��g�B3ȓ�5X;xˁ���R��@�k��8�2���l����5�b�=d~�o..���b�y�.iy0�=S�<�8�qe&�x"
��d����V�� #?*�߇9��Ocլ���>��K��h�2j���S��~݃���ҽd��MFl�:�xYڗ�)C�#lX���E�ty�aO���Y�MN�I�t{��}��C�ok���U9����G�'�=��l`�ɵ�U*��`{�l���9{���K���2�yV��
KeyValueFloatf��dQB��MB�XBBm�6B� B)D
B��A~V�AᴄAOIA�ǁAA�a�Ai��A΢B��+B/O:B��OBɗdB�tB[N�B��B
�B���B���B�Q�BS�B!��Be��Bʣ�B�9�Bs�}B�qpBdw[BjEBL�*B�B.B�e�A$e�AGknA�"A��C@m}�)�Ik?��AT<vA�w�A%!�A��B��B(2B �KB�^B��pB�vB��bBW+SB�]CB��CB�zRB�2hB�.}B��B��B��B/:�B�ޣB�h�BG��B���B���Bp��B|��BǎB;A�BP*�B�3vB��dBBrPB<@BCs3B�B�F	B�A�L�A�8�A�JgA�,AX[AV�AĹA|��A��
B�"B"j.Br�:B�CBR�JB��FBBu/B`dB'=B�,�An��A�ǓA�`FAM�Aq��@���>E˂�Zp��ȋ����������`�?�0�@c�AAh�jA=y}A|�~A�#bA��EAd}�A�K�A��BV0B�B$B\l8B�|BBtQB��^B=�nBcdaB�KMB�h8B�Q"B�BqX�A���AA�A2B�A�r�A�0�A��A�w�Aރ�A]��A/��A�vA�(0A�	A�YA� 
AH�	A���@s1�@ͣ�@�Y�@��@�@'�@�9Q@�N,@��KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti�X�AnimationCurveL���-SAnimCurveSJ�	DefaultD@�~2�b�KeyVerI����KeyTimel�|x�}L�y�'��a��u;$�Еou^�'��[�I�Sj�6�c�u����̜Ú���X6*+jV�����Z6FixVc�
�Nϻ�]������Q/��Rũ�aU��	�����K���[��Sb	�/�W`�W��8o�=�M5C���~���a���\�;^U�OG�[1�t�V$��B��	��JZ ")�*����ƣG�XV9vw��_�ԗ6l(?�@�|ZS�/��M�S2�ĝ���weWL��tq��M�}4�l(�W��_�mxf�����4��ʏ۰������l��ao'��i��`]ќ�Ϛ��e���^�“�~��釃��ޞ���B%��]�{��z,8��ׇO�`�7�\��/Ñ�7��j�W2�^�k&Gp�_Y�`~~���g��?,��������㐮��pq��^d�A�ƌ�@�����xF��V;~��WZ�^����w�8W>�9�#�w���q�iNϋc���Ɩw����jz�ӄ��
�{��+��2�=V��l6ڂc|_gc���ro`��z�{��I#�2o���S�L��'�^}�"!�m��<��5�X�����y2�f��aYF�{v�9X�|+F*Nbʶ�w}cƉ��e����/b]R��g�B3ȓ�5X;xˁ���R��@�k��8�2���l����5�b�=d~�o..���b�y�.iy0�=S�<�8�qe&�x"
��d����V�� #?*�߇9��Ocլ���>��K��h�2j���S��~݃���ҽd��MFl�:�xYڗ�)C�#lX���E�ty�aO���Y�MN�I�t{��}��C�ok���U9����G�'�=��l`�ɵ�U*��`{�l���9{���K���2�y���
KeyValueFloatf��b����<��jP��V��-^������|7���\��p��	"��{�����Qa������ֈ�ϙ�����O|���g���M��9!��Q��P��K
@XO�@�A���@gm�@�F�?�����{���K�*�v��n������w�������A���
��g���q���ZQ��������������}����z��4���o����}��A׾�����Ѭ�x���W��cÁ���f��l�6v�#�|�Ԧs�Nh�qoP���1��O��������T @���@�NA�jZA�bA9�,A�A@��@
�y@����B����	/�{���T������o������J/�%��وŸ`#�`9(¡�,�P��D��M�~'��-���(d������
������:�����i�������~������3
“����P��q;�S�	�¸�(�|	�4���`����������Ug²��fU�Q1���w-���������pr�������<��a���Sي�+�z��DZ�aR��k��{o�������=��y��3���~���ڱ����������Î��u}���r����sݘ�<i���ٗ��U��Y����ŧ��������et��u-�����)�������r���*������KeyAttrFlagsi!�KeyAttrDataFloatf

K�KeyAttrRefCounti���AnimationCurveL���-SAnimCurveS��	DefaultD��{5�ƈKeyVerI�c��KeyTimel�|x�}L�y�'��a��u;$�Еou^�'��[�I�Sj�6�c�u����̜Ú���X6*+jV�����Z6FixVc�
�Nϻ�]������Q/��Rũ�aU��	�����K���[��Sb	�/�W`�W��8o�=�M5C���~���a���\�;^U�OG�[1�t�V$��B��	��JZ ")�*����ƣG�XV9vw��_�ԗ6l(?�@�|ZS�/��M�S2�ĝ���weWL��tq��M�}4�l(�W��_�mxf�����4��ʏ۰������l��ao'��i��`]ќ�Ϛ��e���^�“�~��釃��ޞ���B%��]�{��z,8��ׇO�`�7�\��/Ñ�7��j�W2�^�k&Gp�_Y�`~~���g��?,��������㐮��pq��^d�A�ƌ�@�����xF��V;~��WZ�^����w�8W>�9�#�w���q�iNϋc���Ɩw����jz�ӄ��
�{��+��2�=V��l6ڂc|_gc���ro`��z�{��I#�2o���S�L��'�^}�"!�m��<��5�X�����y2�f��aYF�{v�9X�|+F*Nbʶ�w}cƉ��e����/b]R��g�B3ȓ�5X;xˁ���R��@�k��8�2���l����5�b�=d~�o..���b�y�.iy0�=S�<�8�qe&�x"
��d����V�� #?*�߇9��Ocլ���>��K��h�2j���S��~݃���ҽd��MFl�:�xYڗ�)C�#lX���E�ty�aO���Y�MN�I�t{��}��C�ok���U9����G�'�=��l`�ɵ�U*��`{�l���9{���K���2�y��
KeyValueFloatf���ޫ����s�l���3�i�	��Һ��FX��9�/@c�@|�@v��@�~�@���>U�x��
+�X�u�U���������6��٘��V
�5)#¶A*��0�7++�
"�ҙ���
µF�w����?��I���晐�d,u��e0�A�����/�:^,>�ʐ@��AM�@���@��?��-�����������#���L����G���Y6�� ��蘑��+O���*��p�h�fk7��@��M<������@���7�پ"� )��o-��5 ��������=$��4�<�C��@>S9�ʄ0�/�%�V�^��F��i�������#�����A����'���q���u�a����_��`������c,���P�Jq�`�CY��P�����R���E����.���i��iT��m�p��E0�/T��Ig�J&?�Y@�@�b@��@�&@0�_������+���0��������P���N��!�%`������/�)�s���������g����	�2�o���DJ���#���������^�x�<��,=��Pd�G�s��_���<��S����3�$��7��L���
��X!X���2�"7�[�P�+�C���;�¿5ꔿ�t��\>���꿦}��c�r�H�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�4�AnimationCurveLX|�-SAnimCurveS�	DefaultD*�KeyVerI�c�%KeyTimelp�<A���a(z�a��
KeyValueFloatf�����������KeyAttrFlagsi!��KeyAttrDataFloatf

'�KeyAttrRefCounti��AnimationCurveL+�-SAnimCurveS��	DefaultD��KeyVerI�ۑ%KeyTimelp�<A���a(z�a�
KeyValueFloatf*C)�*C)�*C)�8�KeyAttrFlagsi!r�KeyAttrDataFloatf

��KeyAttrRefCounti$�AnimationCurveL�"�-SAnimCurveS�	DefaultD�KeyVerI�S�%KeyTimelp�<A���a(z�a��
KeyValueFloatf��0���0���0���KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountiĚAnimationCurveL7�-SAnimCurveSz�	DefaultD�U�5���KeyVerI�;��KeyTimelq�p�<A���A���A�d"Bh�FPBg7gB����B
�B����B95d�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�.��H���I�l�{I0�O�I�i3J,)�`J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM�ԚMh\��M�y$Nd�[RN�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ��w0Q�NY^QL;�Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cV��yV��/�V0���Vк;Vy���V9B��V�=�Wx9�W��rHW �TvW�6�Wp��-X4��Xl�X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a&��
KeyValueFloatfq��ʯ�Q|�������Z���Ô�]Sc�����[��r@���@/GAz�FA@ApV�@�a�@<!@Eӝ�U�*��6���&����_�%�G<06ξ}�'�a����*���L%�}q��v��fy���g��S’���#��*m�����1��/�{P�^zq�)�m��^����p�J.�`��!`����/��/t��^���{�����f1��;����������e���<����O�.������>�0b@�_�@�/A��_A,�A�l�AB��A��Az�A���A���A�ثA[��A,Y!A��L@��[�{��W�~�������V��	����;��ګ������)�p��4�<l ��;"�1
��s����Y�L�K���?�(A���8��>%�����v���6��������Ǘ���Y������O��Ϛ�������P�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountiqd�AnimationCurveLH7�-SAnimCurveS�	DefaultD`�@2�KeyVerI�۞�KeyTimelq�p�<A���A���A�d"Bh�FPBg7gB����B
�B����B95d�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�.��H���I�l�{I0�O�I�i3J,)�`J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM�ԚMh\��M�y$Nd�[RN�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ��w0Q�NY^QL;�Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cV��yV��/�V0���Vк;Vy���V9B��V�=�Wx9�W��rHW �TvW�6�Wp��-X4��Xl�X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aƠ�
KeyValueFloatfq�S@�MR@�s�@���@��l@e_/@��?`cR?	�
?��>�J?da�?�(?u�Q>SƧ�v_�����|ǿ2]ǿk����L!����>eY}?�g�?5��>m��}T˿��鿊P���c�r��?��@@A3�@�?c@��?��
?�-�ug�讑������z���F�p�>�A�п���!��^�M�ʿc*�*'�>7%�?��@��N@��n@�v@�}H?5M�떐�ٶĿf���	߿a㿇Q��3���ٝm�	����,�>i�?�@]L@/$@�H�?�W?D��=ꚾ��YJ����E>1ʙ?QQ1@�-�@Ϥ�@K?�@�d@�"@lk�?k�:?h��>{F���A����I?l�%$��][����fv����@C�,A_�b�o��z�%-���솿T���񐌿M'���K���՜�N���q������KeyAttrFlagsi!*�KeyAttrDataFloatf

W�KeyAttrRefCountiq�AnimationCurveLH��-SAnimCurveS��	DefaultD�b2@ҡKeyVerI�{��KeyTimelq�p�<A���A���A�d"Bh�FPBg7gB����B
�B����B95d�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�.��H���I�l�{I0�O�I�i3J,)�`J��֎J(g��J��]FKxd!�K ���K�a�YLp�k�L_/M���lM�ԚMh\��M�y$Nd�[RN�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ��w0Q�NY^QL;�Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV(<
cV��yV��/�V0���Vк;Vy���V9B��V�=�Wx9�W��rHW �TvW�6�Wp��-X4��Xl�X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�af��
KeyValueFloatfq���A�՗A�P�A��A���A���A��bAka.Av;�@�:Z@#����1��F�~����?�a�@�%�@�R�@��A��3A�#A&:1A�PAgrpA4��AwWA��A�I@��@���@�u(A��jA���AA[��A�OAX�A�f�@�_Aw�uA��CA��KA`|A)bA�;kA�?A�A]��@~�@�A�PZA'D�A��AUi�A���Aʹ�A��A�u�A��cA��9A�\A��@���@I.@�k=>�E��$�[=�<������,�M�T�����E��#��8�.�����B"@f۵@I�A�=9AepA�i�A1�Ab��A��A)��A�.�A�d�A��WA��PA��<A��A��@�A.qA�MA\�A;�A;��@�S�@�/�@k~�@E�@�	�@���@:si@=�8@��@d�@,�@8n�?QK�?A��?��KeyAttrFlagsi!ʧKeyAttrDataFloatf

��KeyAttrRefCountiq|�AnimationCurveL��-SAnimCurveSZ�	DefaultDr�KeyVerI���%KeyTimelp�<A���a(z�aި
KeyValueFloatf;p�@;p�@;p�@�KeyAttrFlagsi!B�KeyAttrDataFloatf

o�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveSҩ	DefaultD�KeyVerI�#�%KeyTimelp�<A���a(z�aV�
KeyValueFloatf�����������KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLhi�-SAnimCurveSJ�	DefaultDb�KeyVerI�c��KeyTimel\�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�_���`�ll`0�/�`��#a���a(z�a��}
KeyValueFloatf\p@**@*����@��)�*�**���*@���*�))�)�) ������@����(��@�P������(����(@�(�@�����()������@(��(@�@((��@(�(�(���'�(��@����� �`��)���(�()����)@����)�������)�)@)@)))$�KeyAttrFlagsi!^�KeyAttrDataFloatf

��KeyAttrRefCounti\ �AnimationCurveL��-SAnimCurveS�	DefaultD��(@��KeyVerI����KeyTimeloxp�<A���AlI��A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.E�;D\EP�%�E���E�y��EL9�F���AF���oFHwp�F��3�F�t�TG@�G����G�q~H<1`:H��AhH:�2H���H8o�H�.��H���I�l�{I0�O�I�i3J,)�`J��֎J(g��J��]FKxd!�K�#�K ���K�a�YL!��Lp�k�L_/Ml?M���lMh\��M�y$N�Y=�N`��N���	OW�7O\�eO�Շ�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к;V#z��Vx9�W��rHW �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a���
KeyValueFloatfo�dF��\�l+��<�G�TE���C�4�7��z¦�����;�����7���柚��]=�����p4@�+�@�;GA�jA��DA��@��3@�JѿJ�
��ր��f���a��·�*� �o�;�.eV�3zX¢�=��*†��E,�����{+¦�+›,�Y��M|
�=��Y���?��;�w�د�����}�!�&���֨�� �������^�«M
�K���!���ú�������j�FV�ƿG�Z_I���T�0�S�{L���I� �H�G;D�A6���Z��S�?��鿇��7l����������������������5��@��9���hù�nm��n����
����
��S�����"d��"1q��(}�C����0���T��/�k��0��{���	��C��´̿�޼�؞�������KeyAttrFlagsi!�KeyAttrDataFloatf

�KeyAttrRefCountio��AnimationCurveLh#�-SAnimCurveSv�	DefaultD���?��KeyVerI�'��KeyTimeloxp�<A���AlI��A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.E�;D\EP�%�E���E�y��EL9�F���AF���oFHwp�F��3�F�t�TG@�G����G�q~H<1`:H��AhH:�2H���H8o�H�.��H���I�l�{I0�O�I�i3J,)�`J��֎J(g��J��]FKxd!�K�#�K ���K�a�YL!��Lp�k�L_/Ml?M���lMh\��M�y$N�Y=�N`��N���	OW�7O\�eO�Շ�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к;V#z��Vx9�W��rHW �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a
��
KeyValueFloatfo�.(O?�\�=
� ����F`W�?B*�y:�&�@a�@��@Y��@p�:@��q��������k�?A�[@�|@l�@�1�@���@X�@!y�@2آ@8��@t��@~�@���@z�@C�@��A@�S@��?Z/@���@i�@���@�|Y@J��@�R'A�'�@X��?*�#�����8
t��}<�IX���?���?��?L�w?�o@荔@,��@��@�I�@=Z�@�k�@#Aa&A.?Am�@\��@C��@@{�@���@m�@�+�@B��@��AGo@A��SA�EA��%Ao�A��|@��п����/��[��l��ե
����t��K�������&��_3ؿ�P��Lj?7i�?��	,�{��(�������>��)���:��6��Pb��q�z�i�i��:[��(��s����%>R��?,H�?���?~{�?4�KeyAttrFlagsi!n�KeyAttrDataFloatf

��KeyAttrRefCountio0�AnimationCurveLXv�-SAnimCurveS��	DefaultD`����KeyVerI����KeyTimeloxp�<A���AlI��A���Ah�FPB
�B���C`�cC�T�C�DX�vD���D�|b.E�;D\EP�%�E���E�y��EL9�F���AF���oFHwp�F��3�F�t�TG@�G����G�q~H<1`:H��AhH:�2H���H8o�H�.��H���I�l�{I0�O�I�i3J,)�`J��֎J(g��J��]FKxd!�K�#�K ���K�a�YL!��Lp�k�L_/Ml?M���lMh\��M�y$N�Y=�N`��N���	OW�7O\�eO�Շ�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к;V#z��Vx9�W��rHW �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a���
KeyValueFloatfo��Ч�n8�Ô���J��m����E�7���7���?��0@2͡��.��H���r���>��#��kц=�	@N��@s��@�G�@�Ҷ@��@�i鿺F������
�������H���*J����F�Y��l�v@<������)�>�O�?��'@�>@�=�>e�	������d׿��?R�@p��@�B2A?ZA��AD��A<��A��}A��mA�[A�HAf�A���@$�@��AьJA;5zA��Ah�9A�`�@�X�?t?�?
�%@��{@l�@k��@�٪@I��@���@>g
A�`,A$�EA3OA/`#AsP�@�{�@��A@
�?_)�?�{@�o,@�%@c`
@Ҷ�?� 
?�<�R��@�����������U�����iu��&���&%=��4>��>��+?��?∼?w`�??��?�e�?��x?�2H?�~=?��KeyAttrFlagsi!��KeyAttrDataFloatf

#�KeyAttrRefCountio��AnimationCurveL؞�-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimelp�<A���a(z�a
�
KeyValueFloatf��@��@��@4�KeyAttrFlagsi!n�KeyAttrDataFloatf

��KeyAttrRefCounti �AnimationCurveL��-SAnimCurveS��	DefaultD�KeyVerI�O�%KeyTimelp�<A���a(z�a��
KeyValueFloatf�#��#��#¬�KeyAttrFlagsi!��KeyAttrDataFloatf

�KeyAttrRefCounti��AnimationCurveLQ�-SAnimCurveSv�	DefaultD��KeyVerI���%KeyTimelp�<A���a(z�a��
KeyValueFloatf�-���-���-��$�KeyAttrFlagsi!^�KeyAttrDataFloatf

��KeyAttrRefCounti��AnimationCurveLX��-SAnimCurveS��	DefaultD��@Y@�KeyVerI�r�XKeyTimel�Kx�}P�q���ҹ�rK)��Tt�e�Ҫ�CM�dw[׎�DK4�^��\gvE	���8e7Vμt��[����Y!˼,/��~�������QŮ��b��7�o��M$+*b<C�B��[���T�lr������0�z�36V�3֓�d=!����F_2�Nn؅��)�k�O`��c1������'{Yƅ8�lh?�Xk�����6L�5TY_���ϯ�L#���X��1K@n�t������/�����
d�4N���N{FNp�x�v�Ο0����}���X�*\��)0wϔ{����L�뼜�����RѡF<�֎�h�8�c�K��Q�(>������n$3?-
ǃ��e�<�k#�q����k�/�p�\7�K�K�)�G���O�����2\,��O�&�9����֝z��̩��*{Af��K%+C��a�ۯJ���L�ۻ��wH=/�l���`��ЫX:H���Ʊ�����Nff�[��/�Jñ�C
��y�)�Քg�)_p+j��L=����FW1�g�.a�@Ӥ�'M��E�W����`�V;�E��Mdף�B�M�������N�h��͎���x�l��jq��Xzӷ�+�����G����WXc0��#�wa[�o5�(�5�SV�z�c�p��l��I����6���x��ޏ���6�c�Vu
Ee���3gcvܹj�tknb��<���gIȊ�p��b�����fl\����N���\g���?�e��ܒcJ�.և'�n'�/N9�=a_���Ks�B���αF�6�eR.9�E׆�A�q��#�A�:n`�i���\5S��1M�V<�r��$k��p�_����b�	�}
KeyValueFloatf�p��B6��BN5�B�~�B*ީBC��B�P�Bk'�B�O�B�rB�]B�GB�8.B��B���AƝ�A���A�mVArT�@U�����@��VA#s�A#�A0�	B��Bgj.B�*B"�B�1	B\��AJo�Aհ�A���A �Bٝ'BfR8B�8QB1�iB��vBm��B�%�B�0�B��B�B��B���B)H�BⳉB7l�B��nB��WBH�<B�t(B�	B�,�A]��Ak�A�=~A�A0%@r��@8�OA'3�AeȹA,��A��B��+B�FB�w[B��WB,�SB�L?B#N*B]gB�B�_�A�<�A'�A.OB�1B)AB�XB�-pBǠ{B�6�BQ�B�-�BJ��B��B���B�6�B��B��B���BxZ�B͞�Bi��Bl%BkB�XB��DB0B��B`cB��A⣰A��A��DA<|A>e@�2k��{�@ ;A���A�սA:��A�<B�*B{�8B~�MB�bB��rB�fB�YB��BB'�,B0B!�AB��A�:�AyDA}1�@�Am�?ABP^Amd�A*�A���Aq��A�oA�u'Ad��@�0�@
�A#	A���@���@��@�}�@u�@�@e��@���@a��@z��@3�KeyAttrFlagsi!m�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL�F�-SAnimCurveS��	DefaultD���%��KeyVerI���XKeyTimel�Kx�}P�q���ҹ�rK)��Tt�e�Ҫ�CM�dw[׎�DK4�^��\gvE	���8e7Vμt��[����Y!˼,/��~�������QŮ��b��7�o��M$+*b<C�B��[���T�lr������0�z�36V�3֓�d=!����F_2�Nn؅��)�k�O`��c1������'{Yƅ8�lh?�Xk�����6L�5TY_���ϯ�L#���X��1K@n�t������/�����
d�4N���N{FNp�x�v�Ο0����}���X�*\��)0wϔ{����L�뼜�����RѡF<�֎�h�8�c�K��Q�(>������n$3?-
ǃ��e�<�k#�q����k�/�p�\7�K�K�)�G���O�����2\,��O�&�9����֝z��̩��*{Af��K%+C��a�ۯJ���L�ۻ��wH=/�l���`��ЫX:H���Ʊ�����Nff�[��/�Jñ�C
��y�)�Քg�)_p+j��L=����FW1�g�.a�@Ӥ�'M��E�W����`�V;�E��Mdף�B�M�������N�h��͎���x�l��jq��Xzӷ�+�����G����WXc0��#�wa[�o5�(�5�SV�z�c�p��l��I����6���x��ޏ���6�c�Vu
Ee���3gcvܹj�tknb��<���gIȊ�p��b�����fl\����N���\g���?�e��ܒcJ�.և'�n'�/N9�=a_���Ks�B���αF�6�eR.9�E׆�A�q��#�A�:n`�i���\5S��1M�V<�r��$k��p�_����b��}
KeyValueFloatf�p��,��v6��L��AF�a�:�����{��8��i�8�@Eٴ@��AͶ$A��2A�WBA~LAp�ZA7dA�boAQ�vA\�rAS�8A A�=�@��@5r�@�$�@K��@���@��@�9�@D��@-˩@H��@���@��@��@�@�%@S
�>dM������'�(�`�����:X��J*������ڈ�҂���?F�@��@�tA�|BAW�SAkcA�'�A�)�AD��A�A��A��8Am��@���@d}�@rV@���@O�@�p�@���@Z��@`�U>�D��e|�u���b��!-?��@���?�;�?p�@,�@��!@���?��>�̿����Z��w��#@;�@U~A��.A3��@��@)�7@t� @L�@���@��@��AK A�}Ax1AV�A�As�$A/�A�]A��@#��@�x@�.y@��s@^�g@&�@u�@�}�@3��@�Pk@"=@&�@ 7@��Z@���@/�@k��@W��@�9�@�/�@v�Ac�(ATzaA��CA�L#A�pXA"�A��A+S�A.N�A�A��A׻�AHG�A���Ae�A��A4��AK�pA�
RA�43AAPA��"A�g$AB�KeyAttrFlagsi!|�KeyAttrDataFloatf

��KeyAttrRefCounti���AnimationCurveL�d�-SAnimCurveS�	DefaultD �0@$�KeyVerI���XKeyTimel�Kx�}P�q���ҹ�rK)��Tt�e�Ҫ�CM�dw[׎�DK4�^��\gvE	���8e7Vμt��[����Y!˼,/��~�������QŮ��b��7�o��M$+*b<C�B��[���T�lr������0�z�36V�3֓�d=!����F_2�Nn؅��)�k�O`��c1������'{Yƅ8�lh?�Xk�����6L�5TY_���ϯ�L#���X��1K@n�t������/�����
d�4N���N{FNp�x�v�Ο0����}���X�*\��)0wϔ{����L�뼜�����RѡF<�֎�h�8�c�K��Q�(>������n$3?-
ǃ��e�<�k#�q����k�/�p�\7�K�K�)�G���O�����2\,��O�&�9����֝z��̩��*{Af��K%+C��a�ۯJ���L�ۻ��wH=/�l���`��ЫX:H���Ʊ�����Nff�[��/�Jñ�C
��y�)�Քg�)_p+j��L=����FW1�g�.a�@Ӥ�'M��E�W����`�V;�E��Mdף�B�M�������N�h��͎���x�l��jq��Xzӷ�+�����G����WXc0��#�wa[�o5�(�5�SV�z�c�p��l��I����6���x��ޏ���6�c�Vu
Ee���3gcvܹj�tknb��<���gIȊ�p��b�����fl\����N���\g���?�e��ܒcJ�.և'�n'�/N9�=a_���Ks�B���αF�6�eR.9�E׆�A�q��#�A�:n`�i���\5S��1M�V<�r��$k��p�_����b�'�}
KeyValueFloatf�pYG�A:͈Ai	�A�W�Au�A��Ah��A���A�3�AƿA�G�A��A[mA��NA�_A*��@[�@U�@�@lLE=��>�5b��Y)��؎��>��^@!��@���@wS?���sc�rʗ�Ą���o�n�/@2��@��Al�2A=�aA�-�A�0�A���Am�AL`�A
��A�x�Apr�A��Arl�A�B�A��A[(�AVߎA�~�A?�ZA��CA�+A$SAFB�@	��@��U@�M@��վ��h�R�v�t~��kӛ��Q��ɿ:������ff��+���v���>��촍�v�~��l �#X���$��t���qj��n;��/?�ń@�OAiMdA}D�A��A]QA-SA�5=@��������a�@�
A@�@A�xA��jA��)A��@�4�@n��@��@�ya@��@5�T>�￾Dw�Ä��X������=N��:�������!a�n��E5@���@��A��NA�EGA\HA�`�@˥@R�v@�dM@�@ɹ|?�����f�G���P�?@X�u@|�V@>c�@�)�@�|1A2CA��-A��A���@���@���@�g�@(�@I,�@�}�@��@�9�@1��@%u�@��@)�@G��@Q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCounti�=�AnimationCurveL���-SAnimCurveS�	DefaultD3�KeyVerI�l�%KeyTimelp�<A���a(z�a��
KeyValueFloatf��?��?��?��KeyAttrFlagsi!�KeyAttrDataFloatf

0�KeyAttrRefCounti��AnimationCurveL���-SAnimCurveS��	DefaultD��KeyVerI���%KeyTimelp�<A���a(z�a�
KeyValueFloatf*C)�*C)�*C)�A�KeyAttrFlagsi!{�KeyAttrDataFloatf

��KeyAttrRefCounti-�AnimationCurveLH��-SAnimCurveS�	DefaultD#�KeyVerI�\�%KeyTimelp�<A���a(z�a��
KeyValueFloatf��0���0���0���KeyAttrFlagsi!��KeyAttrDataFloatf

 �KeyAttrRefCounti��AnimationCurveL(a�-SAnimCurveS��	DefaultD��@��KeyVerI�T��KeyTimels�p�<A���A���Ah�FPB
�B���C`�cC�T�C�D��HDX�vD�>��D���DT��E�|b.EP�%�E�y��EL9�F���AF���oFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J,)�`J��֎J(g��J�F�KQ��#K��]FK$�?tKxd!�K�#�K ���K�a�YLp�k�L_/Ml?M���lMj��M�M�Mh\��M���M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ��w0Q�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV�|(5V(<
cV��yV��/�VaA�V~r�Vк;Vy���V9B��V�=�Wx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�aG��
KeyValueFloatfs��ȟ@�F�@U|)@mc�?�.���/p�hg����<?�����d7��Ԏ����x]�
���e��9@��=Lo�V_��������@!\A�>�@���?���m�������E������\���1��|}�?�@�l�@�g0A?9dA��QA�
@AM��@���=<���BW4�:S<�:r��>�;�Ah�?��AK>nA5ΩAl�A�/�A���A�YqA�3>A�2A�EA��rA�A��A��A�Y�A�|�A0��AǾ�A��A�o�A��Ac��A��A��A�B��BI�(B�]B-�Bכ�AK��AliA{3�@�Z?����j�:�)ٜ��?�����*��������{��k_���o(� ���$�(��/��������r>�B�7���!��%�.����a��Q1��?���2����[�./��N����/���4��;�;��>^A?qmZ?q�KeyAttrFlagsi!��KeyAttrDataFloatf

��KeyAttrRefCountis��AnimationCurveL���-SAnimCurveS;�	DefaultD`�7&�S�KeyVerI���KeyTimels�p�<A���A���Ah�FPB
�B���C`�cC�T�C�D��HDX�vD�>��D���DT��E�|b.EP�%�E�y��EL9�F���AF���oFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J,)�`J��֎J(g��J�F�KQ��#K��]FK$�?tKxd!�K�#�K ���K�a�YLp�k�L_/Ml?M���lMj��M�M�Mh\��M���M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ��w0Q�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV�|(5V(<
cV��yV��/�VaA�V~r�Vк;Vy���V9B��V�=�Wx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a���
KeyValueFloatfs�۾1���3���8���=�{�@�(LJ�uO�3�U�kka���T�ҷG��_9���%��s"����?+�9m,��5��y<�z�@�pI@���>��r=��;���0�$V&���"�d&���.�L�<�O�R�J�Z�T�^�>mZ��M�{�>���4��/�iB)��!��(�`��_��g�o��/�#��/��6�c�7��+3���3���:���7���(�7�0�I�N���_���Q��;A�3�V��Nc�T�������"���!����Cl ��{!��v�Sn��I����ޢ�#'�9�4�!�=�E�C�a�J�.�O�%fP��%P�!lN��K�ǒX���S��K�u-I���G���S���Z� mM�x�E�4J���L��<H�8~F�i_F�	C�g�@��4?���>��r>��2>��=�p�<��!<�}�;�Vo;�;��`:�+s9���8���8�)�KeyAttrFlagsi!c�KeyAttrDataFloatf

��KeyAttrRefCountisU�AnimationCurveLX�-SAnimCurveS��	DefaultD�B)��KeyVerI����KeyTimels�p�<A���A���Ah�FPB
�B���C`�cC�T�C�D��HDX�vD�>��D���DT��E�|b.EP�%�E�y��EL9�F���AF���oFHwp�F��3�F�t�TG@�G�q~H��AhH8o�H���I�l�{I0�O�I�i3J,)�`J��֎J(g��J�F�KQ��#K��]FK$�?tKxd!�K�#�K ���K�a�YLp�k�L_/Ml?M���lMj��M�M�Mh\��M���M�y$N�Y=�N`��NW�7O�Շ�OXTK�O�KP�QҦPPЕQ��w0Q�NY^Q���QHL�R�ʣqR�Ig�R@�*)S�F�S�ű�S8Du<T��8�T�A��T0��OU�>��U��FV�|(5V(<
cV��yV��/�VaA�V~r�Vк;Vy���V9B��V�=�Wx9�W �TvW�6�Wp��-X4��X��b�Xh1&AY��Y�.��Y`�pTZ,4�Z���[X)�g[�~�[�&B\P�{\�#��\���2]H!P�]��]��E^@���^�^�^��!Y_8�_���`�ll`0�/�`��#a���a(z�a���
KeyValueFloatfs�H���O�b�t�؍��E��S�C�= '��j��B���bD�D4��տ�_@�yB@@$@��?�EC@��?T`7>�Nė�δ������=�8,9�1������nU�����������I������?��u�� ��#�D�	��ψ���>�@k��@D��@yA�\A��cAj�[A��RA|H=Aa�A��@���@U.�?�L��	h:��§�;�	Y��E��������̞�'��WEf�hJS��q���c�V:�~L-���=�,j=���(�3����2�<4H��(:��W�z
��$��X��k��������@����5�m���M���7p߿UJ���
��qN��U��a�0��{���7��4���������r��/�w�������f���'����|���{�Oc������s���o���٣��+��/߽���������u��V���w�����KeyAttrFlagsi!�KeyAttrDataFloatf

H�KeyAttrRefCountis��#MotionBuilder_SystemLho�9SKTimeWarpManagerSs�Properties70��/PSMoBuTypeNameSKStringSSSBox,�/PSMoBuSubTypeNameSKStringSSS|�BPSMoBuObjectFullNameSKStringSSSKTimeWarpManager��.PSMoBuAttrBlindDataSBlobSSI��
BinaryDataRpf�2PSMoBuRelationBlindDataSBlobSSIY�
BinaryDataRp��/MotionBuilder_GenericL8��9SFaceTime HD Camera (Display)S��Properties70)�1PSMoBuTypeNameSKStringSSSVideoj�3PSMoBuSubTypeNameSKStringSSSLive��UPSMoBuObjectFullNameSKStringSSS#FaceTime HD Camera (Display)Video&�KPS
RecordPathScharptrSSS!C:\Users\bOb\Documents/_214_Run_wallPush-_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.aviW�#PSOnlineSboolSSI��)PSResolutionFRSenumSSI��)PSRecordToFileSboolSSI��(PSRecordAudioSboolSSI0�'PS
CompressorSenumSSIm�.PSMoBuAttrBlindDataSBlobSSI�`��
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp0MotionBuilder_GenericL؋�9SFaceTime HD Camera (Built-in)SrProperties70��1PSMoBuTypeNameSKStringSSSVideo��3PSMoBuSubTypeNameSKStringSSSLiveM�VPSMoBuObjectFullNameSKStringSSS$FaceTime HD Camera (Built-in)Video�LPS
RecordPathScharptrSSS"C:\Users\bOb\Documents/_214_Run_wallPush-_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ResolutionFRSenumSSIF)PSRecordToFileSboolSSI|(PSRecordAudioSboolSSI�'PS
CompressorSenumSSI�.PSMoBuAttrBlindDataSBlobSSI���
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineIe2PSMoBuRelationBlindDataSBlobSSIX
BinaryDataRp!MotionBuilder_GenericL�H�9SVideo Output 1S�Properties701PSMoBuTypeNameSKStringSSSVideo]5PSMoBuSubTypeNameSKStringSSSOutput�GPSMoBuObjectFullNameSKStringSSSVideo Output 1Video�%PSDrawModeSenumSSIs.PSMoBuAttrBlindDataSBlobSSI)f.
BinaryDataR)p	UseMipMapI�2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRp�
!MotionBuilder_SystemL���9SKVideoRendererS�
Properties70�2PSMoBuTypeNameSKStringSSSObject�=PSMoBuSubTypeNameSKStringSSSKVideoRenderer8@PSMoBuObjectFullNameSKStringSSSKVideoRendererE
.PSMoBuAttrBlindDataSBlobSSI�8
�
BinaryDataR�p�
RendererTools4VersionIgP	StartTimeS0kStopTimeS0�StepTimeS1�OutputFormatSAVI�
OutputPathSc:\temp\Output.avi�FormatSFrom Camera	FieldModeI,QualityIORendererAntialingIk
ModelsOnlyI�ViewingModeI�StereoDisplayModeI
�RenderAudioI�AudioFormatI ShowCameraLabelI$ShowTimeCodeIBShowSafeAreaIeGlobalViewingModeI�GlobalStereoDisplayModeI�
2PSMoBuRelationBlindDataSBlobSSI�

BinaryDataRpZ!MotionBuilder_SystemLP��9SKSerialManagerSMProperties70y:PSMoBuTypeNameSKStringSSSKSerialManager�/PSMoBuSubTypeNameSKStringSSS@PSMoBuObjectFullNameSKStringSSSKSerialManager�
.PSMoBuAttrBlindDataSBlobSSI`�
e
BinaryDataR`pS
SerialManager�PortIJTCPPortIhInternalPortI�	IPAddressS0.0.0.0�	IPPortS3001FPortI�TCPPortIInternalPortIBaudRateI�%9
UseHardwareFCI@2PSMoBuRelationBlindDataSBlobSSI3
BinaryDataRp�#MotionBuilder_SystemL�9SKCharacterHelperS�Properties70�0PSMoBuTypeNameSKStringSSSTool;8PSMoBuSubTypeNameSKStringSSS	Character�BPSMoBuObjectFullNameSKStringSSSKCharacterHelper�.PSMoBuAttrBlindDataSBlobSSI�
BinaryDataRp�2PSMoBuRelationBlindDataSBlobSSID�I
BinaryDataRDp7CHARACTER_TOOL9KEYING_MODEISIK_MANIPIqSYMETRY_EDITI�MARKERSET_VISIBILITYI�FLOOR_CONTACT_VISIBILITYI�FINGER_TIPS_VISIBILITYI	REACH_OVERRIDEI*RESIST_OVERRIDEISMotionBuilder_SystemL��9SKNLEManagerSFProperties70b7PSMoBuTypeNameSKStringSSSKNLEManager�/PSMoBuSubTypeNameSKStringSSS�=PSMoBuObjectFullNameSKStringSSSKNLEManager�.PSMoBuAttrBlindDataSBlobSSIs�x
BinaryDataRspf	GlobalNLE0VersionIY	EditSEdite	IsCurrentI}ModelsI`ResultTrack�TakeNameSNoTake�	StartL��s;�����	StopL�FI�BGhostI*TDDDSRDD�DyIsLocalI�StartRefTrackIdxI�����StopRefTrackIdxI�����	
StartRatioD�?�		StopRatioD�?
KeepActiveI2	StartLL	StopLp6��592PSMoBuRelationBlindDataSBlobSSI,
BinaryDataRp�MotionBuilder_SystemL���9SConstraintsS�Properties70�2PSMoBuTypeNameSKStringSSSFolder07PSMoBuSubTypeNameSKStringSSSCategory�EPSMoBuObjectFullNameSKStringSSSConstraintsFolder.PSMoBuAttrBlindDataSBlobSSI5:
BinaryDataR5p(
FolderTypeSConstraints�2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRp� MotionBuilder_SystemL`��9S
KAudioManagerS�Properties70O9PSMoBuTypeNameSKStringSSS
KAudioManager�/PSMoBuSubTypeNameSKStringSSS�?PSMoBuObjectFullNameSKStringSSS
KAudioManagerR.PSMoBuAttrBlindDataSBlobSSIE
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�		LiveDelayD�2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRpF (MotionBuilder_SystemL���9SKMotionTriggerManagerS9 Properties70�APSMoBuTypeNameSKStringSSSKMotionTriggerManager�/PSMoBuSubTypeNameSKStringSSS&GPSMoBuObjectFullNameSKStringSSSKMotionTriggerManager�.PSMoBuAttrBlindDataSBlobSSI*�/
BinaryDataR*p
KEEPACTIVEI, 2PSMoBuRelationBlindDataSBlobSSI 
BinaryDataRp�5MotionBuilder_SystemL���9S
Story rootS�5Properties70� 5PSMoBuTypeNameSKStringSSS	TimelineX!/PSMoBuSubTypeNameSKStringSSSq!FPSMoBuObjectFullNameSKStringSSSStory rootTimeline�!"PSMutedSboolSSI�!#PSSoloedSboolSSI".PSRecordClipPathScharptrSSS<" PSTracksSobjectSSm"#PS	TimelinesSobjectSS�"2PSQuaternionInterpolateSboolSSI#JPSRotationOffsetSColorRGBSColorSDDD\#IPS
RotationPivotSColorRGBSColorSDDD�#IPS
ScalingOffsetSColorRGBSColorSDDD	$HPSScalingPivotSColorRGBSColorSDDDE$.PSTranslationActiveSboolSSI�$JPSTranslationMinSColorRGBSColorSDDD�$JPSTranslationMaxSColorRGBSColorSDDD/%,PSTranslationMinXSboolSSIi%,PSTranslationMinYSboolSSI�%,PSTranslationMinZSboolSSI�%,PSTranslationMaxXSboolSSI&,PSTranslationMaxYSboolSSIQ&,PSTranslationMaxZSboolSSI�&*PS
RotationOrderSenumSSI�&6PSRotationSpaceForLimitOnlySboolSSI';PSRotationStiffnessXSdoubleSNumberSD_';PSRotationStiffnessYSdoubleSNumberSD�';PSRotationStiffnessZSdoubleSNumberSD�'0PSAxisLenSdoubleSNumberSD$@;(GPSPreRotationSColorRGBSColorSDDD�(HPSPostRotationSColorRGBSColorSDDD�(+PSRotationActiveSboolSSI)GPSRotationMinSColorRGBSColorSDDDt)GPSRotationMaxSColorRGBSColorSDDD�))PSRotationMinXSboolSSI�))PSRotationMinYSboolSSI*)PSRotationMinZSboolSSIP*)PSRotationMaxXSboolSSI�*)PSRotationMaxYSboolSSI�*)PSRotationMaxZSboolSSI�*(PSInheritTypeSenumSSI,+*PS
ScalingActiveSboolSSI�+FPS
ScalingMinSColorRGBSColorSDDD�+FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?
,(PSScalingMinXSboolSSI@,(PSScalingMinYSboolSSIv,(PSScalingMinZSboolSSI�,(PSScalingMaxXSboolSSI�,(PSScalingMaxYSboolSSI-(PSScalingMaxZSboolSSIv-PPSGeometricTranslationSColorRGBSColorSDDD�-MPSGeometricRotationSColorRGBSColorSDDD+.LPSGeometricScalingSColorRGBSColorSD�?D�?D�?o.6PS
MinDampRangeXSdoubleSNumberSD�.6PS
MinDampRangeYSdoubleSNumberSD�.6PS
MinDampRangeZSdoubleSNumberSD;/6PS
MaxDampRangeXSdoubleSNumberSD/6PS
MaxDampRangeYSdoubleSNumberSD�/6PS
MaxDampRangeZSdoubleSNumberSD
09PSMinDampStrengthXSdoubleSNumberSDQ09PSMinDampStrengthYSdoubleSNumberSD�09PSMinDampStrengthZSdoubleSNumberSD�09PSMaxDampStrengthXSdoubleSNumberSD&19PSMaxDampStrengthYSdoubleSNumberSDm19PSMaxDampStrengthZSdoubleSNumberSD�17PSPreferedAngleXSdoubleSNumberSD�17PSPreferedAngleYSdoubleSNumberSD<27PSPreferedAngleZSdoubleSNumberSDk2!PSShowSboolSSI�28PSNegativePercentShapeSupportSboolSSI
3KPSLcl TranslationSColorRGBSColorSDDD`3HPSLcl RotationSColorRGBSColorSDDD�3GPSLcl ScalingSColorRGBSColorSD�?D�?D�?�33PS
VisibilitySdoubleSNumberSD�?15.PSMoBuAttrBlindDataSBlobSSI�$5�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI�52PSMoBuRelationBlindDataSBlobSSI�5
BinaryDataRp<KMotionBuilder_SystemLpm�9S	Edit rootS/KProperties70[65PSMoBuTypeNameSKStringSSS	TimelineX�6/PSMoBuSubTypeNameSKStringSSS�6EPSMoBuObjectFullNameSKStringSSSEdit rootTimeline7"PSMutedSboolSSIL7#PSSoloedSboolSSI�7.PSRecordClipPathScharptrSSS�7 PSTracksSobjectSS�7#PS	TimelinesSobjectSS'82PSQuaternionInterpolateSboolSSI8JPSRotationOffsetSColorRGBSColorSDDD�8IPS
RotationPivotSColorRGBSColorSDDD-9IPS
ScalingOffsetSColorRGBSColorSDDD�9HPSScalingPivotSColorRGBSColorSDDD�9.PSTranslationActiveSboolSSI:JPSTranslationMinSColorRGBSColorSDDDo:JPSTranslationMaxSColorRGBSColorSDDD�:,PSTranslationMinXSboolSSI�:,PSTranslationMinYSboolSSI;,PSTranslationMinZSboolSSIW;,PSTranslationMaxXSboolSSI�;,PSTranslationMaxYSboolSSI�;,PSTranslationMaxZSboolSSI<*PS
RotationOrderSenumSSIG<6PSRotationSpaceForLimitOnlySboolSSI�<;PSRotationStiffnessXSdoubleSNumberSD�<;PSRotationStiffnessYSdoubleSNumberSD"=;PSRotationStiffnessZSdoubleSNumberSD`=0PSAxisLenSdoubleSNumberSD$@�=GPSPreRotationSColorRGBSColorSDDD>HPSPostRotationSColorRGBSColorSDDDD>+PSRotationActiveSboolSSI�>GPSRotationMinSColorRGBSColorSDDD�>GPSRotationMaxSColorRGBSColorSDDD%?)PSRotationMinXSboolSSI\?)PSRotationMinYSboolSSI�?)PSRotationMinZSboolSSI�?)PSRotationMaxXSboolSSI@)PSRotationMaxYSboolSSI8@)PSRotationMaxZSboolSSIn@(PSInheritTypeSenumSSI�@*PS
ScalingActiveSboolSSI�@FPS
ScalingMinSColorRGBSColorSDDDNAFPS
ScalingMaxSColorRGBSColorSD�?D�?D�?�A(PSScalingMinXSboolSSI�A(PSScalingMinYSboolSSI�A(PSScalingMinZSboolSSI&B(PSScalingMaxXSboolSSI\B(PSScalingMaxYSboolSSI�B(PSScalingMaxZSboolSSI�BPPSGeometricTranslationSColorRGBSColorSDDDKCMPSGeometricRotationSColorRGBSColorSDDD�CLPSGeometricScalingSColorRGBSColorSD�?D�?D�?�C6PS
MinDampRangeXSdoubleSNumberSD-D6PS
MinDampRangeYSdoubleSNumberSDqD6PS
MinDampRangeZSdoubleSNumberSD�D6PS
MaxDampRangeXSdoubleSNumberSD�D6PS
MaxDampRangeYSdoubleSNumberSD=E6PS
MaxDampRangeZSdoubleSNumberSD�E9PSMinDampStrengthXSdoubleSNumberSD�E9PSMinDampStrengthYSdoubleSNumberSDF9PSMinDampStrengthZSdoubleSNumberSDYF9PSMaxDampStrengthXSdoubleSNumberSD�F9PSMaxDampStrengthYSdoubleSNumberSD�F9PSMaxDampStrengthZSdoubleSNumberSD,G7PSPreferedAngleXSdoubleSNumberSDqG7PSPreferedAngleYSdoubleSNumberSD�G7PSPreferedAngleZSdoubleSNumberSD�G!PSShowSboolSSI+H8PSNegativePercentShapeSupportSboolSSI�HKPSLcl TranslationSColorRGBSColorSDDD�HHPSLcl RotationSColorRGBSColorSDDD/IGPSLcl ScalingSColorRGBSColorSD�?D�?D�?pI3PS
VisibilitySdoubleSNumberSD�?�J.PSMoBuAttrBlindDataSBlobSSI��J�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI"K2PSMoBuRelationBlindDataSBlobSSIK
BinaryDataRpTN$MotionBuilder_SystemLP�9SKTimelineXManagerSGNProperties70�K=PSMoBuTypeNameSKStringSSSKTimelineXManager"L/PSMoBuSubTypeNameSKStringSSSsLCPSMoBuObjectFullNameSKStringSSSKTimelineXManager�M.PSMoBuAttrBlindDataSBlobSSI��M�
BinaryDataR�p�GlobalTimelineX3MuteIVTimeDiscontinuityIwTimeReferentialI�EditStartEndLLp6��5�EditZoomStartEndLLp6��5:N2PSMoBuRelationBlindDataSBlobSSI-N
BinaryDataRp�PMotionBuilder_SystemL(.�9SPosesS�PProperties70�N2PSMoBuTypeNameSKStringSSSFolder+O7PSMoBuSubTypeNameSKStringSSSCategoryxO?PSMoBuObjectFullNameSKStringSSS
PosesFolderP.PSMoBuAttrBlindDataSBlobSSI/�O4
BinaryDataR/p"

FolderTypeSPoses�P2PSMoBuRelationBlindDataSBlobSSIvP
BinaryDataRp�RMotionBuilder_SystemL���9STakesS�RProperties70/Q2PSMoBuTypeNameSKStringSSSFoldertQ7PSMoBuSubTypeNameSKStringSSSCategory�Q?PSMoBuObjectFullNameSKStringSSS
TakesFolderUR.PSMoBuAttrBlindDataSBlobSSI/HR4
BinaryDataR/p"

FolderTypeSTakes�R2PSMoBuRelationBlindDataSBlobSSI�R
BinaryDataRp�VMotionBuilder_SystemLH��9SGlobal LightS�VProperties70�S9PSMoBuTypeNameSKStringSSS
GlobalShading�S4PSMoBuSubTypeNameSKStringSSSLightT>PSMoBuObjectFullNameSKStringSSSGlobal LightdTBPS
Ambient ColorSColorSSAD����?D����?D����?�T>PS	Fog ColorSColorSSAD�?D�?D�?�T-PS	Fog BeginSNumberSSAD@33�?$U+PSFog EndSNumberSSAD@�@aU/PSFog DensitySNumberSSAD@�U$PSFogModeSenumSSI�U&PS	FogEnableSboolSSI:V.PSMoBuAttrBlindDataSBlobSSI-V
BinaryDataRp�V2PSMoBuRelationBlindDataSBlobSSI�V
BinaryDataRp&\MotionBuilder_SystemL���9SRendererS\Properties70bW4PSMoBuTypeNameSKStringSSSRenderer�W6PSMoBuSubTypeNameSKStringSSSDefault�WDPSMoBuObjectFullNameSKStringSSSRendererRenderer1X+PSFrustumCullingSboolSSIiX*PS
DisplayNormalSboolSSI�X/PSDisplayBoundingBoxSboolSSI�X;PSDisplayHierarchicalBoundingBoxSboolSSI)Y,PSIDBufferPickingSboolSSItY=PSIDBufferPickingAlphaSdoubleSNumberSD�?�Y,PSIDBufferDisplaySboolSSI�Y.PSSelectionOverrideSboolSSI>ZFPSSelectionOverrideTransparencySdoubleSNumberSD�?�ZRPSSelectionOverrideColorSColorRGBSColorSD�������?D�?D�������?�Z7PSCurrentCallbackIndexSintSIntegerSI����"[1PSAdvancedMaterialModeSboolSSI�[.PSMoBuAttrBlindDataSBlobSSI�[
BinaryDataRp\2PSMoBuRelationBlindDataSBlobSSI�[
BinaryDataRp�d&MotionBuilder_SystemL��9SPython Tool ManagerS�dProperties70�\4PSMoBuTypeNameSKStringSSS__FBTool]/PSMoBuSubTypeNameSKStringSSSX]EPSMoBuObjectFullNameSKStringSSSPython Tool Manager�]'PSCaptionScharptrSSS�]$PSEnabledSboolSSI�]%PSReadOnlySboolSSI$^$PSVisibleSboolSSIY^'PSLeftSintSIntegerSI�^&PSTopSintSIntegerSI�^(PSWidthSintSIntegerSI�^)PSHeightSintSIntegerSI2_*PSAnchorsSintSIntegerSIh_(PSSkinContextSenumSSI�_$PSHintScharptrSSS�_)PS	HintMouseScharptrSSS`0PS
HintMouseLeftSintSIntegerSI����L`/PSHintMouseTopSintSIntegerSI�����`1PSHintMouseWidthSintSIntegerSI�����`2PSHintMouseHeightSintSIntegerSI����
a1PSHintIsTextCompletionSboolSSI;a#PSActiveSboolSSIpa'PS
ActiveControlSobjectSS�a,PSBackgroundBrushSenumSSI�a.PSBorderStyleSintSIntegerSIb+PSPositionSintSIntegerSIZb-PS
StartWSizeSintSIntegerSI��b-PS
StartHSizeSintSIntegerSI��b+PSMaxWSizeSintSIntegerSI����c+PSMaxHSizeSintSIntegerSI����@c+PSMinWSizeSintSIntegerSI�yc+PSMinHSizeSintSIntegerSI�����c,PS	StartXPosSintSIntegerSI�����c,PS	StartYPosSintSIntegerSI����`d.PSMoBuAttrBlindDataSBlobSSISd
BinaryDataRp�d2PSMoBuRelationBlindDataSBlobSSI�d
BinaryDataRp�m(MotionBuilder_SystemL��9SBatch Tool (scripted)S�mProperties70�e4PSMoBuTypeNameSKStringSSS__FBTool�e/PSMoBuSubTypeNameSKStringSSS'fGPSMoBuObjectFullNameSKStringSSSBatch Tool (scripted)\f'PSCaptionScharptrSSS�f$PSEnabledSboolSSI�f%PSReadOnlySboolSSI�f$PSVisibleSboolSSI(g'PSLeftSintSIntegerSI\g&PSTopSintSIntegerSI�g(PSWidthSintSIntegerSI�g)PSHeightSintSIntegerSIh*PSAnchorsSintSIntegerSI7h(PSSkinContextSenumSSIih$PSHintScharptrSSS�h)PS	HintMouseScharptrSSS�h0PS
HintMouseLeftSintSIntegerSI����i/PSHintMouseTopSintSIntegerSI����Zi1PSHintMouseWidthSintSIntegerSI�����i2PSHintMouseHeightSintSIntegerSI�����i1PSHintIsTextCompletionSboolSSI
j#PSActiveSboolSSI?j'PS
ActiveControlSobjectSSyj,PSBackgroundBrushSenumSSI�j.PSBorderStyleSintSIntegerSI�j+PSPositionSintSIntegerSI)k-PS
StartWSizeSintSIntegerSIdk-PS
StartHSizeSintSIntegerSIm�k+PSMaxWSizeSintSIntegerSI�����k+PSMaxHSizeSintSIntegerSI����l+PSMinWSizeSintSIntegerSI�Hl+PSMinHSizeSintSIntegerSI�����l,PS	StartXPosSintSIntegerSI�����l,PS	StartYPosSintSIntegerSI����/m.PSMoBuAttrBlindDataSBlobSSI"m
BinaryDataRp�m2PSMoBuRelationBlindDataSBlobSSI�m
BinaryDataRp�v3MotionBuilder_SystemLH��9S Character Selection/Key ControlsS�vProperties70on4PSMoBuTypeNameSKStringSSS__FBTool�n/PSMoBuSubTypeNameSKStringSSSoRPSMoBuObjectFullNameSKStringSSS Character Selection/Key ControlsAo'PSCaptionScharptrSSSso$PSEnabledSboolSSI�o%PSReadOnlySboolSSI�o$PSVisibleSboolSSI
p'PSLeftSintSIntegerSIAp&PSTopSintSIntegerSIwp(PSWidthSintSIntegerSI�p)PSHeightSintSIntegerSI�p*PSAnchorsSintSIntegerSIq(PSSkinContextSenumSSINq$PSHintScharptrSSS�q)PS	HintMouseScharptrSSS�q0PS
HintMouseLeftSintSIntegerSI����r/PSHintMouseTopSintSIntegerSI����?r1PSHintMouseWidthSintSIntegerSI����r2PSHintMouseHeightSintSIntegerSI�����r1PSHintIsTextCompletionSboolSSI�r#PSActiveSboolSSI$s'PS
ActiveControlSobjectSS^s,PSBackgroundBrushSenumSSI�s.PSBorderStyleSintSIntegerSI�s+PSPositionSintSIntegerSIt-PS
StartWSizeSintSIntegerSI�It-PS
StartHSizeSintSIntegerSIx�t+PSMaxWSizeSintSIntegerSI�����t+PSMaxHSizeSintSIntegerSI�����t+PSMinWSizeSintSIntegerSI�-u+PSMinHSizeSintSIntegerSI����gu,PS	StartXPosSintSIntegerSI�����u,PS	StartYPosSintSIntegerSI����v.PSMoBuAttrBlindDataSBlobSSIv
BinaryDataRp�v2PSMoBuRelationBlindDataSBlobSSI~v
BinaryDataRp^MotionBuilder_SystemL(U�9S
FBX ExportSQProperties70>w4PSMoBuTypeNameSKStringSSS__FBTool{w/PSMoBuSubTypeNameSKStringSSS�w<PSMoBuObjectFullNameSKStringSSS
FBX Export�w'PSCaptionScharptrSSS,x$PSEnabledSboolSSI_x%PSReadOnlySboolSSI�x$PSVisibleSboolSSI�x'PSLeftSintSIntegerSI�x&PSTopSintSIntegerSI0y(PSWidthSintSIntegerSIgy)PSHeightSintSIntegerSI�y*PSAnchorsSintSIntegerSI�y(PSSkinContextSenumSSIz$PSHintScharptrSSS>z)PS	HintMouseScharptrSSS|z0PS
HintMouseLeftSintSIntegerSI�����z/PSHintMouseTopSintSIntegerSI�����z1PSHintMouseWidthSintSIntegerSI����8{2PSHintMouseHeightSintSIntegerSI����w{1PSHintIsTextCompletionSboolSSI�{#PSActiveSboolSSI�{'PS
ActiveControlSobjectSS|,PSBackgroundBrushSenumSSIS|.PSBorderStyleSintSIntegerSI�|+PSPositionSintSIntegerSI�|-PS
StartWSizeSintSIntegerSI^}-PS
StartHSizeSintSIntegerSI�;}+PSMaxWSizeSintSIntegerSI����t}+PSMaxHSizeSintSIntegerSI�����}+PSMinWSizeSintSIntegerSI��}+PSMinHSizeSintSIntegerSI���� ~,PS	StartXPosSintSIntegerSI����Z~,PS	StartYPosSintSIntegerSI�����~.PSMoBuAttrBlindDataSBlobSSI�~
BinaryDataRpD2PSMoBuRelationBlindDataSBlobSSI7
BinaryDataRpQ� MotionBuilder_SystemLx(�9S
HierarchyViewSD�Properties70�;PSMoBuTypeNameSKStringSSSKtHierarchyView>�/PSMoBuSubTypeNameSKStringSSS��?PSMoBuObjectFullNameSKStringSSS
HierarchyView��.PSMoBuAttrBlindDataSBlobSSI�%���%
BinaryDataR�%p�%
HierarchyView5ShowGridI�%ObjectsAttributes�NameSReferenceModel�	XDؖ��	YDI@�ExpandedIDNameSHipsModel	XDؖ�	YDY@7ExpandedI�NameSSpineModel}	XDL���	YD�b@�ExpandedI2NameSChestModel�	XD���	YDi@%ExpandedI�NameSNeckModelj	XDL���	YD@o@�ExpandedINameSHeadModel�	XD����	YD�r@ExpandedI�NameSLeftEyeModelY	XDu��p	YD�v@�ExpandedINameSRightEyeModel�	XD*���	YD�u@ExpandedI�NameS
JawModelH	XD���_	YD�v@yExpandedINameSTongueBackModel�	XD߱��	YDz@�ExpandedI}NameSTongueTipModel?	XD���V	YDy@pExpandedI�NameSLeftLipLowerModel�	XDI���	YDz@�ExpandedIsNameS
JawENDModel5	XD���L	YDy@fExpandedI�NameSRightLipLowerModel�	XD����	YDz@�ExpandedIrNameSRightLipCornerModel4	XDh��K	YDy@eExpandedI�NameSLeftLipCornerModel�	XD���	YDz@�ExpandedIoNameSLeftLipUpperModel1	XDx��H	YD�u@bExpandedI�NameSLeftNostrilModel�	XD���	YD�v@�ExpandedIg	NameSLeftCheekModel)		XDL��@		YD�u@Z	ExpandedI�	NameSLeftEyelidLowerModel�		XD����		YD�v@�	ExpandedIi
NameSLeftEyelidUpperModel+
	XD ��B
	YD�u@\
ExpandedI�
NameSLeftInnerBrowModel�
	XD����
	YD�v@�
ExpandedIhNameSLeftIOuterBrowModel*	XD���A	YD�u@[ExpandedI�NameSRightInnerBrowModel�	XD^���	YD�v@�ExpandedIiNameSRightIOuterBrowModel+	XDȩ�B	YD�u@\ExpandedI�NameSRightEyelidUpperModel�	XD2���	YD�v@�ExpandedIm
NameSRightEyelidLowerModel/
	XD���F
	YD�u@`
ExpandedI�
NameSRightCheekModel�
	XD���
	YD�v@�
ExpandedIgNameSRightNostrilModel)	XDp��@	YD�u@ZExpandedI�NameSRightLipUpperModel�	XDڦ��	YD�v@�ExpandedIeNameSRightShoulderModel'	XD���>	YD�p@XExpandedI�NameSRightArmModel�	XD ���	YD�s@�ExpandedI]NameSRightForeArmModel	XD���6	YD�v@PExpandedI�NameSRightHandModel�	XDL���	YDz@�ExpandedIYNameSRightHandPinky1Model	XD���2	YD }@LExpandedI�NameSRightHandPinky2Model�	XD���	YD �@�ExpandedI[NameSRightHandPinky3Model	XD6��4	YD��@NExpandedI�NameSRightHandRing1Model�	XDH���	YD |@�ExpandedI[NameSRightHandRing2Model	XD���4	YD@@NExpandedI�NameSRightHandRing3Model�	XDޡ��	YD0�@�ExpandedI]NameSRightHandMiddle1Model	XD���6	YD }@PExpandedI�NameSRightHandMiddle2Model�	XDx���	YD �@�ExpandedIaNameSRightHandMiddle3Model#	XD��:	YD��@TExpandedI�NameSRightHandIndex1Model�	XD0���	YD |@�ExpandedIcNameSRightHandIndex2Model%	XDș�<	YD@@VExpandedI�NameSRightHandIndex3Model�	XD\���	YD0�@�ExpandedIeNameSRightHandThumb1Model'	XD���>	YD }@XExpandedI�NameSRightHandThumb2Model�	XD���	YD �@�ExpandedIgNameSRightHandThumb3Model)	XD���@	YD��@ZExpandedI�NameSLeftShoulderModel�	XD@\@�	YD�p@�ExpandedI^NameSLeftArmModel 	XD�R@7	YD�s@QExpandedI�NameSLeftForeArmModel�	XDC@�	YD�v@�ExpandedIUNameSLeftHandModel	XD.	YDz@HExpandedI�NameSLeftHandPinky1Model�	XD���	YD }@�ExpandedIUNameSLeftHandPinky2Model	XD��.	YD �@HExpandedI�NameSLeftHandPinky3Model�	XD@���	YD��@�ExpandedITNameSLeftHandRing1Model	XDu�-	YD |@GExpandedI�NameSLeftHandRing2Model�	XDpw��	YD@@�ExpandedIRNameSLeftHandRing3Model	XD�y�+	YD0�@EExpandedI�NameSLeftHandMiddle1Model�	XD�B��	YD }@�ExpandedITNameSLeftHandMiddle2Model	XD�R�-	YD �@GExpandedI�NameSLeftHandMiddle3Model�	XD\��	YD��@�ExpandedIUNameSLeftHandIndex1Model	XDpp@.	YD |@HExpandedI�NameSLeftHandIndex2Model�	XD l@�	YD@@�ExpandedIU NameSLeftHandIndex3Model 	XD�g@. 	YD0�@H ExpandedI� NameSLeftHandThumb1Model� 	XD��@� 	YD }@� ExpandedIU!NameSLeftHandThumb2Model!	XDh�@.!	YD �@H!ExpandedI�!NameSLeftHandThumb3Model�!	XD�~@�!	YD��@�!ExpandedIQ"NameSRightUpLegModel"	XD�@*"	YD�d@D"ExpandedI�"NameSRightLegModel�"	XDX�@�"	YDk@�"ExpandedIF#NameSRightFootModel#	XD��@#	YD�p@9#ExpandedI�#NameSRightToesModel�#	XD,�@�#	YD�s@�#ExpandedI<$NameSLeftUpLegModel�#	XD��@$	YD�d@/$ExpandedI�$NameSLeftLegModelw$	XD`�@�$	YDk@�$ExpandedI/%NameSLeftFootModel�$	XDș@%	YD�p@"%ExpandedI�%NameSLeftToesModelk%	XD4�@�%	YD�s@�%ExpandedI7�2PSMoBuRelationBlindDataSBlobSSI*�
BinaryDataRpc�MotionBuilder_SystemL�K�9S	TransportSV�Properties70�,PSMoBuTypeNameSKStringSSS�/PSMoBuSubTypeNameSKStringSSSg�;PSMoBuObjectFullNameSKStringSSS	Transport��'PSCaptionScharptrSSSΨ$PSEnabledSboolSSI�%PSReadOnlySboolSSI3�$PSVisibleSboolSSIh�'PSLeftSintSIntegerSI��&PSTopSintSIntegerSIҩ(PSWidthSintSIntegerSI	�)PSHeightSintSIntegerSIA�*PSAnchorsSintSIntegerSIw�(PSSkinContextSenumSSI��$PSHintScharptrSSS�)PS	HintMouseScharptrSSS�0PS
HintMouseLeftSintSIntegerSI����[�/PSHintMouseTopSintSIntegerSI������1PSHintMouseWidthSintSIntegerSI����ګ2PSHintMouseHeightSintSIntegerSI�����1PSHintIsTextCompletionSboolSSIJ�#PSActiveSboolSSI�'PS
ActiveControlSobjectSS��,PSBackgroundBrushSenumSSI��.PSBorderStyleSintSIntegerSI.�+PSPositionSintSIntegerSIү.PSMoBuAttrBlindDataSBlobSSI?ůD
BinaryDataR?p2Transport Tool Settings�ZoomBar Settings�_214_Run_wallPush�ZoomWindowModeI�ZoomWindowTimeLLp6��5�Audio Display SettingsAudioDisplayI'
AudioClipNameSGAudioTrackNameSoAudioLeftChannelActiveI�AudioRightChannelActiveI%Settings�
TimeFormatI�SnapOnFramesIReferenceTimeIndexI����I�2PSMoBuRelationBlindDataSBlobSSI<�
BinaryDataRpz�MotionBuilder_SystemLX7�9SFCurveSm�Properties70�,PSMoBuTypeNameSKStringSSS-�/PSMoBuSubTypeNameSKStringSSSs�8PSMoBuObjectFullNameSKStringSSSFCurve��'PSCaptionScharptrSSSڱ$PSEnabledSboolSSI
�%PSReadOnlySboolSSI?�$PSVisibleSboolSSIt�'PSLeftSintSIntegerSI��&PSTopSintSIntegerSI޲(PSWidthSintSIntegerSI�)PSHeightSintSIntegerSIM�*PSAnchorsSintSIntegerSI��(PSSkinContextSenumSSI��$PSHintScharptrSSS�)PS	HintMouseScharptrSSS*�0PS
HintMouseLeftSintSIntegerSI����g�/PSHintMouseTopSintSIntegerSI������1PSHintMouseWidthSintSIntegerSI�����2PSHintMouseHeightSintSIntegerSI����%�1PSHintIsTextCompletionSboolSSIV�#PSActiveSboolSSI��'PS
ActiveControlSobjectSSŵ,PSBackgroundBrushSenumSSI�.PSBorderStyleSintSIntegerSI:�+PSPositionSintSIntegerSI�.PSMoBuAttrBlindDataSBlobSSIJܷO
BinaryDataRJp=FCurve Tool Settings0FCurve Editor Settings#Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveI`�2PSMoBuRelationBlindDataSBlobSSIS�
BinaryDataRp��MotionBuilder_GenericL W�9S
GlobalInfoS��Properties70�5PSMoBuTypeNameSKStringSSS	SceneInfoZ�7PSMoBuSubTypeNameSKStringSSSUserData��GPSMoBuObjectFullNameSKStringSSSGlobalInfoSceneInfo�.PSMoBuAttrBlindDataSBlobSSI����
BinaryDataR�pVersionId�MetaDataHVersionId_TitleSxSubjectS�AuthorS�KeywordsS�RevisionS�CommentS��2PSMoBuRelationBlindDataSBlobSSIu�
BinaryDataRp�)	Connections�CSOOLh�:L�CSOOL���;L8Gv)6�CSOOLp|�;L0Bv)]�CSOOL`x�;L(=v)��CSOOL`��;LHQv)��CSOOL�9�;LPVv)ҼCSOOL���;L 8v)��CSOOLǗ;L)v) �CSOOL���9L`�:G�CSOOLx�:L���9n�CSOOLO�:L���9��CSOOL Dž:L���9��CSOOL��:L���9�CSOOL2�:L���9
�CSOOLXM�:L���91�CSOOL��:L���9X�CSOOL`Ʌ:L���9�CSOOL�,�:L���9��CSOOL@��:L���9;CSOOL��:L���9��CSOOL�F�:L���9�CSOOL���:L���9B�CSOOL���:L���9i�CSOOL���:L���9��CSOOLH��:L���9��CSOOLh�:L���9޿CSOOL`�:L���9�CSOOLP��:L���9,�CSOOL@/�:L���9S�CSOOLx`�:L���9z�CSOOL��:L���9��CSOOLF�:L���9��CSOOL���:L���9��CSOOL��:L���9�CSOOL�-�:L���9=�CSOOL�:L���9d�CSOOLВ�:L���9��CSOOL�:L���9��CSOOLp��:L���9��CSOOLx��9L���9�CSOOL��9L���9'�CSOOL��9L���9N�CSOOL���9L���9u�CSOOL���9L���9��CSOOL ��9L���9��CSOOL(��9L���9��CSOOLb�9L���9�CSOOL�h�9L���98�CSOOLp��9L���9_�CSOOLГ�9L���9��CSOOL��9L���9��CSOOLЊ�9L���9��CSOOL8��9L���9��CSOOL���9L���9"�CSOOL`��9L���9I�CSOOLȃ�9L���9p�CSOOL ��9L���9��CSOOL�y�9L���9��CSOOLX{�9L���9��CSOOL�w�9L���9�CSOOL�q�9L���93�CSOOL�r�9L���9Z�CSOOL@o�9L���9��CSOOL8h�9L���9��CSOOL�\�9L���9��CSOOL�_�9L���9��CSOOL���9L���9�CSOOLp��9L���9D�CSOOL@��9L���9k�CSOOL��9L���9��CSOOL��9L���9��CSOOL���9L���9��CSOOL���9L���9�CSOOLP��9L���9.�CSOOL ��9L���9U�CSOOL���9L���9|�CSOOL���9L���9��CSOOL���9L���9��CSOOL`��9L���9��CSOOL0��9L���9�CSOOL��9L���9?�CSOOL`��9L���9f�CSOOL0��9L���9��CSOOL��9L���9��CSOOL���9L���9��CSOOL���9L���9�CSOOLp��9L���9)�CSOOL@��9L���9P�CSOOL��9L���9w�CSOOL���9L���9��CSOOL���9L���9��CSOOL���9L���9��CSOOLP��9L���9�CSOOL ��9L���9:�CSOOL���9L���9a�CSOOL���9L���9��CSOOL���9L���9��CSOOL`�9L���9��CSOOL0�9L���9��CSOOL�9L���9$�CSOOL��9L���9K�CSOOLx�:Lh�:r�CSOOLp
�:Lh�:��CSOOL8�:Lp
�:��CSOOLx�:Lp
�:��CSOOL ��:Lp
�:�CSOOL��9Lp
�:I�-CSOPLx�:Lp
�:SLcl Translation��*CSOPLO�:Lp
�:SLcl Rotation��CSOOL�r:Lx�:��CSOOL��:Lx�:
�-CSOPL Dž:Lx�:SLcl TranslationB�*CSOPL��:Lx�:SLcl Rotationi�CSOOL�Y:L��:��CSOOL��:L��:��CSOOLX�;:L��:��CSOOLx|f:L��:�CSOOL�:L��:,�CSOOL��:L��:g�-CSOPL2�:L��:SLcl Translation��*CSOPLXM�:L��:SLcl Rotation��CSOOL�:L��:��CSOOL�#�:L��:�CSOOL�(�:L��:;�CSOOL�-�:L��:b�CSOOL�M�9L��:��CSOOL�R�9L��:��CSOOL�W�9L��:��CSOOL�\�9L��:��CSOOLb�9L��:%�CSOOLg�9L��:L�CSOOLl�9L��:s�CSOOL �;:L��:��CSOOL(�;:L��:��CSOOL0�;:L��:��CSOOL8�;:L��:�CSOOL@�;:L��:6�CSOOLH�;:L��:]�CSOOLP�;:L��:��-CSOPL��:L��:SLcl Translation��*CSOPL`Ʌ:L��:SLcl Rotation��CSOOL�x:L�#�:�CSOOL��:L�(�:E�CSOOL�:L�-�:l�CSOOL�2�:L�-�:��CSOOL�7�:L�-�:��CSOOL�4�9L�-�:��CSOOL�9�9L�-�:�CSOOL�>�9L�-�:/�CSOOL�C�9L�-�:V�CSOOL�H�9L�-�:}�CSOOLx�:L�2�:��CSOOL8":L�7�:��CSOOL�,:L�4�9��CSOOLxE:L�9�9�CSOOL�l:L�>�9@�CSOOL8�:L�C�9g�CSOOL8}:L�H�9��CSOOLx:L�M�9��CSOOL�2:L�R�9��CSOOLx�:L�W�9�CSOOLx�:L�\�9*�CSOOL�_:Lb�9Q�CSOOL��:Lg�9x�CSOOL�B:Ll�9��CSOOL�^:L �;:��CSOOL�#:L(�;:��CSOOL8^:L0�;:�CSOOL8D:L8�;:;�CSOOLx+:L@�;:b�CSOOL8g:LH�;:��CSOOL��:LP�;:��CSOOL��:LX�;:��CSOOL`�;:LX�;:�-CSOPL�,�:LX�;:SLcl TranslationJ�*CSOPL@��:LX�;:SLcl Rotationq�CSOOL��:L`�;:��CSOOLh�;:L`�;:��-CSOPL��:L`�;:SLcl Translation�*CSOPL�F�:L`�;:SLcl Rotation2�CSOOL8:Lh�;:Y�CSOOLp�;:Lh�;:��-CSOPL���:Lh�;:SLcl Translation��*CSOPL���:Lh�;:SLcl Rotation��CSOOL�.:Lp�;:�CSOOLx�;:Lp�;:A�CSOOL��5:Lp�;:h�CSOOL�5:Lp�;:��CSOOL(�5:Lp�;:��CSOOL@�5:Lp�;:��-CSOPL���:Lp�;:SLcl Translation)�*CSOPLH��:Lp�;:SLcl RotationP�CSOOLx�:Lx�;:w�CSOOL�5:Lx�;:��-CSOPLh�:Lx�;:SLcl Translation��*CSOPL`�:Lx�;:SLcl Rotation�CSOOL8-:L�5:8�CSOOL��5:L�5:s�-CSOPLP��:L�5:SLcl Translation��*CSOPL@/�:L�5:SLcl Rotation��CSOOL��:L��5:
�-CSOPLx`�:L��5:SLcl TranslationE�*CSOPL��:L��5:SLcl Rotationl�CSOOLx�:L��5:��CSOOL�5:L��5:��-CSOPLF�:L��5:SLcl Translation�*CSOPL���:L��5:SLcl Rotation-�CSOOLx:L�5:T�CSOOL�5:L�5:��-CSOPL��:L�5:SLcl Translation��*CSOPL�-�:L�5:SLcl Rotation��CSOOL��:L�5:)�-CSOPL�:L�5:SLcl Translationa�*CSOPL�:L�5:SLcl Rotation��CSOOL�!:L�5:��CSOOL�5:L�5:��-CSOPL�:L�5:SLcl Translation"�*CSOPLp��:L�5:SLcl RotationI�CSOOL��:L�5:p�CSOOL �5:L�5:��-CSOPLx��9L�5:SLcl Translation��*CSOPL��9L�5:SLcl Rotation
�CSOOLx�:L �5:E�-CSOPL��9L �5:SLcl Translation}�*CSOPL���9L �5:SLcl Rotation��CSOOL�t:L(�5:��CSOOL0�5:L(�5:�-CSOPL���9L(�5:SLcl Translation>�*CSOPL ��9L(�5:SLcl Rotatione�CSOOL��:L0�5:��CSOOL8�5:L0�5:��-CSOPL(��9L0�5:SLcl Translation��*CSOPLb�9L0�5:SLcl Rotation&�CSOOLx�:L8�5:a�-CSOPL�h�9L8�5:SLcl Translation��*CSOPLp��9L8�5:SLcl Rotation��CSOOLx�:L@�5:��CSOOLhrf:L@�5:"�-CSOPLГ�9L@�5:SLcl TranslationZ�*CSOPL��9L@�5:SLcl Rotation��CSOOLx:Lhrf:��CSOOLpwf:Lhrf:��-CSOPLЊ�9Lhrf:SLcl Translation
�CSOOL8:Lpwf:E�-CSOPL8��9Lpwf:SLcl Translationl�CSOOL�D:Lx|f:��CSOOL��f:Lx|f:��-CSOPL���9Lx|f:SLcl Translation�*CSOPL`��9Lx|f:SLcl Rotation-�CSOOLx8:L��f:T�CSOOL��f:L��f:��-CSOPLȃ�9L��f:SLcl Translation��*CSOPL ��9L��f:SLcl Rotation��CSOOL8q:L��f:�CSOOL��f:L��f:P�-CSOPL�y�9L��f:SLcl Translation��*CSOPLX{�9L��f:SLcl Rotation��CSOOL8:L��f:��CSOOL��f:L��f:��CSOOL��f:L��f:$�CSOOL�s�:L��f:K�CSOOL���:L��f:r�CSOOL��:L��f:��-CSOPL�w�9L��f:SLcl Translation��*CSOPL�q�9L��f:SLcl Rotation�CSOOL��:L��f:3�CSOOL��f:L��f:n�-CSOPL�r�9L��f:SLcl Translation��*CSOPL@o�9L��f:SLcl Rotation��CSOOLx{:L��f:��CSOOL��f:L��f:/�-CSOPL8h�9L��f:SLcl Translationg�*CSOPL�\�9L��f:SLcl Rotation��CSOOL�M:L��f:��-CSOPL�_�9L��f:SLcl Translation�*CSOPL���9L��f:SLcl Rotation(�CSOOLxq:L��f:O�CSOOL��f:L��f:��-CSOPLp��9L��f:SLcl Translation��*CSOPL@��9L��f:SLcl Rotation��CSOOL�8:L��f:�CSOOL��f:L��f:K�-CSOPL��9L��f:SLcl Translation��*CSOPL��9L��f:SLcl Rotation��CSOOLx:L��f:��-CSOPL���9L��f:SLcl Translation�*CSOPL���9L��f:SLcl RotationD�CSOOL�	:L�s�:k�CSOOL�x�:L�s�:��-CSOPLP��9L�s�:SLcl Translation��*CSOPL ��9L�s�:SLcl Rotation�CSOOL�o:L�x�:,�CSOOL�}�:L�x�:g�-CSOPL���9L�x�:SLcl Translation��*CSOPL���9L�x�:SLcl Rotation��CSOOL��:L�}�:�-CSOPL���9L�}�:SLcl Translation9�*CSOPL`��9L�}�:SLcl Rotation`�CSOOL��:L���:��CSOOL���:L���:��-CSOPL0��9L���:SLcl Translation��*CSOPL��9L���:SLcl Rotation!�CSOOLx4:L���:H�CSOOL��:L���:��-CSOPL`��9L���:SLcl Translation��*CSOPL0��9L���:SLcl Rotation��CSOOLx�:L��:�-CSOPL��9L��:SLcl TranslationU�*CSOPL���9L��:SLcl Rotation|�CSOOLx�:L��:��CSOOL��:L��:��-CSOPL���9L��:SLcl Translation�*CSOPLp��9L��:SLcl Rotation=�CSOOL�V:L��:d�CSOOL��:L��:��-CSOPL@��9L��:SLcl Translation��CSOOLx|:L��:�-CSOPL��9L��:SLcl Translation(�CSOOL8w:L ��:O�CSOOL(��:L ��:��-CSOPL���9L ��:SLcl Translation��*CSOPL���9L ��:SLcl Rotation��CSOOL��:L(��:�CSOOL0��:L(��:K�-CSOPL���9L(��:SLcl Translation��*CSOPLP��9L(��:SLcl Rotation��CSOOL��:L0��:��CSOOL��9L0��:�-CSOPL ��9L0��:SLcl TranslationD�*CSOPL���9L0��:SLcl Rotationk�CSOOLx:L��9��CSOOL�:L��9��CSOOL��9L��9��-CSOPL���9L��9SLcl Translation,�*CSOPL���9L��9SLcl RotationS�CSOOL��:L��9z�CSOOL��9L��9��-CSOPL`�9L��9SLcl Translation��*CSOPL0�9L��9SLcl Rotation�CSOOLx:L��9;�CSOOL�$�9L��9v�-CSOPL�9L��9SLcl Translation��*CSOPL��9L��9SLcl Rotation��CSOOL�:L�$�9��CSOOL���9L�ǫ9#�CSOOL�E�9L�ǫ9R�!CSOPL��-Lx�:Sd|X��!CSOPL���-Lx�:Sd|Y��!CSOPL(�-Lx�:Sd|Z��!CSOPL���-LO�:Sd|X�!CSOPL�`�-LO�:Sd|Y=�!CSOPL�Y�-LO�:Sd|Zl�!CSOPLX��-L Dž:Sd|X��!CSOPLؒ�-L Dž:Sd|Y��!CSOPL�-L Dž:Sd|Z��!CSOPL�-L��:Sd|X(�!CSOPLh`�-L��:Sd|YW�!CSOPL�M�-L��:Sd|Z��!CSOPL��-L2�:Sd|X��!CSOPL���-L2�:Sd|Y��!CSOPL�:�-L2�:Sd|Z�!CSOPL���-LXM�:Sd|XB�!CSOPLȺ�-LXM�:Sd|Yq�!CSOPLH��-LXM�:Sd|Z��!CSOPL�@�-L��:Sd|X��!CSOPL���-L��:Sd|Y��!CSOPL8x�-L��:Sd|Z-�!CSOPL��-L`Ʌ:Sd|X\�!CSOPL�x�-L`Ʌ:Sd|Y��!CSOPL�o�-L`Ʌ:Sd|Z��!CSOPL��-L�,�:Sd|X��!CSOPLx>�-L�,�:Sd|Y�!CSOPL���-L�,�:Sd|ZG�!CSOPL��-L@��:Sd|Xv�!CSOPLx��-L@��:Sd|Y��!CSOPL(v�-L@��:Sd|Z��!CSOPL�
�-L��:Sd|X�!CSOPL(��-L��:Sd|Y2�!CSOPLh��-L��:Sd|Za�!CSOPLx7�-L�F�:Sd|X��!CSOPLȫ�-L�F�:Sd|Y��!CSOPL(y�-L�F�:Sd|Z��!CSOPL���-L���:Sd|X�!CSOPL��-L���:Sd|YL�!CSOPLh��-L���:Sd|Z{�!CSOPLx��-L���:Sd|X��!CSOPL���-L���:Sd|Y��!CSOPLX�-L���:Sd|Z�!CSOPL8?�-L���:Sd|X7�!CSOPLh��-L���:Sd|Yf�!CSOPLh��-L���:Sd|Z��!CSOPLH��-LH��:Sd|X��!CSOPL�+�-LH��:Sd|Y��!CSOPL(��-LH��:Sd|Z"	!CSOPL(I�-Lh�:Sd|XQ	!CSOPL�{�-Lh�:Sd|Y�	!CSOPL8��-Lh�:Sd|Z�	!CSOPLH��-L`�:Sd|X�	!CSOPL��-L`�:Sd|Y
	!CSOPLxY�-L`�:Sd|Z<	!CSOPLh��-LP��:Sd|Xk	!CSOPL���-LP��:Sd|Y�	!CSOPL8��-LP��:Sd|Z�	!CSOPL�c�-L@/�:Sd|X�	!CSOPL���-L@/�:Sd|Y'	!CSOPL���-L@/�:Sd|ZV	!CSOPL���-Lx`�:Sd|X�	!CSOPL8�-Lx`�:Sd|Y�	!CSOPLX��-Lx`�:Sd|Z�	!CSOPL���-L��:Sd|X	!CSOPLX��-L��:Sd|YA	!CSOPLx��-L��:Sd|Zp	!CSOPLh�-LF�:Sd|X�	!CSOPL��-LF�:Sd|Y�	!CSOPLx�-LF�:Sd|Z�	!CSOPLx��-L���:Sd|X,	!CSOPL�5�-L���:Sd|Y[	!CSOPL���-L���:Sd|Z�	!CSOPL8��-L��:Sd|X�	!CSOPL���-L��:Sd|Y�	!CSOPLx:�-L��:Sd|Z	!CSOPL�Z�-L�-�:Sd|XF	!CSOPL�M�-L�-�:Sd|Yu	!CSOPLȨ�-L�-�:Sd|Z�	!CSOPL��-L�:Sd|X�	!CSOPL���-L�:Sd|Y	!CSOPLH��-L�:Sd|Z1	!CSOPLx�-LВ�:Sd|X`	!CSOPLHY�-LВ�:Sd|Y�	!CSOPL��-LВ�:Sd|Z�	!CSOPL�"�-L�:Sd|X�	!CSOPL8��-L�:Sd|Y	!CSOPL���-L�:Sd|ZK	!CSOPLX��-Lp��:Sd|Xz	!CSOPL��-Lp��:Sd|Y�	!CSOPL���-Lp��:Sd|Z�	!CSOPL��-Lx��9Sd|X	!CSOPL���-Lx��9Sd|Y6	!CSOPL85�-Lx��9Sd|Ze	!CSOPLhT�-L��9Sd|X�	!CSOPL��-L��9Sd|Y�	!CSOPLذ�-L��9Sd|Z�	!CSOPL�c�-L��9Sd|X!		!CSOPL�U�-L��9Sd|YP		!CSOPL8W�-L��9Sd|Z		!CSOPL�-L���9Sd|X�		!CSOPLH�-L���9Sd|Y�		!CSOPLx��-L���9Sd|Z
	!CSOPLh��-L���9Sd|X;
	!CSOPLh��-L���9Sd|Yj
	!CSOPL�3�-L���9Sd|Z�
	!CSOPL��-L ��9Sd|X�
	!CSOPL���-L ��9Sd|Y�
	!CSOPL���-L ��9Sd|Z&	!CSOPL(�-L(��9Sd|XU	!CSOPL��-L(��9Sd|Y�	!CSOPL��-L(��9Sd|Z�	!CSOPL8`�-Lb�9Sd|X�	!CSOPL�o�-Lb�9Sd|Y	!CSOPL��-Lb�9Sd|Z@	!CSOPL(��-L�h�9Sd|Xo	!CSOPL(��-L�h�9Sd|Y�	!CSOPL���-L�h�9Sd|Z�	!CSOPL���-Lp��9Sd|X�	!CSOPL�&�-Lp��9Sd|Y+
	!CSOPLG�-Lp��9Sd|ZZ
	!CSOPL8��-L�9Sd|X�
	!CSOPL��-L�9Sd|Y�
	!CSOPL8c�-L�9Sd|Z�
	!CSOPL�~�-L��9Sd|X	!CSOPL(^�-L��9Sd|YE	!CSOPLh8�-L��9Sd|Zt	!CSOPL���-LЊ�9Sd|X�	!CSOPL���-LЊ�9Sd|Y�	!CSOPL���-LЊ�9Sd|Z	!CSOPL�9�-L8��9Sd|X0	!CSOPL��-L8��9Sd|Y_	!CSOPL���-L8��9Sd|Z�	!CSOPLH>�-L���9Sd|X�	!CSOPL�j�-L���9Sd|Y�	!CSOPL��-L���9Sd|Z	!CSOPL���-L`��9Sd|XJ	!CSOPL��-L`��9Sd|Yy	!CSOPL8�-L`��9Sd|Z�	!CSOPL�[�-Lȃ�9Sd|X�	!CSOPLc�-Lȃ�9Sd|Y	!CSOPL"�-Lȃ�9Sd|Z5	!CSOPL���-L ��9Sd|Xd	!CSOPL�s�-L ��9Sd|Y�	!CSOPL�F�-L ��9Sd|Z�	!CSOPL���-L�y�9Sd|X�	!CSOPLX�-L�y�9Sd|Y 	!CSOPL���-L�y�9Sd|ZO	!CSOPL���-LX{�9Sd|X~	!CSOPL���-LX{�9Sd|Y�	!CSOPL�g�-LX{�9Sd|Z�	!CSOPL���-L�w�9Sd|X	!CSOPL�c�-L�w�9Sd|Y:	!CSOPL8��-L�w�9Sd|Zi	!CSOPL���-L�q�9Sd|X�	!CSOPL��-L�q�9Sd|Y�	!CSOPL��-L�q�9Sd|Z�	!CSOPL8��-L�r�9Sd|X%	!CSOPLx��-L�r�9Sd|YT	!CSOPL�p�-L�r�9Sd|Z�	!CSOPL8f�-L@o�9Sd|X�	!CSOPL���-L@o�9Sd|Y�	!CSOPLH}�-L@o�9Sd|Z	!CSOPL�6�-L8h�9Sd|X?	!CSOPL�v�-L8h�9Sd|Yn	!CSOPL\�-L8h�9Sd|Z�	!CSOPLh��-L�\�9Sd|X�	!CSOPL�T�-L�\�9Sd|Y�	!CSOPLȓ�-L�\�9Sd|Z*	!CSOPLȇ�-L�_�9Sd|XY	!CSOPLh��-L�_�9Sd|Y�	!CSOPL���-L�_�9Sd|Z�	!CSOPL��-L���9Sd|X�	!CSOPL؛�-L���9Sd|Y	!CSOPL�|�-L���9Sd|ZD	!CSOPL�B�-Lp��9Sd|Xs	!CSOPL��-Lp��9Sd|Y�	!CSOPL(��-Lp��9Sd|Z�	!CSOPL�#�-L@��9Sd|X	!CSOPLx��-L@��9Sd|Y/	!CSOPL�=�-L@��9Sd|Z^	!CSOPL���-L��9Sd|X�	!CSOPL��-L��9Sd|Y�	!CSOPL8N�-L��9Sd|Z�	!CSOPLH��-L��9Sd|X	!CSOPL��-L��9Sd|YI	!CSOPL�A�-L��9Sd|Zx	!CSOPLX��-L���9Sd|X�	!CSOPLx}�-L���9Sd|Y�	!CSOPL���-L���9Sd|Z	!CSOPL�k�-L���9Sd|X4	!CSOPLX��-L���9Sd|Yc	!CSOPL�y�-L���9Sd|Z�	!CSOPL���-LP��9Sd|X�	!CSOPL���-LP��9Sd|Y�	!CSOPL8o�-LP��9Sd|Z	!CSOPL#�-L ��9Sd|XN	!CSOPL2�-L ��9Sd|Y}	!CSOPL���-L ��9Sd|Z�	!CSOPLD�-L���9Sd|X�	!CSOPLx��-L���9Sd|Y
	!CSOPLe�-L���9Sd|Z9	!CSOPLH��-L���9Sd|Xh	!CSOPL�w�-L���9Sd|Y�	!CSOPLH�-L���9Sd|Z�	!CSOPL؀�-L���9Sd|X�	!CSOPL88�-L���9Sd|Y$	!CSOPL�i�-L���9Sd|ZS	!CSOPLx�-L`��9Sd|X�	!CSOPL���-L`��9Sd|Y�	!CSOPL��-L`��9Sd|Z�	!CSOPLx��-L0��9Sd|X	!CSOPL��-L0��9Sd|Y>	!CSOPL�5�-L0��9Sd|Zm	!CSOPLH��-L��9Sd|X�	!CSOPL�S�-L��9Sd|Y�	!CSOPL8��-L��9Sd|Z�	!CSOPL��-L`��9Sd|X)	!CSOPL��-L`��9Sd|YX	!CSOPL���-L`��9Sd|Z�	!CSOPL���-L0��9Sd|X�	!CSOPLX@�-L0��9Sd|Y�	!CSOPL��-L0��9Sd|Z 	!CSOPL��-L��9Sd|XC 	!CSOPLH��-L��9Sd|Yr 	!CSOPL���-L��9Sd|Z� 	!CSOPL�N�-L���9Sd|X� 	!CSOPL(��-L���9Sd|Y� 	!CSOPLx��-L���9Sd|Z.!	!CSOPL���-L���9Sd|X]!	!CSOPL���-L���9Sd|Y�!	!CSOPL��-L���9Sd|Z�!	!CSOPL���-Lp��9Sd|X�!	!CSOPLh��-Lp��9Sd|Y"	!CSOPL���-Lp��9Sd|ZH"	!CSOPL(��-L@��9Sd|Xw"	!CSOPL��-L@��9Sd|Y�"	!CSOPLx��-L@��9Sd|Z�"	!CSOPLh��-L��9Sd|X#	!CSOPLHb�-L��9Sd|Y3#	!CSOPL���-L��9Sd|Zb#	!CSOPL��-L���9Sd|X�#	!CSOPL��-L���9Sd|Y�#	!CSOPLX��-L���9Sd|Z�#	!CSOPL���-L���9Sd|X$	!CSOPL؏�-L���9Sd|YM$	!CSOPL���-L���9Sd|Z|$	!CSOPLX��-L���9Sd|X�$	!CSOPL(R�-L���9Sd|Y�$	!CSOPL8�-L���9Sd|Z	%	!CSOPLXR�-LP��9Sd|X8%	!CSOPL���-LP��9Sd|Yg%	!CSOPL���-LP��9Sd|Z�%	!CSOPLX|�-L ��9Sd|X�%	!CSOPL+�-L ��9Sd|Y�%	!CSOPL�"�-L ��9Sd|Z#&	!CSOPL7�-L���9Sd|XR&	!CSOPLH7�-L���9Sd|Y�&	!CSOPLH��-L���9Sd|Z�&	!CSOPL��-L���9Sd|X�&	!CSOPL���-L���9Sd|Y'	!CSOPLhi�-L���9Sd|Z='	!CSOPL��-L���9Sd|Xl'	!CSOPLh#�-L���9Sd|Y�'	!CSOPLXv�-L���9Sd|Z�'	!CSOPL؞�-L`�9Sd|X�'	!CSOPL��-L`�9Sd|Y((	!CSOPLQ�-L`�9Sd|ZW(	!CSOPLX��-L0�9Sd|X�(	!CSOPL�F�-L0�9Sd|Y�(	!CSOPL�d�-L0�9Sd|Z�(	!CSOPL���-L�9Sd|X)	!CSOPL���-L�9Sd|YB)	!CSOPLH��-L�9Sd|Zq)	!CSOPL(a�-L��9Sd|X�)	!CSOPL���-L��9Sd|Y�)	!CSOPLX�-L��9Sd|Z�*	Takes*	CurrentS_214_Run_wallPush�*	TakeS_214_Run_wallPushn*	FileNameS_214_Run_wallPush.tak�*		LocalTimeL���jAL�Q��a�*	
ReferenceTimeL���jAL�Q��a������e�~���-q��Z�j���~���u�)

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

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