Subversion Repository Public Repository

Nextrek

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

GlobalSettings�VersionI��Properties70	)PSUpAxisSintSIntegerSIK	-PS
UpAxisSignSintSIntegerSI�	,PS	FrontAxisSintSIntegerSI�	0PS
FrontAxisSignSintSIntegerSI�	,PS	CoordAxisSintSIntegerSI;
0PS
CoordAxisSignSintSIntegerSIz
1PSOriginalUpAxisSintSIntegerSI�����
5PSOriginalUpAxisSignSintSIntegerSI8PSUnitScaleFactorSdoubleSNumberSD�?Q@PSOriginalUnitScaleFactorSdoubleSNumberSD�?�HPSAmbientColorSColorRGBSColorSD����?D����?D����?�APS
DefaultCameraSKStringSSSProducer Perspective)%PSTimeModeSenumSSIj3PS
TimeSpanStartSKTimeSTimeSL(�Y�x�2PSTimeSpanStopSKTimeSTimeSL�G���8PSCustomFrameRateSdoubleSNumberSD�o	Documents7
CountIb!DocumentLx}�S	KFbxSceneSScene7Properties70�
&PSSourceObjectSobjectSS*bPSActiveAnimStackNameSKStringSSS/_27_a_U1_M_P_RunAvoid_ToRight_Both_Fb_p0_No_0_1U	RootNodeL�
References�CDefinitions�VersionId�CountI�)
ObjectTypeSGlobalSettingsCountI}
ObjectTypeSMotionBuilder_SystempCountI #

ObjectTypeSModel�CountIV#PropertyTemplateSFbxNode#Properties7072PSQuaternionInterpolateSenumSSI�KPSRotationOffsetSVector3DSVectorSDDD�JPS
RotationPivotSVector3DSVectorSDDD@JPS
ScalingOffsetSVector3DSVectorSDDD�IPSScalingPivotSVector3DSVectorSDDD�.PSTranslationActiveSboolSSI,KPSTranslationMinSVector3DSVectorSDDD�KPSTranslationMaxSVector3DSVectorSDDD�,PSTranslationMinXSboolSSI�,PSTranslationMinYSboolSSI3,PSTranslationMinZSboolSSIm,PSTranslationMaxXSboolSSI�,PSTranslationMaxYSboolSSI�,PSTranslationMaxZSboolSSI*PS
RotationOrderSenumSSI]6PSRotationSpaceForLimitOnlySboolSSI�;PSRotationStiffnessXSdoubleSNumberSD�;PSRotationStiffnessYSdoubleSNumberSD8;PSRotationStiffnessZSdoubleSNumberSDv0PSAxisLenSdoubleSNumberSD$@�HPSPreRotationSVector3DSVectorSDDD#IPSPostRotationSVector3DSVectorSDDD\+PSRotationActiveSboolSSI�HPSRotationMinSVector3DSVectorSDDDHPSRotationMaxSVector3DSVectorSDDD?)PSRotationMinXSboolSSIv)PSRotationMinYSboolSSI�)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI)PSRotationMaxYSboolSSIR)PSRotationMaxZSboolSSI�(PSInheritTypeSenumSSI�*PS
ScalingActiveSboolSSIGPS
ScalingMinSVector3DSVectorSDDDjGPS
ScalingMaxSVector3DSVectorSD�?D�?D�?�(PSScalingMinXSboolSSI�(PSScalingMinYSboolSSI(PSScalingMinZSboolSSIB(PSScalingMaxXSboolSSIx(PSScalingMaxYSboolSSI�(PSScalingMaxZSboolSSI
QPSGeometricTranslationSVector3DSVectorSDDDiNPSGeometricRotationSVector3DSVectorSDDD�MPSGeometricScalingSVector3DSVectorSD�?D�?D�?6PS
MinDampRangeXSdoubleSNumberSDL6PS
MinDampRangeYSdoubleSNumberSD�6PS
MinDampRangeZSdoubleSNumberSD�6PS
MaxDampRangeXSdoubleSNumberSD6PS
MaxDampRangeYSdoubleSNumberSD\6PS
MaxDampRangeZSdoubleSNumberSD�9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD19PSMinDampStrengthZSdoubleSNumberSDx9PSMaxDampStrengthXSdoubleSNumberSD�9PSMaxDampStrengthYSdoubleSNumberSD9PSMaxDampStrengthZSdoubleSNumberSDK7PSPreferedAngleXSdoubleSNumberSD�7PSPreferedAngleYSdoubleSNumberSD�7PSPreferedAngleZSdoubleSNumberSD (PSLookAtPropertySobjectSSC *PSUpVectorPropertySobjectSSr !PSShowSboolSSI� 8PSNegativePercentShapeSupportSboolSSI� 8PSDefaultAttributeIndexSintSIntegerSI����/!#PSFreezeSboolSSI`!#PSLODBoxSboolSSI�!NPSLcl TranslationSLcl TranslationSSADDD"HPSLcl RotationSLcl RotationSSADDDf"FPSLcl ScalingSLcl ScalingSSAD�?D�?D�?�"2PS
VisibilityS
VisibilitySSAD�?�"EPSVisibility InheritanceSVisibility InheritanceSSI9>
ObjectTypeS
NodeAttribute`#CountIV,>PropertyTemplateS	FbxCamera>Properties70�#>PSPositionSVectorSSADDDI�<$>PSUpVectorSVectorSSADD�?D�$FPSInterestPositionSVectorSSADDD�$&PSRollSRollSSAD%:PSOpticalCenterXSOpticalCenterXSSADT%:PSOpticalCenterYSOpticalCenterYSSAD�%DPSBackgroundColorSColorSSAD)\���(�?D)\���(�?D)\���(�?�%-PS	TurnTableSNumberSSAD &1PSDisplayTurnTableIconSboolSSIX&*PS
UseMotionBlurSboolSSI�&2PSUseRealTimeMotionBlurSboolSSI�&9PSMotion Blur IntensitySNumberSSAD�?',PSAspectRatioModeSenumSSI['4PSAspectWidthSdoubleSNumberSDt@�'5PSAspectHeightSdoubleSNumberSDi@�'9PSPixelAspectRatioSdoubleSNumberSD�?"(/PSFilmOffsetXSNumberSSAD_(/PSFilmOffsetYSNumberSSAD�(2PS	FilmWidthSdoubleSNumberSD�&1��?�(3PS
FilmHeightSdoubleSNumberSD/�$���?&)8PSFilmAspectRatioSdoubleSNumberSDUUUUUU�?m)9PSFilmSqueezeRatioSdoubleSNumberSD�?�),PSFilmFormatIndexSenumSSI�),PSPreScaleSNumberSSAD�?!*2PSFilmTranslateXSNumberSSADa*2PSFilmTranslateYSNumberSSAD�*2PSFilmRollPivotXSNumberSSAD�*2PSFilmRollPivotYSNumberSSAD +1PS
FilmRollValueSNumberSSADX+*PS
FilmRollOrderSenumSSI�+)PSApertureModeSenumSSI�+$PSGateFitSenumSSI,4PSFieldOfViewSFieldOfViewSSAD�p9@G,6PSFieldOfViewXSFieldOfViewXSSADD@�,6PSFieldOfViewYSFieldOfViewYSSADD@�,/PSFocalLengthSNumberSSAD&��VrA@�,)PSCameraFormatSenumSSI7-*PS
UseFrameColorSboolSSI�-FPS
FrameColorSColorRGBSColorSD333333�?D333333�?D333333�?�-%PSShowNameSboolSSI�--PSShowInfoOnMovingSboolSSI,.%PSShowGridSboolSSIh..PSShowOpticalCenterSboolSSI�.'PS
ShowAzimutSboolSSI�.)PSShowTimeCodeSboolSSI/&PS	ShowAudioSboolSSI]/GPS
AudioColorSVector3DSVectorSDD�?D�/2PS	NearPlaneSdoubleSNumberSD$@�/1PSFarPlaneSdoubleSNumberSD@�@01PSAutoComputeClipPanesSboolSSIX0/PSViewCameraToLookAtSboolSSI�04PSViewFrustumNearFarPlaneSboolSSI�05PSViewFrustumBackPlaneModeSenumSSI 15PSBackPlaneDistanceSNumberSSAD@�@`12PSBackPlaneDistanceModeSenumSSI�16PSViewFrustumFrontPlaneModeSenumSSI�16PSFrontPlaneDistanceSNumberSSAD$@)23PSFrontPlaneDistanceModeSenumSSI\2%PSLockModeSboolSSI�23PSLockInterestNavigationSboolSSI�2.PSBackPlateFitImageSboolSSI3*PS
BackPlateCropSboolSSIK3,PSBackPlateCenterSboolSSI�3/PSBackPlateKeepRatioSboolSSI�3@PSBackgroundAlphaTresholdSdoubleSNumberSD�?4*PS
ShowBackplateSboolSSIP44PSBackPlaneOffsetXSNumberSSAD�44PSBackPlaneOffsetYSNumberSSAD�45PSBackPlaneRotationSNumberSSAD53PSBackPlaneScaleXSNumberSSAD�?W53PSBackPlaneScaleYSNumberSSAD�?�5,PSBackground TextureSobjectSS�5/PSFrontPlateFitImageSboolSSI6+PSFrontPlateCropSboolSSIB6-PSFrontPlateCenterSboolSSI�60PSFrontPlateKeepRatioSboolSSI�6;PSForeground OpacitySdoubleSNumberSD�?7+PSShowFrontplateSboolSSIE75PSFrontPlaneOffsetXSNumberSSAD�75PSFrontPlaneOffsetYSNumberSSAD�76PSFrontPlaneRotationSNumberSSAD84PSFrontPlaneScaleXSNumberSSAD�?P84PSFrontPlaneScaleYSNumberSSAD�?�8,PSForeground TextureSobjectSS�8,PSDisplaySafeAreaSboolSSI94PSDisplaySafeAreaOnRenderSboolSSIE91PSSafeAreaDisplayStyleSenumSSI�9<PSSafeAreaAspectRatioSdoubleSNumberSDFUUUUU�?�9/PSUse2DMagnifierZoomSboolSSI:5PS2D Magnifier ZoomSNumberSSADY@O:2PS2D Magnifier XSNumberSSADI@�:2PS2D Magnifier YSNumberSSADI@�:1PSCameraProjectionTypeSenumSSI;2PS	OrthoZoomSdoubleSNumberSD�?L;0PSUseRealTimeDOFAndAASboolSSI�;,PSUseDepthOfFieldSboolSSI�;(PSFocusSourceSenumSSI�;3PS
FocusAngleSdoubleSNumberSD@A<6PS
FocusDistanceSdoubleSNumberSDi@{<,PSUseAntialiasingSboolSSI�<>PSAntialiasingIntensitySdoubleSNumberSD��9�}��?=/PSAntialiasingMethodSenumSSID=2PSUseAccumulationBufferSboolSSI�=5PSFrameSamplingCountSintSIntegerSI�=.PSFrameSamplingTypeSenumSSI>APSColorSColorRGBSColorSD�������?D�������?D�������?�>
ObjectTypeSMotionBuilder_Generic�>CountIKA
ObjectTypeSAnimationLayer�>CountI>APropertyTemplateSFbxAnimLayer1AProperties70N?*PSWeightSNumberSSADY@}?!PSMuteSboolSSI�?!PSSoloSboolSSI�?!PSLockSboolSSI*@APSColorSColorRGBSColorSD�������?D�������?D�������?^@&PS	BlendModeSenumSSI�@5PSRotationAccumulationModeSenumSSI�@2PSScaleAccumulationModeSenumSSI$A5PSBlendModeBypassS	ULongLongSSL1C
ObjectTypeSAnimationStack�ACountI$CPropertyTemplateSFbxAnimStackCProperties70B+PSDescriptionSKStringSSSJB0PS
LocalStartSKTimeSTimeSL�B/PS	LocalStopSKTimeSTimeSL�B4PSReferenceStartSKTimeSTimeSL
C3PS
ReferenceStopSKTimeSTimeSL�C
ObjectTypeSAnimationCurveNodevCCountI4�C
ObjectTypeSAnimationCurve�CCountI�*�Objects�H<
NodeAttributeL���9S#Producer PerspectiveNodeAttributeSCameraeGProperties70�D>PSPositionSVectorSSADD b@D�r@EFPSInterestPositionSVectorSSAD1�ʧ�U�<D�����V@DSEDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�E1PSDisplayTurnTableIconSboolSSI�E,PSFilmFormatIndexSenumSSIF4PSFieldOfViewSFieldOfViewSSADD@KF/PSFocalLengthSNumberSSAD �Z5@�F<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�F5PS2D Magnifier ZoomSNumberSSADG2PS2D Magnifier XSNumberSSADXG2PS2D Magnifier YSNumberSSAD�G	TypeFlagsSCamera�GGeometryVersionI|�GPositionDD b@D�r@HUpDD�?D/HLookAtD1�ʧ�U�<D�����V@DQHShowInfoOnMovingIlH	ShowAudioI�H
AudioColorDD�?D�H	CameraOrthoZoomD�?fN6
NodeAttributeL��:SProducer FrontNodeAttributeSCamera�LProperties70�I>PSPositionSVectorSSADD�V@DL�@�IFPSInterestPositionSVectorSSADD�V@D+JDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?jJ1PSDisplayTurnTableIconSboolSSI�J,PSFilmFormatIndexSenumSSI�J4PSFieldOfViewSFieldOfViewSSADD@#K/PSFocalLengthSNumberSSAD �Z5@cK2PS	NearPlaneSdoubleSNumberSD�?�K1PSFarPlaneSdoubleSNumberSDL�@�K<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?/L5PS2D Magnifier ZoomSNumberSSADoL2PS2D Magnifier XSNumberSSAD�L2PS2D Magnifier YSNumberSSAD�L1PSCameraProjectionTypeSenumSSIM	TypeFlagsSCamera=MGeometryVersionI|mMPositionDD�V@DL�@�MUpDD�?D�MLookAtDD�V@D�MShowInfoOnMovingIN	ShowAudioI4N
AudioColorDD�?DYN	CameraOrthoZoomD�?�S5
NodeAttributeL��:SProducer BackNodeAttributeSCamera�RProperties70O>PSPositionSVectorSSADD�V@DL��nOFPSInterestPositionSVectorSSADD�V@D�ODPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�O1PSDisplayTurnTableIconSboolSSI9P,PSFilmFormatIndexSenumSSI{P4PSFieldOfViewSFieldOfViewSSADD@�P/PSFocalLengthSNumberSSAD �Z5@�P2PS	NearPlaneSdoubleSNumberSD�?7Q1PSFarPlaneSdoubleSNumberSDL�@�Q<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�Q5PS2D Magnifier ZoomSNumberSSADR2PS2D Magnifier XSNumberSSADDR2PS2D Magnifier YSNumberSSAD�R1PSCameraProjectionTypeSenumSSI�R	TypeFlagsSCamera�RGeometryVersionI|SPositionDD�V@DL��,SUpDD�?DZSLookAtDD�V@D|SShowInfoOnMovingI�S	ShowAudioI�S
AudioColorDD�?D�S	CameraOrthoZoomD�?�Y6
NodeAttributeL ��:SProducer RightNodeAttributeSCamera&XProperties70�T>PSPositionSVectorSSADL�@D�V@DUFPSInterestPositionSVectorSSADD�V@DVUDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�U1PSDisplayTurnTableIconSboolSSI�U,PSFilmFormatIndexSenumSSIV4PSFieldOfViewSFieldOfViewSSADD@NV/PSFocalLengthSNumberSSAD �Z5@�V2PS	NearPlaneSdoubleSNumberSD�?�V1PSFarPlaneSdoubleSNumberSDL�@W<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?ZW5PS2D Magnifier ZoomSNumberSSAD�W2PS2D Magnifier XSNumberSSAD�W2PS2D Magnifier YSNumberSSADX1PSCameraProjectionTypeSenumSSIGX	TypeFlagsSCamerahXGeometryVersionI|�XPositionDL�@D�V@D�XUpDD�?D�XLookAtDD�V@DYShowInfoOnMovingI-Y	ShowAudioI_Y
AudioColorDD�?D�Y	CameraOrthoZoomD�?&_5
NodeAttributeL��:SProducer LeftNodeAttributeSCamera�]Properties70EZ>PSPositionSVectorSSADL��D�V@D�ZFPSInterestPositionSVectorSSADD�V@D�ZDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?*[1PSDisplayTurnTableIconSboolSSId[,PSFilmFormatIndexSenumSSI�[4PSFieldOfViewSFieldOfViewSSADD@�[/PSFocalLengthSNumberSSAD �Z5@#\2PS	NearPlaneSdoubleSNumberSD�?b\1PSFarPlaneSdoubleSNumberSDL�@�\<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�\5PS2D Magnifier ZoomSNumberSSAD/]2PS2D Magnifier XSNumberSSADo]2PS2D Magnifier YSNumberSSAD�]1PSCameraProjectionTypeSenumSSI�]	TypeFlagsSCamera�]GeometryVersionI|-^PositionDL��D�V@DW^UpDD�?D�^LookAtDD�V@D�^ShowInfoOnMovingI�^	ShowAudioI�^
AudioColorDD�?D_	CameraOrthoZoomD�?e4
NodeAttributeL0��:SProducer TopNodeAttributeSCamera�cProperties70�_>PSPositionSVectorSSADDy�@D%`>PSUpVectorSVectorSSADDD�y`FPSInterestPositionSVectorSSADD�V@D�`DPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?
a1PSDisplayTurnTableIconSboolSSIDa,PSFilmFormatIndexSenumSSI�a4PSFieldOfViewSFieldOfViewSSADD@�a/PSFocalLengthSNumberSSAD �Z5@b2PS	NearPlaneSdoubleSNumberSD�?Bb1PSFarPlaneSdoubleSNumberSDL�@�b<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�b5PS2D Magnifier ZoomSNumberSSADc2PS2D Magnifier XSNumberSSADOc2PS2D Magnifier YSNumberSSAD�c1PSCameraProjectionTypeSenumSSI�c	TypeFlagsSCamera�cGeometryVersionI|
dPositionDDy�@D7dUpDDD�edLookAtDD�V@D�dShowInfoOnMovingI�d	ShowAudioI�d
AudioColorDD�?D�d	CameraOrthoZoomD�?�j7
NodeAttributeL(��:SProducer BottomNodeAttributeSCamera~iProperties70�e>PSPositionSVectorSSADD��Df>PSUpVectorSVectorSSAD�D�D�?\fFPSInterestPositionSVectorSSADD�V@D�fDPSBackgroundColorSColorSSAD{�G�z�?D{�G�z�?D{�G�z�?�f1PSDisplayTurnTableIconSboolSSI'g,PSFilmFormatIndexSenumSSIig4PSFieldOfViewSFieldOfViewSSADD@�g/PSFocalLengthSNumberSSAD �Z5@�g2PS	NearPlaneSdoubleSNumberSD�?%h1PSFarPlaneSdoubleSNumberSDL�@oh<PSSafeAreaAspectRatioSdoubleSNumberSDUUUUUU�?�h5PS2D Magnifier ZoomSNumberSSAD�h2PS2D Magnifier XSNumberSSAD2i2PS2D Magnifier YSNumberSSADqi1PSCameraProjectionTypeSenumSSI�i	TypeFlagsSCamera�iGeometryVersionI|�iPositionDD��DjUpD�D�D�?HjLookAtDD�V@DjjShowInfoOnMovingI�j	ShowAudioI�j
AudioColorDD�?D�j	CameraOrthoZoomD�?Gl?
NodeAttributeL���9SCamera SwitcherNodeAttributeSCameraSwitcher�kProperties70�k-PSCamera IndexSIntegerSSAI�kVersionIe�kNameSCamera SwitcherModellCameraIdIl
CameraNameId:lCameraIndexName�l*
NodeAttributeLHb�-SNodeAttributeSLimbNode�l
	TypeFlagsSSkeleton/m*
NodeAttributeL���-SNodeAttributeSLimbNode"m
	TypeFlagsSSkeleton�m*
NodeAttributeLH��-SNodeAttributeSLimbNode�m
	TypeFlagsSSkeletonn*
NodeAttributeL���-SNodeAttributeSLimbNode
n
	TypeFlagsSSkeleton�n*
NodeAttributeL�r�-SNodeAttributeSLimbNode~n
	TypeFlagsSSkeleton�n*
NodeAttributeLH��-SNodeAttributeSLimbNode�n
	TypeFlagsSSkeletonso*
NodeAttributeL:�-SNodeAttributeSLimbNodefo
	TypeFlagsSSkeleton�o*
NodeAttributeL�!�-SNodeAttributeSLimbNode�o
	TypeFlagsSSkeleton[p*
NodeAttributeLH��-SNodeAttributeSLimbNodeNp
	TypeFlagsSSkeleton�p*
NodeAttributeLHE�-SNodeAttributeSLimbNode�p
	TypeFlagsSSkeletonCq*
NodeAttributeL>�-SNodeAttributeSLimbNode6q
	TypeFlagsSSkeleton�q*
NodeAttributeLHL�-SNodeAttributeSLimbNode�q
	TypeFlagsSSkeleton+r*
NodeAttributeLH!�-SNodeAttributeSLimbNoder
	TypeFlagsSSkeleton�r*
NodeAttributeLȦ�-SNodeAttributeSLimbNode�r
	TypeFlagsSSkeletons*
NodeAttributeLH	�-SNodeAttributeSLimbNodes
	TypeFlagsSSkeleton�s*
NodeAttributeL�+�-SNodeAttributeSLimbNodezs
	TypeFlagsSSkeleton�s*
NodeAttributeL�V�-SNodeAttributeSLimbNode�s
	TypeFlagsSSkeletonot*
NodeAttributeLH��-SNodeAttributeSLimbNodebt
	TypeFlagsSSkeleton�t*
NodeAttributeLȘ�-SNodeAttributeSLimbNode�t
	TypeFlagsSSkeletonWu*
NodeAttributeL�9�-SNodeAttributeSLimbNodeJu
	TypeFlagsSSkeleton�u*
NodeAttributeL��-SNodeAttributeSLimbNode�u
	TypeFlagsSSkeleton?v*
NodeAttributeL<�-SNodeAttributeSLimbNode2v
	TypeFlagsSSkeleton�v*
NodeAttributeLH��-SNodeAttributeSLimbNode�v
	TypeFlagsSSkeleton'w*
NodeAttributeL���-SNodeAttributeSLimbNodew
	TypeFlagsSSkeleton�w*
NodeAttributeL���-SNodeAttributeSLimbNode�w
	TypeFlagsSSkeletonx*
NodeAttributeL�l�-SNodeAttributeSLimbNodex
	TypeFlagsSSkeleton�x*
NodeAttributeLH��-SNodeAttributeSLimbNodevx
	TypeFlagsSSkeleton�x*
NodeAttributeLH��-SNodeAttributeSLimbNode�x
	TypeFlagsSSkeletonky*
NodeAttributeLH��-SNodeAttributeSLimbNode^y
	TypeFlagsSSkeleton�y*
NodeAttributeL�2�-SNodeAttributeSLimbNode�y
	TypeFlagsSSkeletonSz*
NodeAttributeL��-SNodeAttributeSLimbNodeFz
	TypeFlagsSSkeleton�z*
NodeAttributeL���-SNodeAttributeSLimbNode�z
	TypeFlagsSSkeleton;{*
NodeAttributeLH�-SNodeAttributeSLimbNode.{
	TypeFlagsSSkeleton�{*
NodeAttributeL���-SNodeAttributeSLimbNode�{
	TypeFlagsSSkeleton#|*
NodeAttributeLH8�-SNodeAttributeSLimbNode|
	TypeFlagsSSkeleton�|*
NodeAttributeL��-SNodeAttributeSLimbNode�|
	TypeFlagsSSkeleton}*
NodeAttributeL���-SNodeAttributeSLimbNode�|
	TypeFlagsSSkeleton}*
NodeAttributeL���-SNodeAttributeSLimbNoder}
	TypeFlagsSSkeleton�}*
NodeAttributeL��-SNodeAttributeSLimbNode�}
	TypeFlagsSSkeletong~*
NodeAttributeL��-SNodeAttributeSLimbNodeZ~
	TypeFlagsSSkeleton�~*
NodeAttributeL�
�-SNodeAttributeSLimbNode�~
	TypeFlagsSSkeletonO*
NodeAttributeL	�-SNodeAttributeSLimbNodeB
	TypeFlagsSSkeleton�*
NodeAttributeLH��-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton7�*
NodeAttributeL:�-SNodeAttributeSLimbNode*�
	TypeFlagsSSkeleton��*
NodeAttributeL�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLH��-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL���-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton{�*
NodeAttributeL��-SNodeAttributeSLimbNoden�
	TypeFlagsSSkeleton�*
NodeAttributeL�,�-SNodeAttributeSLimbNode�
	TypeFlagsSSkeletonc�*
NodeAttributeL���-SNodeAttributeSLimbNodeV�
	TypeFlagsSSkeleton׃*
NodeAttributeLȌ�-SNodeAttributeSLimbNodeʃ
	TypeFlagsSSkeletonK�*
NodeAttributeL�-SNodeAttributeSLimbNode>�
	TypeFlagsSSkeleton��*
NodeAttributeLȩ�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton3�*
NodeAttributeL���-SNodeAttributeSLimbNode&�
	TypeFlagsSSkeleton��*
NodeAttributeL�{�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL��-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeLȨ�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeLH��-SNodeAttributeSLimbNode��
	TypeFlagsSSkeletonw�*
NodeAttributeLH��-SNodeAttributeSLimbNodej�
	TypeFlagsSSkeleton�*
NodeAttributeLHd�-SNodeAttributeSLimbNodeއ
	TypeFlagsSSkeleton_�*
NodeAttributeL��-SNodeAttributeSLimbNodeR�
	TypeFlagsSSkeletonӈ*
NodeAttributeLȤ�-SNodeAttributeSLimbNodeƈ
	TypeFlagsSSkeletonG�*
NodeAttributeLHG�-SNodeAttributeSLimbNode:�
	TypeFlagsSSkeleton��*
NodeAttributeL�w�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton/�*
NodeAttributeL��-SNodeAttributeSLimbNode"�
	TypeFlagsSSkeleton��*
NodeAttributeLH\�-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�*
NodeAttributeL�-SNodeAttributeSLimbNode
�
	TypeFlagsSSkeleton��*
NodeAttributeLH�-SNodeAttributeSLimbNode~�
	TypeFlagsSSkeleton��*
NodeAttributeLHO�-SNodeAttributeSLimbNode�
	TypeFlagsSSkeletons�*
NodeAttributeLș�-SNodeAttributeSLimbNodef�
	TypeFlagsSSkeleton�*
NodeAttributeL��-SNodeAttributeSLimbNodeڌ
	TypeFlagsSSkeleton[�*
NodeAttributeL?�-SNodeAttributeSLimbNodeN�
	TypeFlagsSSkeletonύ*
NodeAttributeLH��-SNodeAttributeSLimbNode
	TypeFlagsSSkeletonC�*
NodeAttributeL��-SNodeAttributeSLimbNode6�
	TypeFlagsSSkeleton��*
NodeAttributeL��-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton+�*
NodeAttributeL��-SNodeAttributeSLimbNode�
	TypeFlagsSSkeleton��*
NodeAttributeL� �-SNodeAttributeSLimbNode��
	TypeFlagsSSkeleton�4ModelL�v)SProducer PerspectiveModelSCamera��VersionI���Properties70l�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSI=�NPSLcl TranslationSLcl TranslationSSADD b@D�r@��HPSLcl RotationSLcl RotationSSAD�V�D����S@D�V�͑,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIk�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI&�5PSRotationLimitsVisibilitySboolSSIn�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI.�1PSScalingRefVisibilitySboolSSIu�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@B�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSI$�(PSCullingModeSenumSSI_�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI֖0PSAspectWSdoubleSNumberSD�?�0PSAspectHSdoubleSNumberSD�?G�%PSFitImageSboolSSIv�!PSCropSboolSSI��#PSCenterSboolSSIۗ&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSI]�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCWۘCullingS
CullingOff+�.ModelL�v)SProducer FrontModelSCameraA�VersionI��Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?ޙ!PSShowSboolSSI$�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSADD�V@DL�@֚HPSLcl RotationSLcl RotationSSADD�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
CullingOffm�-ModelL$v)SProducer BackModelSCamera��VersionI�'�Properties70�GPS
ScalingMinSVector3DSVectorSD�?D�?D�? �!PSShowSboolSSIf�8PSDefaultAttributeIndexSintSIntegerSI£NPSLcl TranslationSLcl TranslationSSADD�V@DL���HPSLcl RotationSLcl RotationSSAD�D�V�DR�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD-�/PSSetPreferedAngleSActionSSIh�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI3�2PSRotationRefVisibilitySboolSSIt�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI>�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@ǧ5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI;�%PSPickableSboolSSIs�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�+PSResolutionModeSenumSSI[�0PSAspectWSdoubleSNumberSD�?��0PSAspectHSdoubleSNumberSD�?̩%PSFitImageSboolSSI��!PSCropSboolSSI,�#PSCenterSboolSSI`�&PS	KeepRatioSboolSSI��2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSI�*PSResetCameraSActionSSI=�ShadingCW`�CullingS
CullingOff��.ModelL)v)SProducer RightModelSCameraƫVersionI�j�Properties704�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?c�!PSShowSboolSSI��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADL�@D�V@D[�HPSLcl RotationSLcl RotationSSAD�f@D�D�f@��,PS	MultiTakeSintSIntegerSIЭ-PSManipulationModeSenumSSI3�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDp�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI6�:PSLocalTranslationRefVisibilitySboolSSIv�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI=�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIǰ8PSReferentialSizeSdoubleSNumberSD(@
�5PSDefaultKeyingGroupSintSIntegerSIK�3PSDefaultKeyingGroupEnumSenumSSI~�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI'�-PSShowTrajectoriesSboolSSI`�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?ܲ0PSAspectHSdoubleSNumberSD�?�%PSFitImageSboolSSI>�!PSCropSboolSSIo�#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSI%�4PSDisplay2DMagnifierFrameSboolSSI]�*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOff��-ModelL.v)SProducer LeftModelSCamera�VersionI�V�Properties70v�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIG�NPSLcl TranslationSLcl TranslationSSADL��D�V@D��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD\�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIڷ5PSRotationLimitsVisibilitySboolSSI"�:PSLocalTranslationRefVisibilitySboolSSIb�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI)�9PSHierarchicalCenterVisibilitySboolSSIm�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI7�3PSDefaultKeyingGroupEnumSenumSSIj�%PSPickableSboolSSI��*PS
TransformableSboolSSIغ(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIL�+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?Ȼ0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI*�!PSCropSboolSSI[�#PSCenterSboolSSI��&PS	KeepRatioSboolSSIϼ2PSForegroundTransparentSboolSSI�4PSDisplay2DMagnifierFrameSboolSSII�*PSResetCameraSActionSSIl�ShadingCW��CullingS
CullingOff��,ModelL�v)SProducer TopModelSCamera�VersionI���Properties70a�GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI־8PSDefaultAttributeIndexSintSIntegerSI2�NPSLcl TranslationSLcl TranslationSSADDy�@D��HPSLcl RotationSLcl RotationSSAD�V�D�D�V�¿,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI`�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIc�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI#�1PSScalingRefVisibilitySboolSSIj�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@7�5PSDefaultKeyingGroupSintSIntegerSIx�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIT�-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI��0PSAspectWSdoubleSNumberSD�?	�0PSAspectHSdoubleSNumberSD�?<�%PSFitImageSboolSSIk�!PSCropSboolSSI��#PSCenterSboolSSI��&PS	KeepRatioSboolSSI�2PSForegroundTransparentSboolSSIR�4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW��CullingS
CullingOff!�/ModelLPVv)SProducer BottomModelSCamera7�VersionI���Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�?��!PSShowSboolSSI�8PSDefaultAttributeIndexSintSIntegerSIv�NPSLcl TranslationSLcl TranslationSSADD��D��HPSLcl RotationSLcl RotationSSAD�V@D�D�V@�,PS	MultiTakeSintSIntegerSIA�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI_�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI(�3PSRotationAxisVisibilitySboolSSIg�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI8�8PSReferentialSizeSdoubleSNumberSD(@{�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI'�*PS
TransformableSboolSSI]�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��+PSResolutionModeSenumSSI�0PSAspectWSdoubleSNumberSD�?M�0PSAspectHSdoubleSNumberSD�?��%PSFitImageSboolSSI��!PSCropSboolSSI��#PSCenterSboolSSI�&PS	KeepRatioSboolSSIT�2PSForegroundTransparentSboolSSI��4PSDisplay2DMagnifierFrameSboolSSI��*PSResetCameraSActionSSI��ShadingCW�CullingS
CullingOff��7ModelL8uy:SCamera SwitcherModelSCameraSwitcher��VersionI�?�Properties70��GPS
ScalingMinSVector3DSVectorSD�?D�?D�? �!PSShowSboolSSIf�8PSDefaultAttributeIndexSintSIntegerSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI>�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD{�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIA�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIH�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIV�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI2�-PSShowTrajectoriesSboolSSIU�ShadingCWx�CullingS
CullingOff��+ModelL@zy:SReferenceModelSLimbNode��VersionI�k�Properties70-�+PSRotationActiveSboolSSIc�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIQ�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI)�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDf�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI,�:PSLocalTranslationRefVisibilitySboolSSIl�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI3�9PSHierarchicalCenterVisibilitySboolSSIw�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIA�3PSDefaultKeyingGroupEnumSenumSSIt�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI^�3PSlockInfluenceWeightsSBoolSSAUI��ShadingCY��CullingS
CullingOff�'ModelLHy:SPivotModelSLimbNode�VersionI���Properties70U�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD&�8PSDefaultAttributeIndexSintSIntegerSIy�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIQ�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSIT�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI[�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@(�5PSDefaultKeyingGroupSintSIntegerSIi�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI
�(PSCullingModeSenumSSIE�-PSShowTrajectoriesSboolSSIu�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��&ModelLP�y:SRootModelSLimbNodej�VersionI�:�Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIG�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIU�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI0�-PSPivotsVisibilitySenumSSIs�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI<�3PSRotationAxisVisibilitySboolSSI{�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIL�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI;�*PS
TransformableSboolSSIq�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI-�CPSLimbLength 1SNumberSSAUD�?DDY@P�ShadingCYs�CullingS
CullingOff��&ModelLX�y:SHipsModelSLimbNode��VersionI�U�Properties70#�+PSRotationActiveSboolSSIY�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIQ�OPSLcl TranslationSLcl TranslationSSA+DI�A�D�)�V@D�l�����IPSLcl RotationSLcl RotationSSA+D@�+@D ��D��!���EPSVisibility InheritanceSVisibility InheritanceSSI5�,PS	MultiTakeSintSIntegerSIp�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIK�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSIW�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI!�6PSGeometricCenterVisibilitySboolSSIg�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSIV�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUIH�CPSLimbLength 1SNumberSSAUD�?DDY@k�ShadingCY��CullingS
CullingOff��'ModelL`�y:SSpineModelSLimbNode��VersionI�p�Properties70?�+PSRotationActiveSboolSSIu�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIl�NPSLcl TranslationSLcl TranslationSSAD=D�s"@D�;�?��IPSLcl RotationSLcl RotationSSA+D��%@D�0@D��?�EPSVisibility InheritanceSVisibility InheritanceSSIP�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD+�/PSSetPreferedAngleSActionSSIf�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI1�2PSRotationRefVisibilitySboolSSIr�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI<�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI9�%PSPickableSboolSSIq�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIc�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff�'ModelLh�y:SChestModelSLimbNode�VersionI��Properties70Z�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD+�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�<DA0@D�2ſ��IPSLcl RotationSLcl RotationSSA+D�T4,@D�!�@D���1�EPSVisibility InheritanceSVisibility InheritanceSSIk�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI	UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDF/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIL2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSIW6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI!3PSDefaultKeyingGroupEnumSenumSSIT%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI-"PSliwSBoolSSAUI~CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�&ModelLp�y:SNeckModelSLimbNode"VersionI��Properties70t+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDE8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD=D`��9@D <�	��IPSLcl RotationSLcl RotationSSA+D���D 7K�D`�'@KEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI#UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD`/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI&	:PSLocalTranslationRefVisibilitySboolSSIf	2PSRotationRefVisibilitySboolSSI�	3PSRotationAxisVisibilitySboolSSI�	1PSScalingRefVisibilitySboolSSI-
9PSHierarchicalCenterVisibilitySboolSSIq
6PSGeometricCenterVisibilitySboolSSI�
8PSReferentialSizeSdoubleSNumberSD(@�
5PSDefaultKeyingGroupSintSIntegerSI;3PSDefaultKeyingGroupEnumSenumSSIn%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSIG"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff&ModelLx�y:SHeadModelSLimbNode<
VersionI��Properties70�
+PSRotationActiveSboolSSI�
(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDD_8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADD 4� @D s�?IPSLcl RotationSLcl RotationSSA+DM3�D���?D�o�?eEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI=UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDz/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI@:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIG9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSIU3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI1-PSShowTrajectoriesSboolSSIa"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�)ModelL��y:SLeftEyeModelSLimbNodeYVersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI6GPS
ScalingMaxSVector3DSVectorSDDD|8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD෭@D`#� @D��+@+EPSVisibility InheritanceSVisibility InheritanceSSIe,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD@/PSSetPreferedAngleSActionSSI{-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIF2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI
9PSHierarchicalCenterVisibilitySboolSSIQ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI3PSDefaultKeyingGroupEnumSenumSSIN%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI'"PSliwSBoolSSAUIxCPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�$*ModelL��y:SRightEyeModelSLimbNode VersionI��$Properties70q*PS
RotationOrderSenumSSI�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI5GPS
ScalingMaxSVector3DSVectorSDDD{8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���D %� @D�+@*EPSVisibility InheritanceSVisibility InheritanceSSId,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD? /PSSetPreferedAngleSActionSSIz -PSPivotsVisibilitySenumSSI� 5PSRotationLimitsVisibilitySboolSSI!:PSLocalTranslationRefVisibilitySboolSSIE!2PSRotationRefVisibilitySboolSSI�!3PSRotationAxisVisibilitySboolSSI�!1PSScalingRefVisibilitySboolSSI"9PSHierarchicalCenterVisibilitySboolSSIP"6PSGeometricCenterVisibilitySboolSSI�"8PSReferentialSizeSdoubleSNumberSD(@�"5PSDefaultKeyingGroupSintSIntegerSI#3PSDefaultKeyingGroupEnumSenumSSIM#%PSPickableSboolSSI�#*PS
TransformableSboolSSI�#(PSCullingModeSenumSSI�#-PSShowTrajectoriesSboolSSI&$"PSliwSBoolSSAUIw$CPSLimbLength 1SNumberSSAUD�?DDY@�$ShadingCY�$CullingS
CullingOff�,%ModelL��y:S
JawModelSLimbNode%VersionI��,Properties70l%+PSRotationActiveSboolSSI�%(PSInheritTypeSenumSSI�%GPS
ScalingMaxSVector3DSVectorSDDD<&7PSPreferedAngleXSdoubleSNumberSDUs\O,T9@�&8PSDefaultAttributeIndexSintSIntegerSI�&NPSLcl TranslationSLcl TranslationSSAD@�D@���?D`)��?1'EPSVisibility InheritanceSVisibility InheritanceSSIk',PS	MultiTakeSintSIntegerSI�'-PSManipulationModeSenumSSI	(UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDF(/PSSetPreferedAngleSActionSSI�(-PSPivotsVisibilitySenumSSI�(5PSRotationLimitsVisibilitySboolSSI):PSLocalTranslationRefVisibilitySboolSSIL)2PSRotationRefVisibilitySboolSSI�)3PSRotationAxisVisibilitySboolSSI�)1PSScalingRefVisibilitySboolSSI*9PSHierarchicalCenterVisibilitySboolSSIW*6PSGeometricCenterVisibilitySboolSSI�*8PSReferentialSizeSdoubleSNumberSD(@�*5PSDefaultKeyingGroupSintSIntegerSI!+3PSDefaultKeyingGroupEnumSenumSSIT+%PSPickableSboolSSI�+*PS
TransformableSboolSSI�+(PSCullingModeSenumSSI�+-PSShowTrajectoriesSboolSSI-,"PSliwSBoolSSAUI~,CPSLimbLength 1SNumberSSAUD�?DDY@�,ShadingCY�,CullingS
CullingOff�4,ModelL�:STongueBackModelSLimbNode(-VersionI�T4Properties70z-+PSRotationActiveSboolSSI�-(PSInheritTypeSenumSSI.GPS
ScalingMaxSVector3DSVectorSDDDK.8PSDefaultAttributeIndexSintSIntegerSI�.NPSLcl TranslationSLcl TranslationSSAD@<D��K�D`'�?�.EPSVisibility InheritanceSVisibility InheritanceSSI4/,PS	MultiTakeSintSIntegerSIo/-PSManipulationModeSenumSSI�/UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD0/PSSetPreferedAngleSActionSSIJ0-PSPivotsVisibilitySenumSSI�05PSRotationLimitsVisibilitySboolSSI�0:PSLocalTranslationRefVisibilitySboolSSI12PSRotationRefVisibilitySboolSSIV13PSRotationAxisVisibilitySboolSSI�11PSScalingRefVisibilitySboolSSI�19PSHierarchicalCenterVisibilitySboolSSI 26PSGeometricCenterVisibilitySboolSSIf28PSReferentialSizeSdoubleSNumberSD(@�25PSDefaultKeyingGroupSintSIntegerSI�23PSDefaultKeyingGroupEnumSenumSSI3%PSPickableSboolSSIU3*PS
TransformableSboolSSI�3(PSCullingModeSenumSSI�3-PSShowTrajectoriesSboolSSI�3"PSliwSBoolSSAUIG4CPSLimbLength 1SNumberSSAUD�?DDY@j4ShadingCY�4CullingS
CullingOffb<+ModelL�:STongueTipModelSLimbNode�4VersionI�<Properties70B5+PSRotationActiveSboolSSIx5(PSInheritTypeSenumSSI�5GPS
ScalingMaxSVector3DSVectorSDDD68PSDefaultAttributeIndexSintSIntegerSIo6NPSLcl TranslationSLcl TranslationSSAD@<D@���D�}�@�6EPSVisibility InheritanceSVisibility InheritanceSSI�6,PS	MultiTakeSintSIntegerSI77-PSManipulationModeSenumSSI�7UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�7/PSSetPreferedAngleSActionSSI8-PSPivotsVisibilitySenumSSIU85PSRotationLimitsVisibilitySboolSSI�8:PSLocalTranslationRefVisibilitySboolSSI�82PSRotationRefVisibilitySboolSSI93PSRotationAxisVisibilitySboolSSI]91PSScalingRefVisibilitySboolSSI�99PSHierarchicalCenterVisibilitySboolSSI�96PSGeometricCenterVisibilitySboolSSI.:8PSReferentialSizeSdoubleSNumberSD(@q:5PSDefaultKeyingGroupSintSIntegerSI�:3PSDefaultKeyingGroupEnumSenumSSI�:%PSPickableSboolSSI;*PS
TransformableSboolSSIS;(PSCullingModeSenumSSI�;-PSShowTrajectoriesSboolSSI�;"PSliwSBoolSSAUI<CPSLimbLength 1SNumberSSAUD�?DDY@2<ShadingCYU<CullingS
CullingOff-D.ModelL�:SLeftLipLowerModelSLimbNode�<VersionI��CProperties70
=+PSRotationActiveSboolSSIC=(PSInheritTypeSenumSSI�=GPS
ScalingMaxSVector3DSVectorSDDD�=8PSDefaultAttributeIndexSintSIntegerSI:>NPSLcl TranslationSLcl TranslationSSAD�"��?D��Y�D��r @�>EPSVisibility InheritanceSVisibility InheritanceSSI�>,PS	MultiTakeSintSIntegerSI?-PSManipulationModeSenumSSIe?UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�?/PSSetPreferedAngleSActionSSI�?-PSPivotsVisibilitySenumSSI @5PSRotationLimitsVisibilitySboolSSIh@:PSLocalTranslationRefVisibilitySboolSSI�@2PSRotationRefVisibilitySboolSSI�@3PSRotationAxisVisibilitySboolSSI(A1PSScalingRefVisibilitySboolSSIoA9PSHierarchicalCenterVisibilitySboolSSI�A6PSGeometricCenterVisibilitySboolSSI�A8PSReferentialSizeSdoubleSNumberSD(@<B5PSDefaultKeyingGroupSintSIntegerSI}B3PSDefaultKeyingGroupEnumSenumSSI�B%PSPickableSboolSSI�B*PS
TransformableSboolSSIC(PSCullingModeSenumSSIYC-PSShowTrajectoriesSboolSSI�C"PSliwSBoolSSAUI�CCPSLimbLength 1SNumberSSAUD�?DDY@�CShadingCY DCullingS
CullingOff*L(ModelL �:S
JawENDModelSLimbNode�DVersionI��KProperties70�D*PS
RotationOrderSenumSSI
E+PSRotationActiveSboolSSI@E(PSInheritTypeSenumSSI�EGPS
ScalingMaxSVector3DSVectorSDDD�E8PSDefaultAttributeIndexSintSIntegerSI7FNPSLcl TranslationSLcl TranslationSSAD@<D��P�D���@�FEPSVisibility InheritanceSVisibility InheritanceSSI�F,PS	MultiTakeSintSIntegerSI�F-PSManipulationModeSenumSSIbGUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�G/PSSetPreferedAngleSActionSSI�G-PSPivotsVisibilitySenumSSIH5PSRotationLimitsVisibilitySboolSSIeH:PSLocalTranslationRefVisibilitySboolSSI�H2PSRotationRefVisibilitySboolSSI�H3PSRotationAxisVisibilitySboolSSI%I1PSScalingRefVisibilitySboolSSIlI9PSHierarchicalCenterVisibilitySboolSSI�I6PSGeometricCenterVisibilitySboolSSI�I8PSReferentialSizeSdoubleSNumberSD(@9J5PSDefaultKeyingGroupSintSIntegerSIzJ3PSDefaultKeyingGroupEnumSenumSSI�J%PSPickableSboolSSI�J*PS
TransformableSboolSSIK(PSCullingModeSenumSSIVK-PSShowTrajectoriesSboolSSI�K"PSliwSBoolSSAUI�KCPSLimbLength 1SNumberSSAUD�?DDY@�KShadingCYLCullingS
CullingOff�S/ModelL(�:SRightLipLowerModelSLimbNode�LVersionI��SProperties70�L+PSRotationActiveSboolSSIM(PSInheritTypeSenumSSIaMGPS
ScalingMaxSVector3DSVectorSDDD�M8PSDefaultAttributeIndexSintSIntegerSINNPSLcl TranslationSLcl TranslationSSAD�"���D��Y�D@�r @VNEPSVisibility InheritanceSVisibility InheritanceSSI�N,PS	MultiTakeSintSIntegerSI�N-PSManipulationModeSenumSSI.OUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDkO/PSSetPreferedAngleSActionSSI�O-PSPivotsVisibilitySenumSSI�O5PSRotationLimitsVisibilitySboolSSI1P:PSLocalTranslationRefVisibilitySboolSSIqP2PSRotationRefVisibilitySboolSSI�P3PSRotationAxisVisibilitySboolSSI�P1PSScalingRefVisibilitySboolSSI8Q9PSHierarchicalCenterVisibilitySboolSSI|Q6PSGeometricCenterVisibilitySboolSSI�Q8PSReferentialSizeSdoubleSNumberSD(@R5PSDefaultKeyingGroupSintSIntegerSIFR3PSDefaultKeyingGroupEnumSenumSSIyR%PSPickableSboolSSI�R*PS
TransformableSboolSSI�R(PSCullingModeSenumSSI"S-PSShowTrajectoriesSboolSSIRS"PSliwSBoolSSAUI�SCPSLimbLength 1SNumberSSAUD�?DDY@�SShadingCY�SCullingS
CullingOff�[0ModelL0�:SRightLipCornerModelSLimbNodeQTVersionI�}[Properties70�T+PSRotationActiveSboolSSI�T(PSInheritTypeSenumSSI.UGPS
ScalingMaxSVector3DSVectorSDDDtU8PSDefaultAttributeIndexSintSIntegerSI�UNPSLcl TranslationSLcl TranslationSSAD��E
�D����D@�r@#VEPSVisibility InheritanceSVisibility InheritanceSSI]V,PS	MultiTakeSintSIntegerSI�V-PSManipulationModeSenumSSI�VUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD8W/PSSetPreferedAngleSActionSSIsW-PSPivotsVisibilitySenumSSI�W5PSRotationLimitsVisibilitySboolSSI�W:PSLocalTranslationRefVisibilitySboolSSI>X2PSRotationRefVisibilitySboolSSIX3PSRotationAxisVisibilitySboolSSI�X1PSScalingRefVisibilitySboolSSIY9PSHierarchicalCenterVisibilitySboolSSIIY6PSGeometricCenterVisibilitySboolSSI�Y8PSReferentialSizeSdoubleSNumberSD(@�Y5PSDefaultKeyingGroupSintSIntegerSIZ3PSDefaultKeyingGroupEnumSenumSSIFZ%PSPickableSboolSSI~Z*PS
TransformableSboolSSI�Z(PSCullingModeSenumSSI�Z-PSShowTrajectoriesSboolSSI["PSliwSBoolSSAUIp[CPSLimbLength 1SNumberSSAUD�?DDY@�[ShadingCY�[CullingS
CullingOff�c/ModelL8�:SLeftLipCornerModelSLimbNode\VersionI�IcProperties70o\+PSRotationActiveSboolSSI�\(PSInheritTypeSenumSSI�\GPS
ScalingMaxSVector3DSVectorSDDD@]8PSDefaultAttributeIndexSintSIntegerSI�]NPSLcl TranslationSLcl TranslationSSAD�LF
@D����D`�r@�]EPSVisibility InheritanceSVisibility InheritanceSSI)^,PS	MultiTakeSintSIntegerSId^-PSManipulationModeSenumSSI�^UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD_/PSSetPreferedAngleSActionSSI?_-PSPivotsVisibilitySenumSSI�_5PSRotationLimitsVisibilitySboolSSI�_:PSLocalTranslationRefVisibilitySboolSSI
`2PSRotationRefVisibilitySboolSSIK`3PSRotationAxisVisibilitySboolSSI�`1PSScalingRefVisibilitySboolSSI�`9PSHierarchicalCenterVisibilitySboolSSIa6PSGeometricCenterVisibilitySboolSSI[a8PSReferentialSizeSdoubleSNumberSD(@�a5PSDefaultKeyingGroupSintSIntegerSI�a3PSDefaultKeyingGroupEnumSenumSSIb%PSPickableSboolSSIJb*PS
TransformableSboolSSI�b(PSCullingModeSenumSSI�b-PSShowTrajectoriesSboolSSI�b"PSliwSBoolSSAUI<cCPSLimbLength 1SNumberSSAUD�?DDY@_cShadingCY�cCullingS
CullingOffZk.ModelL@�:SLeftLipUpperModelSLimbNode�cVersionI�kProperties70:d+PSRotationActiveSboolSSIpd(PSInheritTypeSenumSSI�dGPS
ScalingMaxSVector3DSVectorSDDDe8PSDefaultAttributeIndexSintSIntegerSIgeNPSLcl TranslationSLcl TranslationSSAD�3�?D��[�D |�"@�eEPSVisibility InheritanceSVisibility InheritanceSSI�e,PS	MultiTakeSintSIntegerSI/f-PSManipulationModeSenumSSI�fUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�f/PSSetPreferedAngleSActionSSI
g-PSPivotsVisibilitySenumSSIMg5PSRotationLimitsVisibilitySboolSSI�g:PSLocalTranslationRefVisibilitySboolSSI�g2PSRotationRefVisibilitySboolSSIh3PSRotationAxisVisibilitySboolSSIUh1PSScalingRefVisibilitySboolSSI�h9PSHierarchicalCenterVisibilitySboolSSI�h6PSGeometricCenterVisibilitySboolSSI&i8PSReferentialSizeSdoubleSNumberSD(@ii5PSDefaultKeyingGroupSintSIntegerSI�i3PSDefaultKeyingGroupEnumSenumSSI�i%PSPickableSboolSSIj*PS
TransformableSboolSSIKj(PSCullingModeSenumSSI�j-PSShowTrajectoriesSboolSSI�j"PSliwSBoolSSAUIkCPSLimbLength 1SNumberSSAUD�?DDY@*kShadingCYMkCullingS
CullingOff$s-ModelLH�:SLeftNostrilModelSLimbNode�kVersionI��rProperties70l+PSRotationActiveSboolSSI:l(PSInheritTypeSenumSSI�lGPS
ScalingMaxSVector3DSVectorSDDD�l8PSDefaultAttributeIndexSintSIntegerSI1mNPSLcl TranslationSLcl TranslationSSADף�?D�@D@i,"@�mEPSVisibility InheritanceSVisibility InheritanceSSI�m,PS	MultiTakeSintSIntegerSI�m-PSManipulationModeSenumSSI\nUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�n/PSSetPreferedAngleSActionSSI�n-PSPivotsVisibilitySenumSSIo5PSRotationLimitsVisibilitySboolSSI_o:PSLocalTranslationRefVisibilitySboolSSI�o2PSRotationRefVisibilitySboolSSI�o3PSRotationAxisVisibilitySboolSSIp1PSScalingRefVisibilitySboolSSIfp9PSHierarchicalCenterVisibilitySboolSSI�p6PSGeometricCenterVisibilitySboolSSI�p8PSReferentialSizeSdoubleSNumberSD(@3q5PSDefaultKeyingGroupSintSIntegerSItq3PSDefaultKeyingGroupEnumSenumSSI�q%PSPickableSboolSSI�q*PS
TransformableSboolSSIr(PSCullingModeSenumSSIPr-PSShowTrajectoriesSboolSSI�r"PSliwSBoolSSAUI�rCPSLimbLength 1SNumberSSAUD�?DDY@�rShadingCYsCullingS
CullingOff�z+ModelLP�:SLeftCheekModelSLimbNodezsVersionI��zProperties70�s+PSRotationActiveSboolSSIt(PSInheritTypeSenumSSIWtGPS
ScalingMaxSVector3DSVectorSDDD�t8PSDefaultAttributeIndexSintSIntegerSI�tNPSLcl TranslationSLcl TranslationSSAD���@D�(�
@D`��@LuEPSVisibility InheritanceSVisibility InheritanceSSI�u,PS	MultiTakeSintSIntegerSI�u-PSManipulationModeSenumSSI$vUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDav/PSSetPreferedAngleSActionSSI�v-PSPivotsVisibilitySenumSSI�v5PSRotationLimitsVisibilitySboolSSI'w:PSLocalTranslationRefVisibilitySboolSSIgw2PSRotationRefVisibilitySboolSSI�w3PSRotationAxisVisibilitySboolSSI�w1PSScalingRefVisibilitySboolSSI.x9PSHierarchicalCenterVisibilitySboolSSIrx6PSGeometricCenterVisibilitySboolSSI�x8PSReferentialSizeSdoubleSNumberSD(@�x5PSDefaultKeyingGroupSintSIntegerSI<y3PSDefaultKeyingGroupEnumSenumSSIoy%PSPickableSboolSSI�y*PS
TransformableSboolSSI�y(PSCullingModeSenumSSIz-PSShowTrajectoriesSboolSSIHz"PSliwSBoolSSAUI�zCPSLimbLength 1SNumberSSAUD�?DDY@�zShadingCY�zCullingS
CullingOff�1ModelLX�:SLeftEyelidLowerModelSLimbNodeH{VersionI�ʂProperties70�{+PSRotationActiveSboolSSI�{(PSInheritTypeSenumSSI%|GPS
ScalingMaxSVector3DSVectorSDDDk|8PSDefaultAttributeIndexSintSIntegerSI�|NPSLcl TranslationSLcl TranslationSSAD@�~@D�@D p~@}HPSLcl RotationSLcl RotationSSAD�D�Dp}EPSVisibility InheritanceSVisibility InheritanceSSI�},PS	MultiTakeSintSIntegerSI�}-PSManipulationModeSenumSSIH~UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�~/PSSetPreferedAngleSActionSSI�~-PSPivotsVisibilitySenumSSI5PSRotationLimitsVisibilitySboolSSIK:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIR�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI܀8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI`�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSIˁ*PS
TransformableSboolSSI�(PSCullingModeSenumSSI<�-PSShowTrajectoriesSboolSSIl�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOffފ1ModelL`�:SLeftEyelidUpperModelSLimbNodel�VersionI���Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSII�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD`��@D#$@D�
 @>�EPSVisibility InheritanceSVisibility InheritanceSSIx�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDS�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIц5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIY�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSIه1PSScalingRefVisibilitySboolSSI �9PSHierarchicalCenterVisibilitySboolSSId�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI.�3PSDefaultKeyingGroupEnumSenumSSIa�%PSPickableSboolSSI��*PS
TransformableSboolSSIω(PSCullingModeSenumSSI
�-PSShowTrajectoriesSboolSSI:�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCYъCullingS
CullingOff��/ModelL�ە:SLeftInnerBrowModelSLimbNode8�VersionI�d�Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD[�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��L�?D ��'@D`��"@
�EPSVisibility InheritanceSVisibility InheritanceSSID�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSIZ�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI%�2PSRotationRefVisibilitySboolSSIf�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI0�6PSGeometricCenterVisibilitySboolSSIv�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI-�%PSPickableSboolSSIe�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI֑-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIW�CPSLimbLength 1SNumberSSAUD�?DDY@z�ShadingCY��CullingS
CullingOff��0ModelL���:SLeftIOuterBrowModelSLimbNode�VersionI�i�Properties70V�*PS
RotationOrderSenumSSI��+PSRotationActiveSboolSSIœ(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD`�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD@@D �&@D��@�EPSVisibility InheritanceSVisibility InheritanceSSII�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD$�/PSSetPreferedAngleSActionSSI_�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI*�2PSRotationRefVisibilitySboolSSIk�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI5�6PSGeometricCenterVisibilitySboolSSI{�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI2�%PSPickableSboolSSIj�*PS
TransformableSboolSSI��(PSCullingModeSenumSSIۙ-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI\�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY��CullingS
CullingOff|�0ModelL��:SRightInnerBrowModelSLimbNode
�VersionI�6�Properties70\�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD-�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��L�D ��'@D`��"@ܜEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIQ�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI,�-PSPivotsVisibilitySenumSSIo�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI8�3PSRotationAxisVisibilitySboolSSIw�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIH�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI̠3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI7�*PS
TransformableSboolSSIm�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIء"PSliwSBoolSSAUI)�CPSLimbLength 1SNumberSSAUD�?DDY@L�ShadingCYo�CullingS
CullingOff��1ModelL��:SRightIOuterBrowModelSLimbNodeآVersionI�<�Properties70)�*PS
RotationOrderSenumSSIb�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD3�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��D���&@D��@�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIW�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI2�-PSPivotsVisibilitySenumSSIu�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI>�3PSRotationAxisVisibilitySboolSSI}�1PSScalingRefVisibilitySboolSSIħ9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIN�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIҨ3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI=�*PS
TransformableSboolSSIs�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIީ"PSliwSBoolSSAUI/�CPSLimbLength 1SNumberSSAUD�?DDY@R�ShadingCYu�CullingS
CullingOffQ�2ModelL��:SRightEyelidUpperModelSLimbNodeߪ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
CullingOffv�2ModelL���:SRightEyelidLowerModelSLimbNode��VersionI�0�Properties70�+PSRotationActiveSboolSSI6�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDѳ8PSDefaultAttributeIndexSintSIntegerSI-�NPSLcl TranslationSLcl TranslationSSAD��~�D u@D��~@��HPSLcl RotationSLcl RotationSSAD�D�DִEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIK�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI&�-PSPivotsVisibilitySenumSSIi�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI2�3PSRotationAxisVisibilitySboolSSIq�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIB�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIƸ3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI1�*PS
TransformableSboolSSIg�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIҹ"PSliwSBoolSSAUI#�CPSLimbLength 1SNumberSSAUD�?DDY@F�ShadingCYi�CullingS
CullingOff?�,ModelL���:SRightCheekModelSLimbNodeͺVersionI���Properties70�+PSRotationActiveSboolSSIU�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIL�NPSLcl TranslationSLcl TranslationSSAD-��D�V�
@D�]�@��EPSVisibility InheritanceSVisibility InheritanceSSIټ,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIw�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI2�5PSRotationLimitsVisibilitySboolSSIz�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI:�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIſ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@N�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI0�(PSCullingModeSenumSSIk�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY2�CullingS
CullingOff
�.ModelL���:SRightNostrilModelSLimbNode��VersionI���Properties70��+PSRotationActiveSboolSSI �(PSInheritTypeSenumSSIu�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSADף��D`@D`�,"@j�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIB�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSIE�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIL�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIZ�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI6�-PSShowTrajectoriesSboolSSIf�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��/ModelL��:SRightLipUpperModelSLimbNoded�VersionI���Properties70��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIA�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�3��D��W�D@i�"@6�EPSVisibility InheritanceSVisibility InheritanceSSIp�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDK�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIQ�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI\�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI&�3PSDefaultKeyingGroupEnumSenumSSIY�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI2�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffO�/ModelL��:SRightShoulderModelSLimbNode0�VersionI�	�Properties70��HPSPreRotationSVector3DSVectorSDc�5ua f�De0��`@D�(�Vc���+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIc�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD����D`�)6@D@
M��\�IPSLcl RotationSLcl RotationSSA+D����D���@D`t]���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI$�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSIB�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIJ�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@^�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI
�*PS
TransformableSboolSSI@�(PSCullingModeSenumSSI{�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCYB�CullingS
CullingOff��*ModelL�
�:SRightArmModelSLimbNode��VersionI�}�Properties70�HPSPreRotationSVector3DSVectorSD�&(�|f�D�`����!�DOE�rc�L�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIy�NPSLcl TranslationSLcl TranslationSSAD��$@D��a0�D@�վ��IPSLcl RotationSLcl RotationSSA+D&C1@D@��?D�1P@#�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;�.ModelL��:SRightForeArmModelSLimbNode�VersionI���Properties70��HPSPreRotationSVector3DSVectorSD�@���D�D�e�:�D
>���?��+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIO�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD`�W9�D �<�?D`,���H�IPSLcl RotationSLcl RotationSSA+D�L7@D@�KP@D�ω�?��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIs�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI.�5PSRotationLimitsVisibilitySboolSSIv�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI6�1PSScalingRefVisibilitySboolSSI}�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@J�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI,�(PSCullingModeSenumSSIg�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY.�CullingS
CullingOffZ�+ModelL�T�:SRightHandModelSLimbNode��VersionI��Properties70��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIn�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD ��8�D <P@D����?g�IPSLcl RotationSLcl RotationSSA+D���!�D����D &	���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI/�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI
�-PSPivotsVisibilitySenumSSIM�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIU�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI&�8PSReferentialSizeSdoubleSNumberSD(@i�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI�*PS
TransformableSboolSSIK�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@*�ShadingCYM�CullingS
CullingOff��1ModelL�Y�:SRightHandPinky1ModelSLimbNode��VersionI���Properties70%�HPSPreRotationSVector3DSVectorSD���P�οDrQ�'d�$@DH�Z~Q��^�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD/�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD����D�K�ɿD�ۚ���IPSLcl RotationSLcl RotationSSA+D�� �D cG@D��Z�5�EPSVisibility InheritanceSVisibility InheritanceSSIo�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI
�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDJ�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSIP�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI[�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI%�3PSDefaultKeyingGroupEnumSenumSSIX�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI1�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffP1ModelL�^�:SRightHandPinky2ModelSLimbNode1�VersionI�
Properties70��HPSPreRotationSVector3DSVectorSD�	�SQ㋿DG~�)'��?DL����?��+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSId�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���D�(���D`��]�IPSLcl RotationSLcl RotationSSA+D��g!�D`��D��G*@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI%�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSIC5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI3PSRotationAxisVisibilitySboolSSIK1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI8PSReferentialSizeSdoubleSNumberSD(@_5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI*PS
TransformableSboolSSIA(PSCullingModeSenumSSI|-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@ ShadingCYCCullingS
CullingOffu1ModelL�c�:SRightHandPinky3ModelSLimbNode�VersionI�/Properties70�+PSRotationActiveSboolSSI4(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI+NPSLcl TranslationSLcl TranslationSSAD�8$�D��V��D �@뿂IPSLcl RotationSLcl RotationSSA+D@[(@D�e@D I�5@�EPSVisibility InheritanceSVisibility InheritanceSSI,PS	MultiTakeSintSIntegerSIJ-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI%-PSPivotsVisibilitySenumSSIh5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI1	3PSRotationAxisVisibilitySboolSSIp	1PSScalingRefVisibilitySboolSSI�	9PSHierarchicalCenterVisibilitySboolSSI�	6PSGeometricCenterVisibilitySboolSSIA
8PSReferentialSizeSdoubleSNumberSD(@�
5PSDefaultKeyingGroupSintSIntegerSI�
3PSDefaultKeyingGroupEnumSenumSSI�
%PSPickableSboolSSI0*PS
TransformableSboolSSIf(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI"CPSLimbLength 1SNumberSSAUD�?DDY@EShadingCYhCullingS
CullingOff�0ModelL�h�:SRightHandRing1ModelSLimbNode�VersionI��Properties70?
HPSPreRotationSVector3DSVectorSD���=ģ�D�˘^�@Dm�a>4c�x
+PSRotationActiveSboolSSI�
(PSInheritTypeSenumSSIGPS
ScalingMaxSVector3DSVectorSDDDI8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD�H=�D�is�?D �m��IPSLcl RotationSLcl RotationSSA+D��_ۿD��6
@D + @OEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI'UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDd/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI*:PSLocalTranslationRefVisibilitySboolSSIj2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI19PSHierarchicalCenterVisibilitySboolSSIu6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI?3PSDefaultKeyingGroupEnumSenumSSIr%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSIK"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOffi0ModelL�m�:SRightHandRing2ModelSLimbNodeJVersionI�#Properties70�HPSPreRotationSVector3DSVectorSD-��	�ԿD!FWP*@D�@�?�{��+PSRotationActiveSboolSSI((PSInheritTypeSenumSSI}GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSINPSLcl TranslationSLcl TranslationSSAD�'�D ښ��D@K�߿vIPSLcl RotationSLcl RotationSSA+D��*�D �L�Dթ0@�EPSVisibility InheritanceSVisibility InheritanceSSI,PS	MultiTakeSintSIntegerSI>-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSI\5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI%3PSRotationAxisVisibilitySboolSSId1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI58PSReferentialSizeSdoubleSNumberSD(@x5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI$*PS
TransformableSboolSSIZ(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@9ShadingCY\CullingS
CullingOff�%0ModelL�r�:SRightHandRing3ModelSLimbNode�VersionI�G%Properties70+PSRotationActiveSboolSSIL(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSICNPSLcl TranslationSLcl TranslationSSAD@���D�
��D��ݿ�IPSLcl RotationSLcl RotationSSA+D���@D����D@�/>@�EPSVisibility InheritanceSVisibility InheritanceSSI' ,PS	MultiTakeSintSIntegerSIb -PSManipulationModeSenumSSI� UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD!/PSSetPreferedAngleSActionSSI=!-PSPivotsVisibilitySenumSSI�!5PSRotationLimitsVisibilitySboolSSI�!:PSLocalTranslationRefVisibilitySboolSSI"2PSRotationRefVisibilitySboolSSII"3PSRotationAxisVisibilitySboolSSI�"1PSScalingRefVisibilitySboolSSI�"9PSHierarchicalCenterVisibilitySboolSSI#6PSGeometricCenterVisibilitySboolSSIY#8PSReferentialSizeSdoubleSNumberSD(@�#5PSDefaultKeyingGroupSintSIntegerSI�#3PSDefaultKeyingGroupEnumSenumSSI$%PSPickableSboolSSIH$*PS
TransformableSboolSSI~$(PSCullingModeSenumSSI�$-PSShowTrajectoriesSboolSSI�$"PSliwSBoolSSAUI:%CPSLimbLength 1SNumberSSAUD�?DDY@]%ShadingCY�%CullingS
CullingOff	.2ModelL�w�:SRightHandMiddle1ModelSLimbNode�%VersionI��-Properties70Y&HPSPreRotationSVector3DSVectorSD�iaQ7؀�Dr3�k��D
��--��&+PSRotationActiveSboolSSI�&(PSInheritTypeSenumSSI'GPS
ScalingMaxSVector3DSVectorSDDDc'8PSDefaultAttributeIndexSintSIntegerSI�'NPSLcl TranslationSLcl TranslationSSAD�QB�D<��?D@��?(IPSLcl RotationSLcl RotationSSA+D��$@D��c��D`� @i(EPSVisibility InheritanceSVisibility InheritanceSSI�(,PS	MultiTakeSintSIntegerSI�(-PSManipulationModeSenumSSIA)UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD~)/PSSetPreferedAngleSActionSSI�)-PSPivotsVisibilitySenumSSI�)5PSRotationLimitsVisibilitySboolSSID*:PSLocalTranslationRefVisibilitySboolSSI�*2PSRotationRefVisibilitySboolSSI�*3PSRotationAxisVisibilitySboolSSI+1PSScalingRefVisibilitySboolSSIK+9PSHierarchicalCenterVisibilitySboolSSI�+6PSGeometricCenterVisibilitySboolSSI�+8PSReferentialSizeSdoubleSNumberSD(@,5PSDefaultKeyingGroupSintSIntegerSIY,3PSDefaultKeyingGroupEnumSenumSSI�,%PSPickableSboolSSI�,*PS
TransformableSboolSSI�,(PSCullingModeSenumSSI5--PSShowTrajectoriesSboolSSIe-"PSliwSBoolSSAUI�-CPSLimbLength 1SNumberSSAUD�?DDY@�-ShadingCY�-CullingS
CullingOff�62ModelL�|�:SRightHandMiddle2ModelSLimbNodef.VersionI�?6Properties70�.HPSPreRotationSVector3DSVectorSD�l�`�տDQT���@D��#W'9�/+PSRotationActiveSboolSSID/(PSInheritTypeSenumSSI�/GPS
ScalingMaxSVector3DSVectorSDDD�/8PSDefaultAttributeIndexSintSIntegerSI;0NPSLcl TranslationSLcl TranslationSSAD`��D���?D@��?�0IPSLcl RotationSLcl RotationSSA+D���ҿD����D`�37@�0EPSVisibility InheritanceSVisibility InheritanceSSI1,PS	MultiTakeSintSIntegerSIZ1-PSManipulationModeSenumSSI�1UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�1/PSSetPreferedAngleSActionSSI52-PSPivotsVisibilitySenumSSIx25PSRotationLimitsVisibilitySboolSSI�2:PSLocalTranslationRefVisibilitySboolSSI32PSRotationRefVisibilitySboolSSIA33PSRotationAxisVisibilitySboolSSI�31PSScalingRefVisibilitySboolSSI�39PSHierarchicalCenterVisibilitySboolSSI46PSGeometricCenterVisibilitySboolSSIQ48PSReferentialSizeSdoubleSNumberSD(@�45PSDefaultKeyingGroupSintSIntegerSI�43PSDefaultKeyingGroupEnumSenumSSI5%PSPickableSboolSSI@5*PS
TransformableSboolSSIv5(PSCullingModeSenumSSI�5-PSShowTrajectoriesSboolSSI�5"PSliwSBoolSSAUI26CPSLimbLength 1SNumberSSAUD�?DDY@U6ShadingCYx6CullingS
CullingOff�>2ModelL���:SRightHandMiddle3ModelSLimbNode�6VersionI�e>Properties7047+PSRotationActiveSboolSSIj7(PSInheritTypeSenumSSI�7GPS
ScalingMaxSVector3DSVectorSDDD88PSDefaultAttributeIndexSintSIntegerSIa8NPSLcl TranslationSLcl TranslationSSAD >u
�D@�&�D�I��?�8IPSLcl RotationSLcl RotationSSA+D {⺿D �+�D@�T?@9EPSVisibility InheritanceSVisibility InheritanceSSIE9,PS	MultiTakeSintSIntegerSI�9-PSManipulationModeSenumSSI�9UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD :/PSSetPreferedAngleSActionSSI[:-PSPivotsVisibilitySenumSSI�:5PSRotationLimitsVisibilitySboolSSI�::PSLocalTranslationRefVisibilitySboolSSI&;2PSRotationRefVisibilitySboolSSIg;3PSRotationAxisVisibilitySboolSSI�;1PSScalingRefVisibilitySboolSSI�;9PSHierarchicalCenterVisibilitySboolSSI1<6PSGeometricCenterVisibilitySboolSSIw<8PSReferentialSizeSdoubleSNumberSD(@�<5PSDefaultKeyingGroupSintSIntegerSI�<3PSDefaultKeyingGroupEnumSenumSSI.=%PSPickableSboolSSIf=*PS
TransformableSboolSSI�=(PSCullingModeSenumSSI�=-PSShowTrajectoriesSboolSSI>"PSliwSBoolSSAUIX>CPSLimbLength 1SNumberSSAUD�?DDY@{>ShadingCY�>CullingS
CullingOff&G1ModelL��:SRightHandIndex1ModelSLimbNode?VersionI��FProperties70v?HPSPreRotationSVector3DSVectorSD(Qp�c�D���PNk"�Dk�	A���?+PSRotationActiveSboolSSI�?(PSInheritTypeSenumSSI:@GPS
ScalingMaxSVector3DSVectorSDDD�@8PSDefaultAttributeIndexSintSIntegerSI�@NPSLcl TranslationSLcl TranslationSSAD�e��D�yҿ�D��y@3AIPSLcl RotationSLcl RotationSSA+D`�,@D�Ep�D�ۮ@�AEPSVisibility InheritanceSVisibility InheritanceSSI�A,PS	MultiTakeSintSIntegerSI�A-PSManipulationModeSenumSSI^BUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�B/PSSetPreferedAngleSActionSSI�B-PSPivotsVisibilitySenumSSIC5PSRotationLimitsVisibilitySboolSSIaC:PSLocalTranslationRefVisibilitySboolSSI�C2PSRotationRefVisibilitySboolSSI�C3PSRotationAxisVisibilitySboolSSI!D1PSScalingRefVisibilitySboolSSIhD9PSHierarchicalCenterVisibilitySboolSSI�D6PSGeometricCenterVisibilitySboolSSI�D8PSReferentialSizeSdoubleSNumberSD(@5E5PSDefaultKeyingGroupSintSIntegerSIvE3PSDefaultKeyingGroupEnumSenumSSI�E%PSPickableSboolSSI�E*PS
TransformableSboolSSIF(PSCullingModeSenumSSIRF-PSShowTrajectoriesSboolSSI�F"PSliwSBoolSSAUI�FCPSLimbLength 1SNumberSSAUD�?DDY@�FShadingCYGCullingS
CullingOff�O1ModelL���:SRightHandIndex2ModelSLimbNode�GVersionI�[OProperties70�GHPSPreRotationSVector3DSVectorSD�tc�hQ�?D������D�+�}�\�*H+PSRotationActiveSboolSSI`H(PSInheritTypeSenumSSI�HGPS
ScalingMaxSVector3DSVectorSDDD�H8PSDefaultAttributeIndexSintSIntegerSIWINPSLcl TranslationSLcl TranslationSSAD���
�D���?D�!C�?�IIPSLcl RotationSLcl RotationSSA+D����D��u�D�/�7@JEPSVisibility InheritanceSVisibility InheritanceSSI;J,PS	MultiTakeSintSIntegerSIvJ-PSManipulationModeSenumSSI�JUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDK/PSSetPreferedAngleSActionSSIQK-PSPivotsVisibilitySenumSSI�K5PSRotationLimitsVisibilitySboolSSI�K:PSLocalTranslationRefVisibilitySboolSSIL2PSRotationRefVisibilitySboolSSI]L3PSRotationAxisVisibilitySboolSSI�L1PSScalingRefVisibilitySboolSSI�L9PSHierarchicalCenterVisibilitySboolSSI'M6PSGeometricCenterVisibilitySboolSSImM8PSReferentialSizeSdoubleSNumberSD(@�M5PSDefaultKeyingGroupSintSIntegerSI�M3PSDefaultKeyingGroupEnumSenumSSI$N%PSPickableSboolSSI\N*PS
TransformableSboolSSI�N(PSCullingModeSenumSSI�N-PSShowTrajectoriesSboolSSI�N"PSliwSBoolSSAUINOCPSLimbLength 1SNumberSSAUD�?DDY@qOShadingCY�OCullingS
CullingOff�W1ModelLP9<;SRightHandIndex3ModelSLimbNode�OVersionI��WProperties70OP+PSRotationActiveSboolSSI�P(PSInheritTypeSenumSSI�PGPS
ScalingMaxSVector3DSVectorSDDD Q8PSDefaultAttributeIndexSintSIntegerSI|QNPSLcl TranslationSLcl TranslationSSAD�.�D��߿D@���?�QIPSLcl RotationSLcl RotationSSA+D@��?D���D���B@&REPSVisibility InheritanceSVisibility InheritanceSSI`R,PS	MultiTakeSintSIntegerSI�R-PSManipulationModeSenumSSI�RUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD;S/PSSetPreferedAngleSActionSSIvS-PSPivotsVisibilitySenumSSI�S5PSRotationLimitsVisibilitySboolSSIT:PSLocalTranslationRefVisibilitySboolSSIAT2PSRotationRefVisibilitySboolSSI�T3PSRotationAxisVisibilitySboolSSI�T1PSScalingRefVisibilitySboolSSIU9PSHierarchicalCenterVisibilitySboolSSILU6PSGeometricCenterVisibilitySboolSSI�U8PSReferentialSizeSdoubleSNumberSD(@�U5PSDefaultKeyingGroupSintSIntegerSIV3PSDefaultKeyingGroupEnumSenumSSIIV%PSPickableSboolSSI�V*PS
TransformableSboolSSI�V(PSCullingModeSenumSSI�V-PSShowTrajectoriesSboolSSI"W"PSliwSBoolSSAUIsWCPSLimbLength 1SNumberSSAUD�?DDY@�WShadingCY�WCullingS
CullingOffA`1ModelLX><;SRightHandThumb1ModelSLimbNode"XVersionI��_Properties70�XHPSPreRotationSVector3DSVectorSD�#uS�L<D��t[��?D	��*��X+PSRotationActiveSboolSSIY(PSInheritTypeSenumSSIUYGPS
ScalingMaxSVector3DSVectorSDDD�Y8PSDefaultAttributeIndexSintSIntegerSI�YNPSLcl TranslationSLcl TranslationSSAD�~��D����D༯@NZIPSLcl RotationSLcl RotationSSA+D��!�D�I�?D��_@�ZEPSVisibility InheritanceSVisibility InheritanceSSI�Z,PS	MultiTakeSintSIntegerSI[-PSManipulationModeSenumSSIy[UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�[/PSSetPreferedAngleSActionSSI�[-PSPivotsVisibilitySenumSSI4\5PSRotationLimitsVisibilitySboolSSI|\:PSLocalTranslationRefVisibilitySboolSSI�\2PSRotationRefVisibilitySboolSSI�\3PSRotationAxisVisibilitySboolSSI<]1PSScalingRefVisibilitySboolSSI�]9PSHierarchicalCenterVisibilitySboolSSI�]6PSGeometricCenterVisibilitySboolSSI
^8PSReferentialSizeSdoubleSNumberSD(@P^5PSDefaultKeyingGroupSintSIntegerSI�^3PSDefaultKeyingGroupEnumSenumSSI�^%PSPickableSboolSSI�^*PS
TransformableSboolSSI2_(PSCullingModeSenumSSIm_-PSShowTrajectoriesSboolSSI�_"PSliwSBoolSSAUI�_CPSLimbLength 1SNumberSSAUD�?DDY@`ShadingCY4`CullingS
CullingOfffh1ModelL`C<;SRightHandThumb2ModelSLimbNode�`VersionI� hProperties70�`+PSRotationActiveSboolSSI%a(PSInheritTypeSenumSSIzaGPS
ScalingMaxSVector3DSVectorSDDD�a8PSDefaultAttributeIndexSintSIntegerSIbNPSLcl TranslationSLcl TranslationSSAD`�2��D`���D��@sbIPSLcl RotationSLcl RotationSSA+D ��@D`��*�D��x��bEPSVisibility InheritanceSVisibility InheritanceSSIc,PS	MultiTakeSintSIntegerSI;c-PSManipulationModeSenumSSI�cUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�c/PSSetPreferedAngleSActionSSId-PSPivotsVisibilitySenumSSIYd5PSRotationLimitsVisibilitySboolSSI�d:PSLocalTranslationRefVisibilitySboolSSI�d2PSRotationRefVisibilitySboolSSI"e3PSRotationAxisVisibilitySboolSSIae1PSScalingRefVisibilitySboolSSI�e9PSHierarchicalCenterVisibilitySboolSSI�e6PSGeometricCenterVisibilitySboolSSI2f8PSReferentialSizeSdoubleSNumberSD(@uf5PSDefaultKeyingGroupSintSIntegerSI�f3PSDefaultKeyingGroupEnumSenumSSI�f%PSPickableSboolSSI!g*PS
TransformableSboolSSIWg(PSCullingModeSenumSSI�g-PSShowTrajectoriesSboolSSI�g"PSliwSBoolSSAUIhCPSLimbLength 1SNumberSSAUD�?DDY@6hShadingCYYhCullingS
CullingOff�p1ModelLhH<;SRightHandThumb3ModelSLimbNode�hVersionI��pProperties701iHPSPreRotationSVector3DSVectorSD$�rOϸ>DDji+PSRotationActiveSboolSSI�i(PSInheritTypeSenumSSI�iGPS
ScalingMaxSVector3DSVectorSDDD;j8PSDefaultAttributeIndexSintSIntegerSI�jNPSLcl TranslationSLcl TranslationSSAD@5^�D �r�D@��@�jIPSLcl RotationSLcl RotationSSA+D���	@D`�/�D���AkEPSVisibility InheritanceSVisibility InheritanceSSI{k,PS	MultiTakeSintSIntegerSI�k-PSManipulationModeSenumSSIlUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDVl/PSSetPreferedAngleSActionSSI�l-PSPivotsVisibilitySenumSSI�l5PSRotationLimitsVisibilitySboolSSIm:PSLocalTranslationRefVisibilitySboolSSI\m2PSRotationRefVisibilitySboolSSI�m3PSRotationAxisVisibilitySboolSSI�m1PSScalingRefVisibilitySboolSSI#n9PSHierarchicalCenterVisibilitySboolSSIgn6PSGeometricCenterVisibilitySboolSSI�n8PSReferentialSizeSdoubleSNumberSD(@�n5PSDefaultKeyingGroupSintSIntegerSI1o3PSDefaultKeyingGroupEnumSenumSSIdo%PSPickableSboolSSI�o*PS
TransformableSboolSSI�o(PSCullingModeSenumSSI
p-PSShowTrajectoriesSboolSSI=p"PSliwSBoolSSAUI�pCPSLimbLength 1SNumberSSAUD�?DDY@�pShadingCY�pCullingS
CullingOffYy.ModelLpM<;SLeftShoulderModelSLimbNode:qVersionI�yProperties70�qHPSPreRotationSVector3DSVectorSD�2e��D�Z��_@D�OZ2�I9��q+PSRotationActiveSboolSSIr(PSInheritTypeSenumSSImrGPS
ScalingMaxSVector3DSVectorSDDD�r8PSDefaultAttributeIndexSintSIntegerSIsNPSLcl TranslationSLcl TranslationSSAD��@D@�)6@D@
M��fsIPSLcl RotationSLcl RotationSSA+D`��@D����D �^
��sEPSVisibility InheritanceSVisibility InheritanceSSI�s,PS	MultiTakeSintSIntegerSI.t-PSManipulationModeSenumSSI�tUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�t/PSSetPreferedAngleSActionSSI	u-PSPivotsVisibilitySenumSSILu5PSRotationLimitsVisibilitySboolSSI�u:PSLocalTranslationRefVisibilitySboolSSI�u2PSRotationRefVisibilitySboolSSIv3PSRotationAxisVisibilitySboolSSITv1PSScalingRefVisibilitySboolSSI�v9PSHierarchicalCenterVisibilitySboolSSI�v6PSGeometricCenterVisibilitySboolSSI%w8PSReferentialSizeSdoubleSNumberSD(@hw5PSDefaultKeyingGroupSintSIntegerSI�w3PSDefaultKeyingGroupEnumSenumSSI�w%PSPickableSboolSSIx*PS
TransformableSboolSSIJx(PSCullingModeSenumSSI�x-PSShowTrajectoriesSboolSSI�x"PSliwSBoolSSAUIyCPSLimbLength 1SNumberSSAUD�?DDY@)yShadingCYLyCullingS
CullingOff́)ModelLxR<;SLeftArmModelSLimbNode�yVersionI���Properties70zHPSPreRotationSVector3DSVectorSD��.�&��D�t�r%�D����9@Uz+PSRotationActiveSboolSSI�z(PSInheritTypeSenumSSI�zGPS
ScalingMaxSVector3DSVectorSDDD&{8PSDefaultAttributeIndexSintSIntegerSI�{NPSLcl TranslationSLcl TranslationSSAD��$@DL�D���{IPSLcl RotationSLcl RotationSSA+D�M�B@D@�{=@D�z�L�,|EPSVisibility InheritanceSVisibility InheritanceSSIf|,PS	MultiTakeSintSIntegerSI�|-PSManipulationModeSenumSSI}UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDA}/PSSetPreferedAngleSActionSSI|}-PSPivotsVisibilitySenumSSI�}5PSRotationLimitsVisibilitySboolSSI~:PSLocalTranslationRefVisibilitySboolSSIG~2PSRotationRefVisibilitySboolSSI�~3PSRotationAxisVisibilitySboolSSI�~1PSScalingRefVisibilitySboolSSI9PSHierarchicalCenterVisibilitySboolSSIR6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSIO�%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI(�"PSliwSBoolSSAUIy�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOffC�-ModelL�W<;SLeftForeArmModelSLimbNode$�VersionI���Properties70��HPSPreRotationSVector3DSVectorSD0�]��D�Q�e�:�Dy�=���?̂+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIW�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��g9@D�=D@a�P�IPSLcl RotationSLcl RotationSSA+D@+R2@D�\GQ�D��,(@��EPSVisibility InheritanceSVisibility InheritanceSSI݄,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI{�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI6�5PSRotationLimitsVisibilitySboolSSI~�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI>�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSIɇ6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@R�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIƈ%PSPickableSboolSSI��*PS
TransformableSboolSSI4�(PSCullingModeSenumSSIo�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY6�CullingS
CullingOffa�*ModelL�\<;SLeftHandModelSLimbNode��VersionI��Properties70�+PSRotationActiveSboolSSI �(PSInheritTypeSenumSSIu�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���8@DQ	>Dx��=n�IPSLcl RotationSLcl RotationSSA+D@�)�D�O�ֿD �1@��EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI6�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD֍/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIT�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI܎2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI\�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI-�8PSReferentialSizeSdoubleSNumberSD(@p�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSIR�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@1�ShadingCYT�CullingS
CullingOffۚ0ModelL�a<;SLeftHandPinky1ModelSLimbNode��VersionI���Properties70+�HPSPreRotationSVector3DSVectorSD�^�P�οDQ�'d�$@Dd�Z~Q��d�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD5�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD �C@D�S
�D@�	��IPSLcl RotationSLcl RotationSSA+D l�D`�b�D`�Q��;�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
CullingOffU�0ModelL�f<;SLeftHandPinky2ModelSLimbNode6�VersionI��Properties70��HPSPreRotationSVector3DSVectorSD�޶UQ㋿D,��)'��?DhO����?ޛ+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSIi�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD���@D��Ji�D��¿b�IPSLcl RotationSLcl RotationSSA+D@���D ;�@D��o.���EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI*�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDʞ/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSIH�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSIП2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSIP�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI۠6PSGeometricCenterVisibilitySboolSSI!�8PSReferentialSizeSdoubleSNumberSD(@d�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSIء%PSPickableSboolSSI�*PS
TransformableSboolSSIF�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@%�ShadingCYH�CullingS
CullingOffy�0ModelL�k<;SLeftHandPinky3ModelSLimbNode��VersionI�3�Properties70�+PSRotationActiveSboolSSI8�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDDӤ8PSDefaultAttributeIndexSintSIntegerSI/�NPSLcl TranslationSLcl TranslationSSAD@�s@D`��D�D P��>��IPSLcl RotationSLcl RotationSSA+D�^�'@D@9�	�D@(=3�٥EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIN�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI)�-PSPivotsVisibilitySenumSSIl�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI5�3PSRotationAxisVisibilitySboolSSIt�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSIE�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSIɩ3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI4�*PS
TransformableSboolSSIj�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIժ"PSliwSBoolSSAUI&�CPSLimbLength 1SNumberSSAUD�?DDY@I�ShadingCYl�CullingS
CullingOff�/ModelL�p<;SLeftHandRing1ModelSLimbNodeӫVersionI���Properties70B�HPSPreRotationSVector3DSVectorSD�E��=ģ�DM�˘^�@D��a>4c�{�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDL�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��@D�P�׿D EB���IPSLcl RotationSLcl RotationSSA+D ��?D`H�	�D�h2 �R�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSIǮ-PSManipulationModeSenumSSI*�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDg�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI-�:PSLocalTranslationRefVisibilitySboolSSIm�2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI4�9PSHierarchicalCenterVisibilitySboolSSIx�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIB�3PSDefaultKeyingGroupEnumSenumSSIu�%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSIN�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@³ShadingCY�CullingS
CullingOffk�/ModelL8�v:SLeftHandRing2ModelSLimbNodeL�VersionI�%�Properties70��HPSPreRotationSVector3DSVectorSD0[�	�ԿD�DWP*@DA�?�{���+PSRotationActiveSboolSSI*�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDŵ8PSDefaultAttributeIndexSintSIntegerSI!�NPSLcl TranslationSLcl TranslationSSAD A@D@Va�D�;�̿x�IPSLcl RotationSLcl RotationSSA+D���'�D �i@D�`2�˶EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI@�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI^�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI'�3PSRotationAxisVisibilitySboolSSIf�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI7�8PSReferentialSizeSdoubleSNumberSD(@z�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI&�*PS
TransformableSboolSSI\�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSIǻ"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@;�ShadingCY^�CullingS
CullingOff��/ModelL@�v:SLeftHandRing3ModelSLimbNodeżVersionI�H�Properties70�+PSRotationActiveSboolSSIM�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSID�NPSLcl TranslationSLcl TranslationSSAD��@D0 A>D�����IPSLcl RotationSLcl RotationSSA+D@D���
@D �
=��EPSVisibility InheritanceSVisibility InheritanceSSI(�,PS	MultiTakeSintSIntegerSIc�-PSManipulationModeSenumSSIƿUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI>�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI	�2PSRotationRefVisibilitySboolSSIJ�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSIZ�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSII�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI;�CPSLimbLength 1SNumberSSAUD�?DDY@^�ShadingCY��CullingS
CullingOff	�1ModelLH�v:SLeftHandMiddle1ModelSLimbNode��VersionI���Properties70Y�HPSPreRotationSVector3DSVectorSDR��Q7؀�D�5�k��D���--���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDDc�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD�h@D`5!ȿD�9�?�IPSLcl RotationSLcl RotationSSA+D ��@D�k��D�!�i�EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSIA�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD~�/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSID�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIK�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@�5PSDefaultKeyingGroupSintSIntegerSIY�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI��(PSCullingModeSenumSSI5�-PSShowTrajectoriesSboolSSIe�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff��1ModelLPw:SLeftHandMiddle2ModelSLimbNodee�VersionI�>�Properties70��HPSPreRotationSVector3DSVectorSD���`�տD`���@D8�#W'9�
�+PSRotationActiveSboolSSIC�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI:�NPSLcl TranslationSLcl TranslationSSAD Q�@D.s??D�ǥ���IPSLcl RotationSLcl RotationSSA+D�x��D@�O�?D�*7���EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSIY�-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI4�-PSPivotsVisibilitySenumSSIw�5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI@�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI��9PSHierarchicalCenterVisibilitySboolSSI
�6PSGeometricCenterVisibilitySboolSSIP�8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI?�*PS
TransformableSboolSSIu�(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI1�CPSLimbLength 1SNumberSSAUD�?DDY@T�ShadingCYw�CullingS
CullingOff��1ModelLX	w:SLeftHandMiddle3ModelSLimbNode��VersionI�c�Properties702�+PSRotationActiveSboolSSIh�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSI_�NPSLcl TranslationSLcl TranslationSSAD �+@D��u��D@6�>��IPSLcl RotationSLcl RotationSSA+D�u.��D@R��?D��K?�	�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
CullingOff#�0ModelL`w:SLeftHandIndex1ModelSLimbNode�VersionI���Properties70s�HPSPreRotationSVector3DSVectorSD(�t�c�D���PNk"�Dʴ	A����+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI7�GPS
ScalingMaxSVector3DSVectorSDDD}�8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD��@D���D�B
@0�IPSLcl RotationSLcl RotationSSA+D�';@D��5@D�����EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI[�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI^�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSIe�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@2�5PSDefaultKeyingGroupSintSIntegerSIs�3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI�(PSCullingModeSenumSSIO�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY�CullingS
CullingOff��0ModelLhw:SLeftHandIndex2ModelSLimbNode~�VersionI�W�Properties70��HPSPreRotationSVector3DSVectorSD�&^�hQ�?D�������D�+�}�\�&�+PSRotationActiveSboolSSI\�(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSIS�NPSLcl TranslationSLcl TranslationSSAD�{�@D`�ft?D�Z�?��IPSLcl RotationSLcl RotationSSA+De�&�D��W�?D`a�5���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��0ModelLpw:SLeftHandIndex3ModelSLimbNode��VersionI�{�Properties70J�+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSI��GPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSIw�NPSLcl TranslationSLcl TranslationSSAD��_@D����D�(�վ��IPSLcl RotationSLcl RotationSSA+D�&2-�D��5�?D@�A�!�EPSVisibility InheritanceSVisibility InheritanceSSI[�,PS	MultiTakeSintSIntegerSI��-PSManipulationModeSenumSSI��UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD6�/PSSetPreferedAngleSActionSSIq�-PSPivotsVisibilitySenumSSI��5PSRotationLimitsVisibilitySboolSSI��:PSLocalTranslationRefVisibilitySboolSSI<�2PSRotationRefVisibilitySboolSSI}�3PSRotationAxisVisibilitySboolSSI��1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSIG�6PSGeometricCenterVisibilitySboolSSI��8PSReferentialSizeSdoubleSNumberSD(@��5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSID�%PSPickableSboolSSI|�*PS
TransformableSboolSSI��(PSCullingModeSenumSSI��-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUIn�CPSLimbLength 1SNumberSSAUD�?DDY@��ShadingCY��CullingS
CullingOff;�0ModelLxw:SLeftHandThumb1ModelSLimbNode�VersionI���Properties70��HPSPreRotationSVector3DSVectorSDD��t[��?D2��*���+PSRotationActiveSboolSSI��(PSInheritTypeSenumSSIO�GPS
ScalingMaxSVector3DSVectorSDDD��8PSDefaultAttributeIndexSintSIntegerSI��NPSLcl TranslationSLcl TranslationSSAD���?D���D��l@H�IPSLcl RotationSLcl RotationSSA+D��!�D�I��D��_���EPSVisibility InheritanceSVisibility InheritanceSSI��,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIs�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD��/PSSetPreferedAngleSActionSSI��-PSPivotsVisibilitySenumSSI.�5PSRotationLimitsVisibilitySboolSSIv�:PSLocalTranslationRefVisibilitySboolSSI��2PSRotationRefVisibilitySboolSSI��3PSRotationAxisVisibilitySboolSSI6�1PSScalingRefVisibilitySboolSSI}�9PSHierarchicalCenterVisibilitySboolSSI��6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@J�5PSDefaultKeyingGroupSintSIntegerSI��3PSDefaultKeyingGroupEnumSenumSSI��%PSPickableSboolSSI��*PS
TransformableSboolSSI,�(PSCullingModeSenumSSIg�-PSShowTrajectoriesSboolSSI��"PSliwSBoolSSAUI��CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY.�CullingS
CullingOff_0ModelL�"w:SLeftHandThumb2ModelSLimbNode��VersionI�Properties70��+PSRotationActiveSboolSSI(PSInheritTypeSenumSSIsGPS
ScalingMaxSVector3DSVectorSDDD�8PSDefaultAttributeIndexSintSIntegerSINPSLcl TranslationSLcl TranslationSSAD`�2�?D`���D`
�@lIPSLcl RotationSLcl RotationSSA+D���@D���*@D��x@�EPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI4-PSManipulationModeSenumSSI�UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI-PSPivotsVisibilitySenumSSIR5PSRotationLimitsVisibilitySboolSSI�:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI3PSRotationAxisVisibilitySboolSSIZ1PSScalingRefVisibilitySboolSSI�9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI+8PSReferentialSizeSdoubleSNumberSD(@n5PSDefaultKeyingGroupSintSIntegerSI�3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI*PS
TransformableSboolSSIP(PSCullingModeSenumSSI�-PSShowTrajectoriesSboolSSI�"PSliwSBoolSSAUICPSLimbLength 1SNumberSSAUD�?DDY@/ShadingCYRCullingS
CullingOff�0ModelL�'w:SLeftHandThumb3ModelSLimbNode�VersionI��Properties70)HPSPreRotationSVector3DSVectorSD��cܥ�>DDb+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI�GPS
ScalingMaxSVector3DSVectorSDDD3	8PSDefaultAttributeIndexSintSIntegerSI�	NPSLcl TranslationSLcl TranslationSSAD@5^@D �r�D@��@�	IPSLcl RotationSLcl RotationSSA+D���	@D�/@D`�@9
EPSVisibility InheritanceSVisibility InheritanceSSIs
,PS	MultiTakeSintSIntegerSI�
-PSManipulationModeSenumSSIUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDN/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI:PSLocalTranslationRefVisibilitySboolSSIT2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI
9PSHierarchicalCenterVisibilitySboolSSI_
6PSGeometricCenterVisibilitySboolSSI�
8PSReferentialSizeSdoubleSNumberSD(@�
5PSDefaultKeyingGroupSintSIntegerSI)3PSDefaultKeyingGroupEnumSenumSSI\%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI-PSShowTrajectoriesSboolSSI5"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff�,ModelL�,w:SRightUpLegModelSLimbNode0VersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI
GPS
ScalingMaxSVector3DSVectorSDDDS8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD@.�D �C�D�IPSLcl RotationSLcl RotationSSA+D`�F@D�o�D@��!@YEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSI1UPSScalingPivotUpdateOffsetSVector3DSVectorSDDDn/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI�5PSRotationLimitsVisibilitySboolSSI4:PSLocalTranslationRefVisibilitySboolSSIt2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI�1PSScalingRefVisibilitySboolSSI;9PSHierarchicalCenterVisibilitySboolSSI6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@5PSDefaultKeyingGroupSintSIntegerSII3PSDefaultKeyingGroupEnumSenumSSI|%PSPickableSboolSSI�*PS
TransformableSboolSSI�(PSCullingModeSenumSSI%-PSShowTrajectoriesSboolSSIU"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY�CullingS
CullingOff *ModelL���:SRightLegModelSLimbNodeNVersionI��Properties70�+PSRotationActiveSboolSSI�(PSInheritTypeSenumSSI+GPS
ScalingMaxSVector3DSVectorSDDDq8PSDefaultAttributeIndexSintSIntegerSI�NPSLcl TranslationSLcl TranslationSSAD`�p�D@�tD�D@�e��$IPSLcl RotationSLcl RotationSSA+D`��K@D�U#@D ,I@wEPSVisibility InheritanceSVisibility InheritanceSSI�,PS	MultiTakeSintSIntegerSI�-PSManipulationModeSenumSSIOUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�/PSSetPreferedAngleSActionSSI�-PSPivotsVisibilitySenumSSI
5PSRotationLimitsVisibilitySboolSSIR:PSLocalTranslationRefVisibilitySboolSSI�2PSRotationRefVisibilitySboolSSI�3PSRotationAxisVisibilitySboolSSI1PSScalingRefVisibilitySboolSSIY9PSHierarchicalCenterVisibilitySboolSSI�6PSGeometricCenterVisibilitySboolSSI�8PSReferentialSizeSdoubleSNumberSD(@&5PSDefaultKeyingGroupSintSIntegerSIg3PSDefaultKeyingGroupEnumSenumSSI�%PSPickableSboolSSI�*PS
TransformableSboolSSI(PSCullingModeSenumSSIC-PSShowTrajectoriesSboolSSIs"PSliwSBoolSSAUI�CPSLimbLength 1SNumberSSAUD�?DDY@�ShadingCY
 CullingS
CullingOff6(+ModelL���:SRightFootModelSLimbNodem VersionI��'Properties70� +PSRotationActiveSboolSSI� (PSInheritTypeSenumSSIJ!GPS
ScalingMaxSVector3DSVectorSDDD�!8PSDefaultAttributeIndexSintSIntegerSI�!NPSLcl TranslationSLcl TranslationSSAD`V}�D@e(E�D |�C"IPSLcl RotationSLcl RotationSSA+D�!)/�D�١��D`l� @�"EPSVisibility InheritanceSVisibility InheritanceSSI�",PS	MultiTakeSintSIntegerSI#-PSManipulationModeSenumSSIn#UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�#/PSSetPreferedAngleSActionSSI�#-PSPivotsVisibilitySenumSSI)$5PSRotationLimitsVisibilitySboolSSIq$:PSLocalTranslationRefVisibilitySboolSSI�$2PSRotationRefVisibilitySboolSSI�$3PSRotationAxisVisibilitySboolSSI1%1PSScalingRefVisibilitySboolSSIx%9PSHierarchicalCenterVisibilitySboolSSI�%6PSGeometricCenterVisibilitySboolSSI&8PSReferentialSizeSdoubleSNumberSD(@E&5PSDefaultKeyingGroupSintSIntegerSI�&3PSDefaultKeyingGroupEnumSenumSSI�&%PSPickableSboolSSI�&*PS
TransformableSboolSSI''(PSCullingModeSenumSSIb'-PSShowTrajectoriesSboolSSI�'"PSliwSBoolSSAUI�'CPSLimbLength 1SNumberSSAUD�?DDY@(ShadingCY)(CullingS
CullingOffU0+ModelL���:SRightToesModelSLimbNode�(VersionI�0Properties70�(+PSRotationActiveSboolSSI)(PSInheritTypeSenumSSIi)GPS
ScalingMaxSVector3DSVectorSDDD�)8PSDefaultAttributeIndexSintSIntegerSI*NPSLcl TranslationSLcl TranslationSSAD�Y��D�TD�D`�-@b*IPSLcl RotationSLcl RotationSSA+D��D�F��D�[Q�?�*EPSVisibility InheritanceSVisibility InheritanceSSI�*,PS	MultiTakeSintSIntegerSI*+-PSManipulationModeSenumSSI�+UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�+/PSSetPreferedAngleSActionSSI,-PSPivotsVisibilitySenumSSIH,5PSRotationLimitsVisibilitySboolSSI�,:PSLocalTranslationRefVisibilitySboolSSI�,2PSRotationRefVisibilitySboolSSI-3PSRotationAxisVisibilitySboolSSIP-1PSScalingRefVisibilitySboolSSI�-9PSHierarchicalCenterVisibilitySboolSSI�-6PSGeometricCenterVisibilitySboolSSI!.8PSReferentialSizeSdoubleSNumberSD(@d.5PSDefaultKeyingGroupSintSIntegerSI�.3PSDefaultKeyingGroupEnumSenumSSI�.%PSPickableSboolSSI/*PS
TransformableSboolSSIF/(PSCullingModeSenumSSI�/-PSShowTrajectoriesSboolSSI�/"PSliwSBoolSSAUI0CPSLimbLength 1SNumberSSAUD�?DDY@%0ShadingCYH0CullingS
CullingOfft8+ModelL��:SLeftUpLegModelSLimbNode�0VersionI�.8Properties70�0+PSRotationActiveSboolSSI31(PSInheritTypeSenumSSI�1GPS
ScalingMaxSVector3DSVectorSDDD�18PSDefaultAttributeIndexSintSIntegerSI*2NPSLcl TranslationSLcl TranslationSSAD`.@D��C�D��2IPSLcl RotationSLcl RotationSSA+D�G�D�Y;�D��z'@�2EPSVisibility InheritanceSVisibility InheritanceSSI3,PS	MultiTakeSintSIntegerSII3-PSManipulationModeSenumSSI�3UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD�3/PSSetPreferedAngleSActionSSI$4-PSPivotsVisibilitySenumSSIg45PSRotationLimitsVisibilitySboolSSI�4:PSLocalTranslationRefVisibilitySboolSSI�42PSRotationRefVisibilitySboolSSI053PSRotationAxisVisibilitySboolSSIo51PSScalingRefVisibilitySboolSSI�59PSHierarchicalCenterVisibilitySboolSSI�56PSGeometricCenterVisibilitySboolSSI@68PSReferentialSizeSdoubleSNumberSD(@�65PSDefaultKeyingGroupSintSIntegerSI�63PSDefaultKeyingGroupEnumSenumSSI�6%PSPickableSboolSSI/7*PS
TransformableSboolSSIe7(PSCullingModeSenumSSI�7-PSShowTrajectoriesSboolSSI�7"PSliwSBoolSSAUI!8CPSLimbLength 1SNumberSSAUD�?DDY@D8ShadingCYg8CullingS
CullingOff�@)ModelL��:SLeftLegModelSLimbNode�8VersionI�K@Properties709+PSRotationActiveSboolSSIP9(PSInheritTypeSenumSSI�9GPS
ScalingMaxSVector3DSVectorSDDD�98PSDefaultAttributeIndexSintSIntegerSIG:NPSLcl TranslationSLcl TranslationSSAD�p@D �tD�D@�e���:IPSLcl RotationSLcl RotationSSA+D ��5@D��Q�?D����:EPSVisibility InheritanceSVisibility InheritanceSSI+;,PS	MultiTakeSintSIntegerSIf;-PSManipulationModeSenumSSI�;UPSScalingPivotUpdateOffsetSVector3DSVectorSDDD</PSSetPreferedAngleSActionSSIA<-PSPivotsVisibilitySenumSSI�<5PSRotationLimitsVisibilitySboolSSI�<:PSLocalTranslationRefVisibilitySboolSSI=2PSRotationRefVisibilitySboolSSIM=3PSRotationAxisVisibilitySboolSSI�=1PSScalingRefVisibilitySboolSSI�=9PSHierarchicalCenterVisibilitySboolSSI>6PSGeometricCenterVisibilitySboolSSI]>8PSReferentialSizeSdoubleSNumberSD(@�>5PSDefaultKeyingGroupSintSIntegerSI�>3PSDefaultKeyingGroupEnumSenumSSI?%PSPickableSboolSSIL?*PS
TransformableSboolSSI�?(PSCullingModeSenumSSI�?-PSShowTrajectoriesSboolSSI�?"PSliwSBoolSSAUI>@CPSLimbLength 1SNumberSSAUD�?DDY@a@ShadingCY�@CullingS
CullingOff�H*ModelL��:SLeftFootModelSLimbNode�@VersionI�iHProperties708A+PSRotationActiveSboolSSInA(PSInheritTypeSenumSSI�AGPS
ScalingMaxSVector3DSVectorSDDD	B8PSDefaultAttributeIndexSintSIntegerSIeBNPSLcl TranslationSLcl TranslationSSAD`V}�?D@e(E�D |��BIPSLcl RotationSLcl RotationSSA+D�.�%�D�ai(@D���	�CEPSVisibility InheritanceSVisibility InheritanceSSIIC,PS	MultiTakeSintSIntegerSI�C-PSManipulationModeSenumSSI�CUPSScalingPivotUpdateOffsetSVector3DSVectorSDDD$D/PSSetPreferedAngleSActionSSI_D-PSPivotsVisibilitySenumSSI�D5PSRotationLimitsVisibilitySboolSSI�D:PSLocalTranslationRefVisibilitySboolSSI*E2PSRotationRefVisibilitySboolSSIkE3PSRotationAxisVisibilitySboolSSI�E1PSScalingRefVisibilitySboolSSI�E9PSHierarchicalCenterVisibilitySboolSSI5F6PSGeometricCenterVisibilitySboolSSI{F8PSReferentialSizeSdoubleSNumberSD(@�F5PSDefaultKeyingGroupSintSIntegerSI�F3PSDefaultKeyingGroupEnumSenumSSI2G%PSPickableSboolSSIjG*PS
TransformableSboolSSI�G(PSCullingModeSenumSSI�G-PSShowTrajectoriesSboolSSIH"PSliwSBoolSSAUI\HCPSLimbLength 1SNumberSSAUD�?DDY@HShadingCY�HCullingS
CullingOff�P*ModelL��:SLeftToesModelSLimbNodeIVersionI��PProperties70VI+PSRotationActiveSboolSSI�I(PSInheritTypeSenumSSI�IGPS
ScalingMaxSVector3DSVectorSDDD'J8PSDefaultAttributeIndexSintSIntegerSI�JNPSLcl TranslationSLcl TranslationSSAD�Y��?D�TD�D��-@�JIPSLcl RotationSLcl RotationSSA+D@�2�D���
@D��-KEPSVisibility InheritanceSVisibility InheritanceSSIgK,PS	MultiTakeSintSIntegerSI�K-PSManipulationModeSenumSSILUPSScalingPivotUpdateOffsetSVector3DSVectorSDDDBL/PSSetPreferedAngleSActionSSI}L-PSPivotsVisibilitySenumSSI�L5PSRotationLimitsVisibilitySboolSSIM:PSLocalTranslationRefVisibilitySboolSSIHM2PSRotationRefVisibilitySboolSSI�M3PSRotationAxisVisibilitySboolSSI�M1PSScalingRefVisibilitySboolSSIN9PSHierarchicalCenterVisibilitySboolSSISN6PSGeometricCenterVisibilitySboolSSI�N8PSReferentialSizeSdoubleSNumberSD(@�N5PSDefaultKeyingGroupSintSIntegerSIO3PSDefaultKeyingGroupEnumSenumSSIPO%PSPickableSboolSSI�O*PS
TransformableSboolSSI�O(PSCullingModeSenumSSI�O-PSShowTrajectoriesSboolSSI)P"PSliwSBoolSSAUIzPCPSLimbLength 1SNumberSSAUD�?DDY@�PShadingCY�PCullingS
CullingOfffRMAnimationStackL��Z:S:_27_a_U1_M_P_RunAvoid_ToRight_Both_Fb_p0_No_0_1AnimStackSYRProperties70�Q0PS
LocalStartSKTimeSTimeSL(�Y�x�Q/PS	LocalStopSKTimeSTimeSL�G��R4PSReferenceStartSKTimeSTimeSL(�Y�xLR3PS
ReferenceStopSKTimeSTimeSL�G��/U[AnimationLayerLX��9SH_27_a_U1_M_P_RunAvoid_ToRight_Both_Fb_p0_No_0_1:BaseAnimationAnimLayerS"UProperties70DSAPSColorSColorRGBSColorSD�������?DD�������?�S5PSBlendModeBypassS	ULongLongSSL�S,PS	MultiTakeSintSIntegerSI�S+PSmLayerIDSintSIntegerSI1T)PSMutedForSoloSboolSSIiT*PS
MutedByParentSboolSSI�T+PSLockedByParentSboolSSI�T5PSParentCollapseVisibilitySboolSSIU"PSEmptySboolSSI�WXAnimationLayerL���9SE_27_a_U1_M_P_RunAvoid_ToRight_Both_Fb_p0_No_0_1:AnimLayer1AnimLayerS�WProperties70
VAPSColorSColorRGBSColorSD�������?DD�������?MV5PSBlendModeBypassS	ULongLongSSL�V,PS	MultiTakeSintSIntegerSI�V+PSmLayerIDSintSIntegerSI�V)PSMutedForSoloSboolSSI/W*PS
MutedByParentSboolSSIhW+PSLockedByParentSboolSSI�W5PSParentCollapseVisibilitySboolSSI�W"PSEmptySboolSSI4Y#AnimationCurveNodeL���:STAnimCurveNodeS'YProperties70{XPSdSCompoundSS�X'PSd|XSNumberSSAD�X'PSd|YSNumberSSADY'PSd|ZSNumberSSADsZ#AnimationCurveNodeL�'�:SRAnimCurveNodeSfZProperties70�YPSdSCompoundSS�Y'PSd|XSNumberSSAD@�+@$Z'PSd|YSNumberSSAD ��YZ'PSd|ZSNumberSSAD��!��[#AnimationCurveNodeL�
�:SRAnimCurveNodeS�[Properties70�ZPSdSCompoundSS.['PSd|XSNumberSSAD��%@c['PSd|YSNumberSSAD�0@�['PSd|ZSNumberSSAD��?�\#AnimationCurveNodeL`K�:SRAnimCurveNodeS�\Properties708\PSdSCompoundSSm\'PSd|XSNumberSSAD�T4,@�\'PSd|YSNumberSSAD�!�@�\'PSd|ZSNumberSSAD���0^#AnimationCurveNodeLz�:SRAnimCurveNodeS#^Properties70w]PSdSCompoundSS�]'PSd|XSNumberSSAD����]'PSd|YSNumberSSAD 7K�^'PSd|ZSNumberSSAD`�'@o_#AnimationCurveNodeL���:SRAnimCurveNodeSb_Properties70�^PSdSCompoundSS�^'PSd|XSNumberSSADM3� _'PSd|YSNumberSSAD���?U_'PSd|ZSNumberSSAD�o�?�`#AnimationCurveNodeL�ȅ:SRAnimCurveNodeS�`Properties70�_PSdSCompoundSS*`'PSd|XSNumberSSAD����_`'PSd|YSNumberSSAD���@�`'PSd|ZSNumberSSAD`t]��a#AnimationCurveNodeL(k�:SRAnimCurveNodeS�aProperties704aPSdSCompoundSSia'PSd|XSNumberSSAD&C1@�a'PSd|YSNumberSSAD@��?�a'PSd|ZSNumberSSAD�1P@,c#AnimationCurveNodeL��:SRAnimCurveNodeScProperties70sbPSdSCompoundSS�b'PSd|XSNumberSSAD�L7@�b'PSd|YSNumberSSAD@�KP@c'PSd|ZSNumberSSAD�ω�?kd#AnimationCurveNodeLh��:SRAnimCurveNodeS^dProperties70�cPSdSCompoundSS�c'PSd|XSNumberSSAD���!�d'PSd|YSNumberSSAD����Qd'PSd|ZSNumberSSAD &	��e#AnimationCurveNodeL؇�:SRAnimCurveNodeS�eProperties70�dPSdSCompoundSS&e'PSd|XSNumberSSAD�� �[e'PSd|YSNumberSSAD cG@�e'PSd|ZSNumberSSAD��Z��f#AnimationCurveNodeL��:SRAnimCurveNodeS�fProperties700fPSdSCompoundSSef'PSd|XSNumberSSAD��g!��f'PSd|YSNumberSSAD`���f'PSd|ZSNumberSSAD��G*@(h#AnimationCurveNodeL��:SRAnimCurveNodeShProperties70ogPSdSCompoundSS�g'PSd|XSNumberSSAD@[(@�g'PSd|YSNumberSSAD�e@h'PSd|ZSNumberSSAD I�5@gi#AnimationCurveNodeL�c�:SRAnimCurveNodeSZiProperties70�hPSdSCompoundSS�h'PSd|XSNumberSSAD��_ۿi'PSd|YSNumberSSAD��6
@Mi'PSd|ZSNumberSSAD + @�j#AnimationCurveNodeL��:SRAnimCurveNodeS�jProperties70�iPSdSCompoundSS"j'PSd|XSNumberSSAD��*�Wj'PSd|YSNumberSSAD �L��j'PSd|ZSNumberSSADթ0@�k#AnimationCurveNodeLP��:SRAnimCurveNodeS�kProperties70,kPSdSCompoundSSak'PSd|XSNumberSSAD���@�k'PSd|YSNumberSSAD�����k'PSd|ZSNumberSSAD@�/>@$m#AnimationCurveNodeL�ۅ:SRAnimCurveNodeSmProperties70klPSdSCompoundSS�l'PSd|XSNumberSSAD��$@�l'PSd|YSNumberSSAD��c��
m'PSd|ZSNumberSSAD`� @cn#AnimationCurveNodeL8��:SRAnimCurveNodeSVnProperties70�mPSdSCompoundSS�m'PSd|XSNumberSSAD���ҿn'PSd|YSNumberSSAD����In'PSd|ZSNumberSSAD`�37@�o#AnimationCurveNodeLۅ:SRAnimCurveNodeS�oProperties70�nPSdSCompoundSSo'PSd|XSNumberSSAD {⺿So'PSd|YSNumberSSAD �+翈o'PSd|ZSNumberSSAD@�T?@�p#AnimationCurveNodeL�;�:SRAnimCurveNodeS�pProperties70(pPSdSCompoundSS]p'PSd|XSNumberSSAD`�,@�p'PSd|YSNumberSSAD�Ep��p'PSd|ZSNumberSSAD�ۮ@ r#AnimationCurveNodeL���:SRAnimCurveNodeSrProperties70gqPSdSCompoundSS�q'PSd|XSNumberSSAD�����q'PSd|YSNumberSSAD��u�r'PSd|ZSNumberSSAD�/�7@_s#AnimationCurveNodeL I�:SRAnimCurveNodeSRsProperties70�rPSdSCompoundSS�r'PSd|XSNumberSSAD@��?s'PSd|YSNumberSSAD���Es'PSd|ZSNumberSSAD���B@�t#AnimationCurveNodeL [�:SRAnimCurveNodeS�tProperties70�sPSdSCompoundSSt'PSd|XSNumberSSAD��!�Ot'PSd|YSNumberSSAD�I�?�t'PSd|ZSNumberSSAD��_@�u#AnimationCurveNodeL���:SRAnimCurveNodeS�uProperties70$uPSdSCompoundSSYu'PSd|XSNumberSSAD ��@�u'PSd|YSNumberSSAD`��*��u'PSd|ZSNumberSSAD��x�w#AnimationCurveNodeL��:SRAnimCurveNodeSwProperties70cvPSdSCompoundSS�v'PSd|XSNumberSSAD���	@�v'PSd|YSNumberSSAD`�/�w'PSd|ZSNumberSSAD���[x#AnimationCurveNodeL�m�:SRAnimCurveNodeSNxProperties70�wPSdSCompoundSS�w'PSd|XSNumberSSAD`��@x'PSd|YSNumberSSAD����Ax'PSd|ZSNumberSSAD �^
��y#AnimationCurveNodeL�z�:SRAnimCurveNodeS�yProperties70�xPSdSCompoundSSy'PSd|XSNumberSSAD�M�B@Ky'PSd|YSNumberSSAD@�{=@�y'PSd|ZSNumberSSAD�z�L��z#AnimationCurveNodeL�e�:SRAnimCurveNodeS�zProperties70 zPSdSCompoundSSUz'PSd|XSNumberSSAD@+R2@�z'PSd|YSNumberSSAD�\GQ��z'PSd|ZSNumberSSAD��,(@|#AnimationCurveNodeL�*�:SRAnimCurveNodeS|Properties70_{PSdSCompoundSS�{'PSd|XSNumberSSAD@�)��{'PSd|YSNumberSSAD�O�ֿ�{'PSd|ZSNumberSSAD �1@W}#AnimationCurveNodeL/�9SRAnimCurveNodeSJ}Properties70�|PSdSCompoundSS�|'PSd|XSNumberSSAD l�}'PSd|YSNumberSSAD`�b�=}'PSd|ZSNumberSSAD`�Q���~#AnimationCurveNodeL�'�9SRAnimCurveNodeS�~Properties70�}PSdSCompoundSS~'PSd|XSNumberSSAD@���G~'PSd|YSNumberSSAD ;�@|~'PSd|ZSNumberSSAD��o.��#AnimationCurveNodeL�!�9SRAnimCurveNodeS�Properties70PSdSCompoundSSQ'PSd|XSNumberSSAD�^�'@�'PSd|YSNumberSSAD@9�	��'PSd|ZSNumberSSAD@(=3��#AnimationCurveNodeLX�9SRAnimCurveNodeS�Properties70[�PSdSCompoundSS��'PSd|XSNumberSSAD ��?ŀ'PSd|YSNumberSSAD`H�	���'PSd|ZSNumberSSAD�h2 �S�#AnimationCurveNodeL�9SRAnimCurveNodeSF�Properties70��PSdSCompoundSSρ'PSd|XSNumberSSAD���'��'PSd|YSNumberSSAD �i@9�'PSd|ZSNumberSSAD�`2���#AnimationCurveNodeL�
�9SRAnimCurveNodeS��Properties70قPSdSCompoundSS�'PSd|XSNumberSSAD@C�'PSd|YSNumberSSAD���
@x�'PSd|ZSNumberSSAD �
=�ф#AnimationCurveNodeL��9SRAnimCurveNodeSĄProperties70�PSdSCompoundSSM�'PSd|XSNumberSSAD ��@��'PSd|YSNumberSSAD�k����'PSd|ZSNumberSSAD�!��#AnimationCurveNodeLX�9SRAnimCurveNodeS�Properties70W�PSdSCompoundSS��'PSd|XSNumberSSAD�x����'PSd|YSNumberSSAD@�O�?��'PSd|ZSNumberSSAD�*7�O�#AnimationCurveNodeLx.�9SRAnimCurveNodeSB�Properties70��PSdSCompoundSSˆ'PSd|XSNumberSSAD�u.���'PSd|YSNumberSSAD@R��?5�'PSd|ZSNumberSSAD��K?���#AnimationCurveNodeL�)�9SRAnimCurveNodeS��Properties70ՇPSdSCompoundSS
�'PSd|XSNumberSSAD�';@?�'PSd|YSNumberSSAD��5@t�'PSd|ZSNumberSSAD���͉#AnimationCurveNodeL�$�9SRAnimCurveNodeS��Properties70�PSdSCompoundSSI�'PSd|XSNumberSSADe�&�~�'PSd|YSNumberSSAD��W�?��'PSd|ZSNumberSSAD`a�5��#AnimationCurveNodeL  �9SRAnimCurveNodeS��Properties70S�PSdSCompoundSS��'PSd|XSNumberSSAD�&2-���'PSd|YSNumberSSAD��5�?�'PSd|ZSNumberSSAD@�A�K�#AnimationCurveNodeL��9SRAnimCurveNodeS>�Properties70��PSdSCompoundSSNj'PSd|XSNumberSSAD��!���'PSd|YSNumberSSAD�I��1�'PSd|ZSNumberSSAD��_���#AnimationCurveNodeLH�9SRAnimCurveNodeS}�Properties70ьPSdSCompoundSS�'PSd|XSNumberSSAD���@;�'PSd|YSNumberSSAD���*@p�'PSd|ZSNumberSSAD��x@Ɏ#AnimationCurveNodeL��9SRAnimCurveNodeS��Properties70�PSdSCompoundSSE�'PSd|XSNumberSSAD���	@z�'PSd|YSNumberSSAD�/@��'PSd|ZSNumberSSAD`�@�#AnimationCurveNodeLp�9SRAnimCurveNodeS��Properties70O�PSdSCompoundSS��'PSd|XSNumberSSAD`�F@��'PSd|YSNumberSSAD�o��'PSd|ZSNumberSSAD@��!@G�#AnimationCurveNodeL�9SRAnimCurveNodeS:�Properties70��PSdSCompoundSSÐ'PSd|XSNumberSSAD`��K@��'PSd|YSNumberSSAD�U#@-�'PSd|ZSNumberSSAD ,I@��#AnimationCurveNodeL��9SRAnimCurveNodeSy�Properties70͑PSdSCompoundSS�'PSd|XSNumberSSAD�!)/�7�'PSd|YSNumberSSAD�١��l�'PSd|ZSNumberSSAD`l� @œ#AnimationCurveNodeL@3�9SRAnimCurveNodeS��Properties70�PSdSCompoundSSA�'PSd|XSNumberSSAD��v�'PSd|YSNumberSSAD�F����'PSd|ZSNumberSSAD�[Q�?�#AnimationCurveNodeL�5�9SRAnimCurveNodeS��Properties70K�PSdSCompoundSS��'PSd|XSNumberSSAD�G���'PSd|YSNumberSSAD�Y;��'PSd|ZSNumberSSAD��z'@C�#AnimationCurveNodeL�8�9SRAnimCurveNodeS6�Properties70��PSdSCompoundSS��'PSd|XSNumberSSAD ��5@��'PSd|YSNumberSSAD��Q�?)�'PSd|ZSNumberSSAD�����#AnimationCurveNodeLh;�9SRAnimCurveNodeSu�Properties70ɖPSdSCompoundSS��'PSd|XSNumberSSAD�.�%�3�'PSd|YSNumberSSAD�ai(@h�'PSd|ZSNumberSSAD���	���#AnimationCurveNodeL8>�9SRAnimCurveNodeS��Properties70�PSdSCompoundSS=�'PSd|XSNumberSSAD@�2�r�'PSd|YSNumberSSAD���
@��'PSd|ZSNumberSSAD��)�AnimationCurveLH��-SAnimCurveS�	DefaultD/�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\HR
�֖���~��������������.��o��y���n֥�Q������{@��K&���Kz�r�f���U�:�K�/�Q��c�3}v�[Ń��u����|Ɲ���������6��G’1����%¡�/��=�UM�9_�߶s�xW����‰�‹�˜ܘ�iĝ�;/�����Zޫ��“^���3��~9�Ž��������P�֍ƒ��t�A�o»�^�>N�Y�=�*�)����������
���z���Uv�UF���Tp��`J��s�4@���@u)0A1RhA�j�A�ЕA�c�AX��A���A\	�Aq��A���A���A'��AQ�A��KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountiW��AnimationCurveLX�-SAnimCurveS�	DefaultD��KeyVerI�p��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\O�Bг�B�Bd��Br��BlܯB�B���B��B��B�ΪB���BY��B@��B��B�V�B��B��B%Y�B��B�Y�B>��B�ȜBv{�Bc�B�`�Bӻ�Bc��B��BP	�Bk�B�q�Bf^�B
�Br�B�i�B1S�B��B��B|I�Bs�B�ߙB��BТ�BB!~�Ba
�B��B�
�Bz׏B"�Bt��B���B��Bx��BaW�Bk��Bmj�B���B�\�B��B��B�.�B��B�3�B訳Bͼ�B��B���B0Z�B���BD&�B�
�B��B�f�B7�BF��B�s�B)�B�̲B��B���Bt��B�N�B�BZ|�B���B�KeyAttrFlagsiW�KeyAttrDataFloatf

��KeyAttrRefCountiW��AnimationCurveL���-SAnimCurveS�	DefaultD��KeyVerI�ئ�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��[�i
KeyValueFloatfW\f+��
�BL�Ϡ��
��	ı*�����I�ä[��5���p��àH���f��:-�����}���Z��<���ԯ��o���IB���b�ÒFp��_��O�TAÌ�3ã
'�_���L�J�å\���X��A�����¸_��̒�&�z�6�O���'�g+���:��k��)�@���A�;�A,,B� ]B੆B�B�w�B��B9	�Bf�C�C�$C�2C��?C��MC��[C�jC��xC�h�C�~�CUA�C�i�Cϋ�C��C�	�C@�Ct̿C}��C˼�C+��C��CM��C���C�n�C�%�C�D��DrmD :De�DċD�D��KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountiWa�AnimationCurveL�q�-SAnimCurveSO�	DefaultD@�+@g�KeyVerI�@��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��íi
KeyValueFloatfW\R~XAF�IA�>A�-AjZ#A�!A�eA���@�*�@9a�@͔_@[
;@�T@�<�?�?}��������.���1�5�+����8������]*@�H�`���2d��	��@Z���C��0y��d|�\��H������t'b�N����€qús�������Æ���4�m8 �t�È��µÑ�1��:û��neêI�L�r�������1�wú���
â���jËNÞJ�|h�!��ˁ��z�� ��U#��B&�S(���(�e�)��+ïR-Ê�-�4�-��.�/�̥0ý42�)x2ô�0��KeyAttrFlagsi'�KeyAttrDataFloatf

T�KeyAttrRefCountiWɳAnimationCurveL�B�-SAnimCurveS��	DefaultD ��ϮKeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��+�i
KeyValueFloatfW\�0��8�?QB�@���@���@ܘ�@��&@og�?�5��tY�lx��K=������G)��u
W�-@>�d(@�Tr@�KA@��A�!�A��BO�BB'5lB�œB�B���BjQ�B�mC��C��C��*C#�:C�KKC,ZC��eC�pC xC5wC��oC�ccC��VC�gNC�^IC4�CC
�<C��7C�"5C"3C�v1C�N1C;1C� .C�'C
C�bCyKCT�C��C��Ca�C�BC΁Cg�C�C̩C,C��C��C��C�!C��"C[�$C<(Cz+C|�,C!�+Cy�+C,C��*C}�)C�B+C,�,C,Cj+C�Z*C|t)CU�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiW1�AnimationCurveLX�-SAnimCurveS�	DefaultD��!�7�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\a����Q>�`@��@؆@�Tn@�̕@��@��I@�p�>����0		�޾�;v=��/��|&��c+����F���l@ˆ�@�
AA�.A�HA��cA��#�`�����@�>��Q��������@<k@�0A��A�=�AL�@B��Bը�B
�C2C
C�C��C�!C��C�C��C��Cm�C�C."C2�%C2�&C> *C��0C�:C�`@C*MBC!�@C�=C�:C�P=Cf�AC�;DC�AC��=C0=C�>C�i=C�<Cĝ:C�o8CX�6C#�3C��4CK�9C��=Co<Cx;Cj�;C[c<C�h=C��>Cߊ?C�@C<m?C��KeyAttrFlagsi��KeyAttrDataFloatf

$�KeyAttrRefCountiW��AnimationCurveL���-SAnimCurveS��	DefaultD��%@��KeyVerI�x��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\`L-A;�^A
�A �A!�A�n�A�]�A�lA��XA lAf�A�٩AU�A�g�AC�{Aoa<A1I"A�E0A:�tAi�Aݾ�A[��A ��A�2�A�w�Aw7lA���A�,�A�M�A;��AдAW�A�׀Au!^A��>A*AP4*A��DA��\A���A@��A���AǨ�A�X�A�_�AJyB�
BB��B�B�!B�h%B�''BK+B��*Br�(BK,BQ-B50Bz:B��?B�V8B�\$B:
BX��AWI�A��A��A��A���A��A.��A�!GA=�A�@���@��&A��uA}��A���A|vmA^fAA�Z
AT��@���@��	@��ӿ%�KeyAttrFlagsi_�KeyAttrDataFloatf

��KeyAttrRefCountiW�AnimationCurveL�@�-SAnimCurveS�	DefaultD�0@�KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��c�i
KeyValueFloatfW\�ɘ@!�@j��>	��-ȩ�G����������E��h���B��[}��he￸�0?�J2@(�i@cjc@� !@�c>;�}��οj�B�sg��}B�����9�e�� �EU@	
�@r�"A�CA�'BAѷ#A^��@ۉ�@u��?gU��
6��3���&'��8���6�b-���>�9�\��Md���Q�\�6�n��B���/)�s2v@\2�@�Ţ@���?H�ľ��-��V?|4���k.���<��O�u����ᅾ9�?�L�?��v@ȳ�@oA7�&A/n)A�s.A�?6A>�*A(`�@�y�@BT@�M�?{b]��8(���s�K�����-g������~���KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiWi�AnimationCurveL���-SAnimCurveSW�	DefaultD��?o�KeyVerI�H��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\0��<\KϿ��J�D���e�Wډ�������%����8���P���U@�o@�H_@�_�@1F�@��AԙAN|@�+��rJ��D��x�ե����u��i�������>՗�@-�A
+�@1B�@���@�XAC�A���@uu]@&�9��|��*�����l��p�@y�@Ǥ�@
�8@8�g@�%�@'Ah�AHB�@<j��4��3�5�l�����������\���[�����b@3�@�i%@S��e̗��J��Xǿ
ф���oD��:������������HJͿ��6��*�irv��|J�m�)�}�2�s�/���-���.��;5�S;�7�%���KeyAttrFlagsi/�KeyAttrDataFloatf

\�KeyAttrRefCountiW��AnimationCurveL(X�-SAnimCurveS��	DefaultD�T4,@��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��3�i
KeyValueFloatfW\��aA!�GAAn��@��@��@Y��@֝�@Su	A�
A6��@)B�@�L�@��@3-�@j�&A^5A�8#AH�@�ƪ@�0�@���@��@�2A��8A�?Aq�A5��@e��@]ނ@�@�1�?�I?�?��R�6��zB?T�R?O��>�]8���#�[��d�0?�W~?������?f.4@q6�?���?wP
@���?��?.v�@�fA0#A7�$A
�A���@=S�@}��@}�@K�@:�S@R�@���@[�A+��@���@ I�@R�A1�AN�An:A+�_As��A��A�U:Ab?Aܨ�@o
AjA��A��A-A9�@Am*IA�u?A-�BA]�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiW9�AnimationCurveL��-SAnimCurveS'�	DefaultD�!�@?�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\g@���?���1�����U���
������5��r9��i���B�?��羽'�?~Mj@���@�3�@X�~@H��?Ef��u�;��>���l���������
��l���=#�@@A�^%A��3A��-Af3Ar��@V��@�*�?�"0�k�����#����"^�É��+�J@�/�9�Z������	���Ѷh�]���@@���@.mj@��?
�;v������
¿��7����ᮿŽ������	�?�+
@x��@~!�@�X�@�P�@�3At�A2�A���@[b@z��?������\Uy�[���͕�����B���]��������KeyAttrFlagsi��KeyAttrDataFloatf

,�KeyAttrRefCountiW��AnimationCurveLX��-SAnimCurveS��	DefaultD�����KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\E�8��I"�/�
�C[��Ϳ}Ѿ��u?7��?��Q?I�6?
�<|�Ϳ��B�t�i�k�p�nIv��ޝ�����*��C�O��=�+?g�T@ۜ�@�N�@q��@hIx@�߬��������~���I�'��Z��t}�y�S��bʿK�y��Ğ����>\��@^��@�ޅ@��@{�
AȒ*A��A���@�`m@��@?�|�褫��������������Ȋ���I���/l���H����
���Q��,7�sǸ��pV��٤�����K��_N�>گ>������#�s+�a�d�
��W޿�Ŏ?΀@���?Ŷ@\y@I�q@�M@�X@e4�?P�@kB@-�KeyAttrFlagsig�KeyAttrDataFloatf

��KeyAttrRefCountiW	�AnimationCurveL���-SAnimCurveS��	DefaultD����KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��k�i
KeyValueFloatfW\�H���|�d%��͠������۹���i@�^�@lԙ@Ňf@�>�kn�����������^@��
A��6A��A}է@/�e@���@`׼@��	A&rADL�@؞�?L���aO��T�?�,�@�^Az��@���@�B�@�{@6'@ q�>�nο؆�����Py��[�8�(l�������3Y��B�^�Y�H�������dӀ��Ed�� Z���O�d���i���E�O�}��
p�1�O�R,.��U�S����˜�x����X���������������l�T�VN�����@B�A��=@#�/�!�(������aI��E���>���?v�=@e	~@�@@��KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiWq�AnimationCurveLS�-SAnimCurveS_�	DefaultD 7K�w�KeyVerI�P��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\�Y�S�㿍ၿ�$?�n @恑@b��@���@��@���@���@,��@Wt�@�@s*[��Il������K���1_��hl�8���eT��!������1jq����Af��@v��@/Ů@a�A�m=A��pA��A'�A|Q�ALJ�AӧAE��A�j�A�}�A~�lA��3A�A�>A�8!A$�A�@t��@���@���@�^�?OH2�Dy���D�˾�����������	�8��&^�Y����H��ў��F��~0��L�����%�e���������������m�����*ݿ�ȿ�O,�(�>{?�U@�T@�
[@��>@��#@
��?��KeyAttrFlagsi7�KeyAttrDataFloatf

d�KeyAttrRefCountiW��AnimationCurveL �-SAnimCurveS��	DefaultD`�'@��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��;�i
KeyValueFloatfW\��8A�P>A�M4A��A�t�@���?%�>��i�SP࿐�z�J����O��s���t�f@�&	A}GA+�bAK�MA�8A�HAP�aA�\A>�=AF�)ASi3A�jAx_O��s���|��5�X�P��C��?C�B���Y@��L'�����KH������
�-���S{�g)G��7�p��'���k���2YS���@}�A���@izAA�]AŋA�xA8�-A���@�?�?m�U6��2�� e��Y����&�s'��������xA���VY@'�@��@���@�O@���?�(�>�p���(�GL?�뢾Tf�h0,��!K�\�Q�J ��\3��56�lb�>e�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiWA�AnimationCurveLx�-SAnimCurveS/�	DefaultDM3�G�KeyVerI� ��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\h�����6�������ħ��E������[�X��a��9U�����h����R������/����� �X�	���������4����17�lb��������������^�e	m�����RU������[���B��������-���d��e�>��?��?�u�=D8�i`��搣�2>�������!d�~ҿ�GO�x����,��3_�+l)���D��H�|/�mh"��b.�#�0�Q�����@���/������Uef���}�����uٿ#���1K=�	�z�ũ���>W�ÔԿǗ�������J0��1h��Ɓ��.{�V�k���P���KeyAttrFlagsi�KeyAttrDataFloatf

4�KeyAttrRefCountiW��AnimationCurveL��-SAnimCurveS��	DefaultD���?��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\�hE>{q?2�?0��?��=@?Ǎ@��@�"�@ϝ�@�ߵ@�/�@��@=��@<�C@��?�?��_>���>�w?++?Mv�O��T�����;�??;\V@Uo�@"�@�����h�V��?�ٹ@�H&A�UA��kA���A�
�A���A���A��A��Aĉ�A�oA�	RAjSKADMAyn8A
) A�i A��"A]�A ��@�F�@�F�@��@��f@_@��>4�S����������27�XH�&9~�Y����{���|������c���2��3���ɖ����E;����^���g��9�&��Ҿž[>\��?0��?-K�?���?�ج?:yU?5�KeyAttrFlagsio�KeyAttrDataFloatf

��KeyAttrRefCountiW�AnimationCurveL�a�-SAnimCurveS��	DefaultD�o�?�KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��s�i
KeyValueFloatfW\h?�Ь?_��?�m@�M�@���@sB�@��@�e�@b��@��@u��@��@��@a�$��� ����n��x-�Q�>�h>d�?��?����#VR�P6@�	@��?R%�DQ���?`�"@ύS@�բ@��AK3A�`A踂A	��Ap�xA.hdA��OAabVA5HmA�_�A��As�A�mA��UA.3GA{�#Al�@��?&����տA�L����>���?H�@�@-{@��&@O@so@@��A@�ю?�KU�����Y�rt��a�b�?�Vw2�i�%��?�>��G�ƿU�?��r���
��C�6��Ԋ�L|˿H�߿��ƿ��KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountiWy�AnimationCurveL�T�-SAnimCurveSg�	DefaultD�����KeyVerI�X��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\��w�h̑��Q��Tއ��Fn�C�c�l�K��W1�/,��Z.�@�A�.�X�8�\��7��ڿ��+��I��$�;,>��\���S�Fi>��L=��-d��|�PIh�e������_��J��v���p��zm���K~��n6�D���K+� �w?0@Y�@@�+7@dZ�?�^�?'��?d�@?
\?LZ�>���������� <G���e�,��*�S�#����R������_�����8��k��@����f�����5��t�����8��������������xJ�� +��`8��99��l�������+�������|�]�]�o�G������M����[ؿ�KeyAttrFlagsi?�KeyAttrDataFloatf

l�KeyAttrRefCountiW�AnimationCurveLX��-SAnimCurveS��	DefaultD���@��KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��Ci
KeyValueFloatfW\�w@��@I��@�̟@�W�@2ҹ@(4�@Ƽ�@a�@r�@v~@��@a�@-��@�@A@��?% �?�[@n~�@E��@^�@턍@�h�@���@=7�@^ğ@!R�@RyA��1A��AA��QA��GAE�4A!�"A�lAƪ�@��)@"�=������w\|�?����t�-�>X;A?
���|l�vO�=��?cغ>ε�?a�%@eX@!��@��@�AAȫAq�A��A�[AB�A3�A��A�h�@���@��@�d�@��@s��@��@���@.;�@yĪ@�U�@�[�@�p�@���@���@Bʹ@�j�@Z��@r��@���@'�}@�AA@/9 @��@mKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountiWI
AnimationCurveL��-SAnimCurveS7	DefaultD`t]�OKeyVerI�(�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���	i
KeyValueFloatfW\�������������?X�ׄ>���?4@պ�?u��&S��������b�=wI�?4�?|�
@P��?���>��K����g��>·�>���=�.��l�s��r:�^�?bKq@���@���@�,�@�z�@4z�@x�@�ߐ@��Y@��@�b!@�$@Ў/@Lrv@`�@��@��@NwN>n��������qW?U1@&|I@��?6��=+�9m��:���g{
�e�(�!n<�ģ9�k������F���A
��-��W������U��~��$�v��;�6)��C��\��5��������˂����-�����J��w����
?猜?G�?t�$?�	KeyAttrFlagsi
KeyAttrDataFloatf

<
KeyAttrRefCountiW�AnimationCurveLx4�-SAnimCurveS�
	DefaultD&C1@�
KeyVerI��
�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��i
KeyValueFloatfW\0�Ac�wA���@����a%��:@f��@ި�@��A��A/0A�CA��A&��A��A�B�OB|�Bڡ�A�A���A���A���AHp�A���Ag��A���A�o�A�`~A܈�A��A���A�dBC�
B1�B�B�A�A�9�A���A�@"���I@A��A;��A��A�r�A�(AL�&@�࿎X��Ks�������|���c�������C��O��f@��=A���A���A�Z�A��A�۸A}�A�@A��
@vH���r%��DI��1�d������>`��@�S>A�bA��-AA��AAn�A�A,L�A�;�A�I�Af��AȿA�d�A=KeyAttrFlagsiwKeyAttrDataFloatf

�KeyAttrRefCountiWAnimationCurveL��-SAnimCurveS	DefaultD@��?KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��{i
KeyValueFloatfW\:0?f�=>�r��=�=��+��$&���B�m
º���8�������>�?���@B�)@%C��]�����!o���Q������J�[6�%���#=���K�	¢���zW��TV��mm��+��@'�����.���~����a���|��"b�����������H��
I��� ��T,��'���ؕ��oe�������Ho��(w�HW�@�IRA&�ARB�A���A��A)o<A�Ŏ@<���}�B:@�(Fv��T���=��	�V�w3��K�\�oA�>�̰���O��������"�B�?�<2k���Z�������{��D��m-�����n����Q���¥KeyAttrFlagsi�KeyAttrDataFloatf

KeyAttrRefCountiW�AnimationCurveL�T�-SAnimCurveSo	DefaultD�1P@�KeyVerI�`�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\~��B~q�B��B��yB�beB�5NB��9B��4B�Q>B��KB�9TB�O]BaB��TB#8BCs B�B��&B�\7B�iKBA�[B��`B8
bB�$hBQ~B�
�B���B�*bB�QB�kKB[2NB�[B��jB�vB�zB.yBh.xB��sBw�iB��iB[�uB��B�XxB��nB�_kB0�mB%�nB�J]B�:B�Bu��A���A���A��
B�)B�cEB
�_B�qB�iyB+}BtҀBQ˃B	��BC؄B��B�vB�5eB�7TB��FBB&7Bt�+BSe)B_�-B�_9Be�JB�|ZBe�fB^oB��rB�nB6+hB/�aBG7ZB�ePBiGB��@B��DB
KeyAttrFlagsiGKeyAttrDataFloatf

tKeyAttrRefCountiW�AnimationCurveL�o�-SAnimCurveS�	DefaultD�L7@�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��Ki
KeyValueFloatfW\�`�A��B��<B��{BK�B��B��|B��YBp�OB�FNBzr8B��B���A���B�ƗB_�B2�Br��BQNC��YC�vaC��mC�1mC��iC�-fC
�eC�kCk�rC��uC��fC��HC�8(C^`C�7CB�'C��8C^yZC��hC�|lC�ysC��C��~C�tC�vC��vC�f^CLA2C0��C�	eC�^C�SC�xFC�[GC�*C��KC��;C�=3C�G;C��LC��NCl&LC��IC�IC��DCDC�DCl3BC��KC�z?C�CC qGCN�LCƩQCڥXC��iC�C�0GC�ICشHC��LC�OCoFQC�QC4�TC)VCtVC��TCuKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountiWQ%AnimationCurveLn�-SAnimCurveS? 	DefaultD@�KP@W KeyVerI�0#�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���$i
KeyValueFloatfW\�^�B��B(+�A3�@]��@�kAǀA<\�AO|�A��BZiB^�KB{#�B��B1��B���B(��BW,�B���B�iC��C`6 C}�CuC��B�D�B���Bz�B���B���B���B�.�B/��B���B|1�B���B0��BZ��B�7CA{"Ct�-C��!C�Cq�C-��BE��B�B�b�B�סB�n�B#R�B���B�j�B��B���Bm�C6(C�C�kC
6C�-CKNC��C���B��B���B![�BºBE?�Bg��B��BX��B�Bm��B�[�B�q�B��B�WĈCM�
C��C5�	Cw\C��C�CȎCj�C�$KeyAttrFlagsi%KeyAttrDataFloatf

D%KeyAttrRefCountiW�*AnimationCurveL�	�-SAnimCurveS�%	DefaultD�ω�?�%KeyVerI��(�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��*i
KeyValueFloatfW\~N$?AIA��0A��HAB�QA�^A*�JA��%A
uA���@"-�@:V@r�M��B�=	BHD�A�J"B���B��,Cm�;C�x@C��AC�JBCVA@CP�:C��4C��1C/k2C�-C��C+MC��BK�B��B��B��CΝ)Cnm:C�\@C��?C��@C{�EC�}FC@C.l5CD�)C�CUlC��IC4@C�U4C8U+C�)C�wC��<CY�7CҮ8C��;Cd�>CySAC	�BCбBCh�@CR.=C�L9Cu�5C��3C)+:CU,C0CWk3C�7C��<CO�CC�_TC�CC��2C�V:Cn=C[�>C/�?CN@CJ@C)A?C�>C@v<CG';CE*KeyAttrFlagsi*KeyAttrDataFloatf

�*KeyAttrRefCountiW!0AnimationCurveLX��-SAnimCurveS+	DefaultD���!�'+KeyVerI�.�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���/i
KeyValueFloatfW\��S��Z.��F�����'��o��Gv��}����4��8�l����7�#���+�KL2�6k&�{�"�>)�Ɨ�����R���A�#f
�@8Y���������M���G�Z���@��8��,�'7�Ϳ/���"��9��=7��
�I�A��`<�f�-������L��<9
���H��vn��q�l�k��Hs�>�u�pd�\ON�I�A��-'��#��D,������;#���!��x!�'o&���/� H:��MH��P��7X�cX�J�W��=R��#H��r7�#�$���T*����������������DO��+�w�`b=�������<� ��/KeyAttrFlagsi�/KeyAttrDataFloatf

0KeyAttrRefCountiW�5AnimationCurveL([�-SAnimCurveSw0	DefaultD����0KeyVerI�h3�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���4i
KeyValueFloatfW\
휿��a����������c��٧��9��!����.������/1�3CJ�����y��5k������Z���V�����.��)��9*��\�'�*i��
��������Z�[,�\{:��:0��I+�����K��&�26��������ŝ�T���հ�������m.�޺�����������m��������L]�;���l���D��u���E��\��.���.^����f��K׿�$����B�,����&ݿ���`7�UF�fs�2��*���m��H����Ə�����3(���9U�~�ܿ�ȝ�<F7�\��>*�?ޔ?���?>��?C@5	@}�@5KeyAttrFlagsiO5KeyAttrDataFloatf

|5KeyAttrRefCountiW�:AnimationCurveL8��-SAnimCurveS�5	DefaultD &	��5KeyVerI��8�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��S:i
KeyValueFloatfW\�0I�I����<L@��%A�o�A���Ad��A�7�Am��A�QA)Z�>\ſ}�������@��;߱��8�ȭ%>���>>྾\�@��AP��A
�B�B��B��A��B(3�At��A�c�A;�A�DyAx1A7F'AfAw�q@�t�?�@!�A�5A�m�A���A&�A(�RAz�6>;�)��"m�z%��r?������b������������8�����̋�?�
���_Ͽ�Q����M*��d��U���6?��u�I�x�H��7�P�@D��G��QN��ٜ.�#am��VҾw6ڿ�Ӥ�3�࿳��=G龤�,?WX@h��@k>�@�h�@_�@}:KeyAttrFlagsi�:KeyAttrDataFloatf

�:KeyAttrRefCountiWY@AnimationCurveL�x�-SAnimCurveSG;	DefaultD�� �_;KeyVerI�8>�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���?i
KeyValueFloatfW\����������d
�x!��=���V�Tkg���o���q���q���q���q���q���q���q���q���q���q���q�/�t�k�z�n���݋��E��������w���q���q���q���q���q���q���q���q���q���q���q���q���q�y�r��ps�U&s���r���r�ms�BFs�Rur���q���q���q���q���q��pr�@s��ps���r���r���r���r���r���r���r���r���r���r���r���n�.`c���P�/9�9  �8Z����s��T+������(���6�a�E��R�;s^�v{g�=�m���q���q��?KeyAttrFlagsi@KeyAttrDataFloatf

L@KeyAttrRefCountiW�EAnimationCurveLx.�-SAnimCurveS�@	DefaultD cG@�@KeyVerI��C�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��#Ei
KeyValueFloatfW\;�@;�@;�@��@A��A��4AK�TA�nA�xA�xA�xA�xA�xA�xA�xA�xA�xA�xA�xAZ~A�7�A�}�A�7�A7��A�،Ah�A�xA�xA�xA�xA�xA�xA�xA�xA�xA�xA�xA�xA�xA8XlAG�PA�85A��'A9�.AiZBA��ZA��oA�xA�xA�xA�xA�xA�FpA��[A��CA��/A��'A��'A��'A��'A��'A��'A��'A��'A��'A��'A'�"AVVA(�A�j�@d��@O��@;�@�2�@�K�@��@��A�BA"QA��#AyS3AaxDA[jVA":hA�xA�xAMEKeyAttrFlagsi�EKeyAttrDataFloatf

�EKeyAttrRefCountiW)KAnimationCurveL���-SAnimCurveSF	DefaultD��Z�/FKeyVerI�I�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���Ji
KeyValueFloatfW\D�r�C�r�C�r����?��A-:�A0��Ah�B7/B^�9B^�9B^�9B^�9B^�9B^�9B^�9B^�9B^�9B^�9B^�9B�?B!:KBpYB'�dBbZgB� ZB8�DB^�9B^�9B^�9B^�9B^�9B^�9B^�9B^�9B^�9B^�9B^�9B^�9B^�9By3BLC$BB��
B�vB ]B��)B�5B^�9B^�9B^�9B^�9B^�9B�85B�A*B)B�,B��
B��
B��
B��
B��
B��
B��
B��
B��
B��
B@�B�A��A�]A�*�@Lg�?C�r�=�R�Xf?M�L@�3�@�0A��}Aֳ�A�"�A���Az�BRw(B^�9B^�9B�JKeyAttrFlagsi�JKeyAttrDataFloatf

KKeyAttrRefCountiW�PAnimationCurveL���-SAnimCurveSK	DefaultD��g!��KKeyVerI�pN�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���Oi
KeyValueFloatfW\�>��>��>���$���d�/ڛ�������������······························�:����=����L��	��,��~��R
������····� ����Z��'���\2��	��	��	��	��	��	��	��	��	��	�*�	��
�(j	�N?�.���>��>��"��Z9��X��*|����ɚ�����s���e�����������·�PKeyAttrFlagsiWPKeyAttrDataFloatf

�PKeyAttrRefCountiW�UAnimationCurveLX��-SAnimCurveS�P	DefaultD`���PKeyVerI��S�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��[Ui
KeyValueFloatfW\{��{��{���y!��?��>��ʂJ�p9?wS@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@��(@Ty?@�e@٩y@X�{@BP{@޹r@?�Y@?9@��(@��(@��(@��(@��(@7�8@V{X@>�q@D{@W�{@X�{@Y�{@X�{@X�{@X�{@X�{@X�{@X�{@X�{@w[@�\@ۙ+?�.��Wѿ�r�{��i`*�\�5�ű=�=
?�Pz6�Iw!�X���T����ު�w�+?H��?��(@��(@�UKeyAttrFlagsi�UKeyAttrDataFloatf

�UKeyAttrRefCountiWa[AnimationCurveL���-SAnimCurveSOV	DefaultD��G*@gVKeyVerI�@Y�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���Zi
KeyValueFloatfW\l?RAl?RAl?RA��yAݯA�;�A��!B"EBy_B�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�1iB�dB�pYB�pOBQ�JB@#MB�!TB�?]B��eB�1iB�1iB�1iB�1iB�1iB��eBޟ]BO�TB(�MBQ�JBQ�JBQ�JBQ�JBQ�JBQ�JBQ�JBQ�JBQ�JBQ�JB*�BB�y.BqSBD_�A�ѫA�}Al?RAQPA�cA㻄A�[�A9�A<��AT=B�\BQz1B7�EB�XB�1iB�1iB�ZKeyAttrFlagsi'[KeyAttrDataFloatf

T[KeyAttrRefCountiW�`AnimationCurveL���-SAnimCurveS�[	DefaultD@[(@�[KeyVerI��^�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��+`i
KeyValueFloatfW\�B�@�B�@�B�@�,^@T�?seпf���@���b�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�0%�<��s��(9������
��RU	�&"�mD!�0%�0%�0%�0%�0%��i!�Ϥ��3
��������������������������������������������������*3����/�@3�m@�B�@%d�@h�Y@�
 @��?�Z�:=����OE��X�����K����$�0%�0%�U`KeyAttrFlagsi�`KeyAttrDataFloatf

�`KeyAttrRefCountiW1fAnimationCurveL��-SAnimCurveSa	DefaultD�e@7aKeyVerI�d�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���ei
KeyValueFloatfW\&(�@&(�@&(�@���@���@J�@]��@�Э@!��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@|��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@}��@�@X�@:�R@��6@n�D@��s@̽�@=�@}��@}��@}��@}��@}��@���@|p�@�w@@KG@��6@��6@��6@��6@��6@��6@��6@��6@��6@��6@�9@u�@@;�P@#i@@̨�@&(�@��@~��@�=�@���@�	�@�ڀ@��@��@�ϝ@罯@�2�@}��@}��@�eKeyAttrFlagsi�eKeyAttrDataFloatf

$fKeyAttrRefCountiW�kAnimationCurveLx��-SAnimCurveS�f	DefaultD I�5@�fKeyVerI�xi�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���ji
KeyValueFloatfW\I��AI��AI��A��AQ�A/P B_�GB��kB"�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B4:�B�By�_B>=B�+BV�4BY�MBlB�؂B4:�B4:�B4:�B4:�B4:�B��BFGmB�zOB+^6B�+B�+B�+B�+B�+B�+B�+B�+B�+B�+B1�&B�lB�r	B�N�A�N�A0�AI��A��A��A�5�Aב�A�XB��Bs82BRFB�cZB��mB~�B4:�B4:�B%kKeyAttrFlagsi_kKeyAttrDataFloatf

�kKeyAttrRefCountiWqAnimationCurveL���-SAnimCurveS�k	DefaultD��_ۿlKeyVerI��n�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��cpi
KeyValueFloatfW\>�ھ=�ھ=�ھM��\zY?g�@Fve@j/�@.�@���@���@���@���@���@���@���@���@���@���@���@���@��@��@���@�j�@tK�@zV�@���@���@���@���@���@���@���@���@���@���@���@���@���@�4f@&,��w�o�B�Ƿ(�l%���ž�W�@���@���@���@���@���@%��@��%��y��#$�r�B�r�B�r�B�r�B�r�B�r�B�r�B�r�B�r�B�r�B��~:�3%��E��8����y���;�ھ1x?�Ÿ?T�	@�/@
�O@�k@u؂@Aw�@���@��@r��@���@���@�pKeyAttrFlagsi�pKeyAttrDataFloatf

�pKeyAttrRefCountiWivAnimationCurveL8��-SAnimCurveSWq	DefaultD��6
@oqKeyVerI�Ht�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���ui
KeyValueFloatfW\T�Q@T�Q@T�Q@_Wc@Zl�@7�@��@���@�
A	�A
�A	�A
�A
�A
�A
�A
�A
�A
�A	�A��A��
A�VAK��@���@!�Ah�
A
�A
�A
�A
�A
�A
�A
�A	�A
�A	�A
�A
�A
�A�bAO��@���@�_�@�u�@-Q�@���@��A
�A
�A
�A
�A
�AG�AG��@� �@��@�_�@�_�@�_�@�_�@�_�@�_�@�_�@�_�@�_�@�_�@�.�@�f�@��q@Y�_@��R@��M@T�Q@��]@��n@
&�@8*�@�G�@_Q�@a�@���@���@��@�
A
�A	�A�uKeyAttrFlagsi/vKeyAttrDataFloatf

\vKeyAttrRefCountiW�{AnimationCurveLx��-SAnimCurveS�v	DefaultD + @�vKeyVerI��y�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��3{i
KeyValueFloatfW\Y�AY�AY�A��,A}��ANJ�A!jB��=B��YB��dB��dB��dB��dB��dB��dB��dB��dB��dB��dB��dB�jB-wBK(�B��B��B1��B�hpB��dB��dB��dB��dB��dB��dB��dB��dB��dB��dB��dB��dB��dB7�XBZ�>B�v$B�_B�"B�1B"bHB�1\B��dB��dB��dB��dB��dBS�\B�OIBu2B]]B�_B�_B�_B�_B�_B�_B�_B�_B�_B�_B��B��A�g�A/֞A;�`A�5AY�A_o
A�k'A�UA�S�A���A��AP�A�pB�6*B�H?B��RB��dB��dB]{KeyAttrFlagsi�{KeyAttrDataFloatf

�{KeyAttrRefCountiW9�AnimationCurveL���-SAnimCurveS'|	DefaultD��*�?|KeyVerI��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\5(V�5(V�5(V��a��!}�+ˎ�����kԥ��"��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�������:G�Rx���`�����>�&�l��כ�B��B��B��B��B��Ak���p����*���`��`��`��`��`��`��`��`��`��`�c�:�vz����������}"���>�5(V�Σi�FF|� �����j��+!������o����&��Ө�^��B��B��ŀKeyAttrFlagsi��KeyAttrDataFloatf

,�KeyAttrRefCountiW��AnimationCurveL�N�-SAnimCurveS��	DefaultD �L���KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\9f��9f��9f���������������?1?F@���@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@�¸@qZ�@;[@�-�?��|?�`�?�f$@��@Y�@�¸@�¸@�¸@�¸@�¸@���@�h�@��)@x
�?��|?��|?��|?��|?��|?��|?��|?��|?��|?��|?��?n���o�_YS��‘�2(��9f��m$��4������ 	���jY�����U��ج>�$�?5ML@Г�@�¸@�¸@-�KeyAttrFlagsig�KeyAttrDataFloatf

��KeyAttrRefCountiW	�AnimationCurveL���-SAnimCurveS��	DefaultDթ0@�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��k�i
KeyValueFloatfW\�N�A�N�A�N�AKU�A�O�A��BDf4BƙXBKsBWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}BWV}Br,pB�SB�7B�()BV0B~�DB��]B��sBWV}BWV}BWV}BWV}BWV}B�ItB_B�FB6�1B�()B�()B�()B�()B�()B�()B�()B�()B�()B�()B�c#B��B�KBG��A���AꮏA�N�A�x�A���Aq�AO��A�|�A�\
B�#B&v2BK�FBE\ZB��lBWV}BWV}B��KeyAttrFlagsiϋKeyAttrDataFloatf

��KeyAttrRefCountiWq�AnimationCurveL���-SAnimCurveS_�	DefaultD���@w�KeyVerI�P��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��Ӑi
KeyValueFloatfW\5,@6,@6,@�u@�Z@P�2@�7@�E�?VY?f"(?e"(?f"(?e"(?h"(?b"(?e"(?f"(?b"(?g"(?e"(?d"(?d"(?V"(?V"(?V"(?U"(?e"(?e"(?e"(?d"(?d"(?f"(?d"(?b"(?c"(?e"(?e"(?d"(?d"(?d"(?�ri>�
3��2׿{
�1`���ș�U����(�>f"(?g"(?`"(?a"(?b"(?��>�Ŧ�U3���
�{
�{
�{
�{
�{
�{
�{
�{
�{
�{
�#��B�����;�?��@��Y@6,@=A�@���@�2�@`��@mdm@�T@Z�6@ޔ@� �?�7�?7~?e"(?e"(?��KeyAttrFlagsi7�KeyAttrDataFloatf

d�KeyAttrRefCountiWٖAnimationCurveL���-SAnimCurveSǑ	DefaultD����ߑKeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��;�i
KeyValueFloatfW\�_���_���_���n~�K�Pt�=*p�?Ι@0N@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@��g@e�<@�F�?W�q?|�1?C�O?�ɣ?oT	@a�H@��g@��g@��g@��g@��g@U�I@��@P;�?��U?��1?��1?��1?��1?��1?��1?��1?��1?��1?��1?6�?�>�ue�Կƾ�m;�Qz~��_��r^������_yc���&��e��p�=�/?�7�?�b�?+�@�C?@��g@��g@e�KeyAttrFlagsi��KeyAttrDataFloatf

̖KeyAttrRefCountiWA�AnimationCurveLX��-SAnimCurveS/�	DefaultD@�/>@G�KeyVerI� ��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\�}�A�}�A�}�A@�B�Bmh8BZB��yBM	�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�Bc�B]X�B�XB�\*B��BJ\BZ9@B�whB�;�Bc�Bc�Bc�Bc�Bc�B��B�jBN�BB�!B��B��B��B��B��B��B��B��B��B��B>�B
TB)�B�8�A�K�A�Z�A�}�A���A#�B�BiBć-Bԭ<B�{LB5�\B\�lBP4|B��Bc�Bc�B͛KeyAttrFlagsi�KeyAttrDataFloatf

4�KeyAttrRefCountiW��AnimationCurveL���-SAnimCurveS��	DefaultD��$@��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\6%�@6%�@6%�@���@���@���@Y��@e��@=��@���@���@���@���@���@���@���@���@���@���@���@�8�@ ��@��ASoA�;
AXA?t�@���@���@���@���@���@���@���@���@���@���@���@���@���@t��@� �@�#@���?\V�?&�M@���@���@���@���@���@���@���@���@Ȑ�@��S@��?㶱?涱?涱?綱?綱?嶱?涱?涱?涱?涱?G=�?2)@��U@ӓ�@�ߧ@��@6%�@Y��@�Y�@���@)�@1�@n��@���@���@���@��@^�@���@���@5�KeyAttrFlagsio�KeyAttrDataFloatf

��KeyAttrRefCountiW�AnimationCurveL�v�-SAnimCurveS��	DefaultD��c���KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��s�i
KeyValueFloatfW\D��G��D��u�o=d�>��?l'+?��*?�?<�?=�?<�?<�?<�?=�?<�?=�?<�?<�?<�?���>�c��~d������uſ�l��:�=<�?<�?=�?<�?<�?<�?<�?<�?<�?<�?<�?<�?<�?L�)>aL��H������ѥ���k��=�>=�?<�?=�?<�?<�?�>�о�顿Hw����������������������N�$�쿊��~:}��&��|��P���U
>��>�?�p-?��J?8t\?�ta?�I[?�L?�9?J�&?<�?<�?��KeyAttrFlagsiצKeyAttrDataFloatf

�KeyAttrRefCountiWy�AnimationCurveL8��-SAnimCurveSg�	DefaultD`� @�KeyVerI�X��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��۫i
KeyValueFloatfW\�A�A�A�p%A�AI�AԬB1�'B�8@B�IB�IB�IB�IB�IB�IB�IB�IB�IB�IB�IB��PBy�aB�!uB�%�B�BAvB��XB�IB�IB�IB�IB�IB�IB�IB�IB�IB�IB�IB�IB�IBՏ@B(p,BB>�
B�B��!B|�3B�,CB�IB�IB�IB�IB�IB2jCBu�4B&�"B�
B?�
B?�
B?�
B?�
B?�
B?�
B?�
B?�
B?�
B?�
B/�B���A�q�A��A'�ZA/�A�AKA��AmKDAN=wA��A�]�A.)�A��B��B�)B�Q:B�IB�IB�KeyAttrFlagsi?�KeyAttrDataFloatf

l�KeyAttrRefCountiW�AnimationCurveL���-SAnimCurveSϬ	DefaultD���ҿ�KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��C�i
KeyValueFloatfW\F%��D%��B%��t�X��<��>\�'?�|v?�]�?��?��?��?��?��?��?��?��?��?��?��?�!�?]�?���?��?P�?�ޮ?�{�?��?��?��?��?��?��?��?��?��?��?��?��?��?�[�?��?V�?�?�ʇ?0l�?���?�v�?��?��?��?��?��?���?��?��?5I�?;�?2�?3�?2�?2�?2�?4�?2�?2�?2�?/=v?��B?�6�>c}L>�y���w�E%��)��=b8��駽�N=�y5>r�>g�>�(?�S?]�{?��?��?��?m�KeyAttrFlagsi��KeyAttrDataFloatf

ԱKeyAttrRefCountiWI�AnimationCurveL���-SAnimCurveS7�	DefaultD����O�KeyVerI�(��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\��&���&���&�;�� �����O����D� �/(�/(�/(�/(�/(�/(�/(�/(�/(�/(�/(�h�)��s-���1���5��6�Y72�D+�/(�/(�/(�/(�/(�/(�/(�/(�/(�/(�/(�/(�/(�8���P��iJQ�"��<6�7���p�վ�E�/(�/(�/(�/(�/(�R���پї���:;���s�u�s�r�v�w�u�t�u��6���z��'��I��hw
�g� ���&��#��-��H��k�V�	����]��^b��E�A��?��/(�/(�նKeyAttrFlagsi�KeyAttrDataFloatf

<�KeyAttrRefCountiW��AnimationCurveL(��-SAnimCurveS��	DefaultD`�37@��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\c��Ac��Ac��A�3�A���A�DB�
=B
\Bn�rB�{B�{B�{B�{B�{B�{B�{B�{B�{B�{B�{B�9}B}��BE��BS҄B�H�Bk�B�.B�{B�{B�{B�{B�{B�{B�{B�{B�{B�{B�{B�{B�{B�[kB��GB�!#B7�B*]B��4BD�TB��oB�{B�{B�{B�{B�{B�lpBqVB�|6B�B7�B7�B7�B7�B7�B7�B7�B7�B7�B7�B�
B�wBL��A\�A�p�A�-�Ac��A٬�A���A
�A;��A�Q
B�B��,Bg=BUNB -^B|mB�{B�{B=�KeyAttrFlagsiw�KeyAttrDataFloatf

��KeyAttrRefCountiW�AnimationCurveLX��-SAnimCurveS�	DefaultD {⺿�KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��{�i
KeyValueFloatfW\�׽�׽�׽��Ƽ��?>���>�L?��?�?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?Ȱ?�>�?�^�?�Q�?�O�?���?��?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?���?Fї?Fd�?k[y?)�?o.�?9I�?Ex�?�ޮ?�ޮ?�ޮ?�ޮ?�ޮ?S��?.�?W(�?�?\[y?`[y?_[y?`[y?`[y?`[y?`[y?a[y?_[y?_[y?�Oh?��<?{8?I��>��W=c����׽���9@=>��>U�>��	?�.?cBT?�Sy?���?Ri�?�ޮ?�ޮ?��KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountiW��AnimationCurveL�i�-SAnimCurveSo�	DefaultD �+翇�KeyVerI�`��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\^9�^9�^9��	4���)�\�$�r+��2;��/M���U���U���U���U���U���U���U���U���U���U���U�BW�cn[�Fv`��d���e��`��?Y���U���U���U���U���U���U���U���U���U���U���U���U���U��*��׼�]02�������ā�E��.k6���U���U���U���U���U�0�7����M�������C��6��;��<��>��9��:��6��5������y�������*��R�3�^9���4��0�U+�N�'�bW%��/%��q'�#G,�¤3��K=��H���U���U�
�KeyAttrFlagsiG�KeyAttrDataFloatf

t�KeyAttrRefCountiW��AnimationCurveL(��-SAnimCurveS��	DefaultD@�T?@��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��K�i
KeyValueFloatfW\���A���A���A$B��B]�;B��]B�|B���B��B��B��B��B��B��B��B��B��B��B��B
ߎB��BY@�Bh�B���B~]�B_ُB��B��B��B��B��B��B��B��B��B��B��B��B��B鑂B�mRBr�B
BDTBz7B�eB�ۅB��B��B��B��B��B�(�B_�fB�1:BվB
B
B
B
B
B
B
B
B
B
B��B#
BJ�A���A!]�A��A���A�BH�
B��B�u%Ba;3B��AB�+QB�`B&NpB��B�B��B��Bu�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiWQ�AnimationCurveL���-SAnimCurveS?�	DefaultD`�,@W�KeyVerI�0��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\ke�@ke�@ke�@az�@�	A�x#A)F>Aw�TA��cA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hAyA�>�A�s�A�ɬA�AsD�A:J�A�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA�hA��WA��0A��AX�@;�@��Am?A�\A�hA�hA�hA�hA�hA�>]Ar�@A3�A0�@	X�@
X�@	X�@
X�@
X�@
X�@
X�@
X�@
X�@
X�@�z�@4��@'��@]��@0f�@��@ke�@k��@��@7�A�AAԊ(A85A!AA�LA��VA�y`A�hA�hA��KeyAttrFlagsi�KeyAttrDataFloatf

D�KeyAttrRefCountiW��AnimationCurveL�K�-SAnimCurveS��	DefaultD�Ep���KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\/��/��/�����	���ǿB�ǿ$^࿰�Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��*�<�������������#����I�{�Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z��Z���@���������r��2�����*���A0�Z��Z��Z��Z��Z���.������v������r��r��r��r��r��r��r��r��r��r��(���
;��"����b���%m�Q�3�/����߿�Dz�]
��[�p�p�Y���Z��ys��B��q��]�пڭ�Z��Z��E�KeyAttrFlagsi�KeyAttrDataFloatf

��KeyAttrRefCountiW!�AnimationCurveL���-SAnimCurveS�	DefaultD�ۮ@'�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\�v@�v@�v@�~@��AV�aA���AA�AE�A5pB5pB5pB5pB5pB5pB5pB5pB5pB5pB5pBIz
B�K'B�EB�4\B?bB��FB��B5pB5pB5pB5pB5pB5pB5pB5pB5pB5pB5pB5pB5pB��A�z�A,��AG��AtU�A�E�A���A��A5pB5pB5pB5pB5pBl�A���Ac��A��AG��AG��AG��AG��AG��AG��AG��AG��AG��AG��AK~�A��A�-_A*�Aa��@� `@�v@c>'@Z!j@䶫@�)�@z%A�IVA`�AꊠAa»A�#�A5��A5pB5pB��KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountiW��AnimationCurveL�g�-SAnimCurveSw�	DefaultD������KeyVerI�h��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\������P����>��@�k�@���@�`�@��@��@��@��@��@��@��@��@��@��@��@�A��A��A��&A�S)A?zA{
A��@��@��@��@��@��@��@��@��@��@��@��@��@���@��@W��@m1�@
m�@}�@gI�@���@��@��@��@��@��@�@���@\��@���@b1�@b1�@b1�@b1�@b1�@b1�@a1�@b1�@b1�@b1�@�d�@�>�@&U@���?zP;�nɿ�促����?�\邽r!6?���?��@��Y@萋@@'�@��@���@��@��@�KeyAttrFlagsiO�KeyAttrDataFloatf

|�KeyAttrRefCountiW��AnimationCurveL�r�-SAnimCurveS��	DefaultD��u���KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��S�i
KeyValueFloatfW\������������b���m�i�_�5]���f��u��.|��.|��.|��.|��.|��.|��.|��.|��.|��.|��.|��P������ɍ��{��F���/������.|��.|��.|��.|��.|��.|��.|��.|��.|��.|��.|��.|��.|���A�Œ���yҾ��A���J�Q����8�Q��.|��.|��.|��.|��.|�Q=S�a�Yl_��d��A�A�D�B�B�B�A�D�C�F�u�ž����N���.��
_��6������
����w�q�o�^h�3�a�T�]��l\���]�U�a�mh�7nq��.|��.|�}�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiWY�AnimationCurveL(�-SAnimCurveSG�	DefaultD�/�7@_�KeyVerI�8��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\~�A~�A}�A���A��Az,
B�L!BO�6B�FB<LB<LB<LB<LB<LB<LB<LB<LB<LB<LB<LBoOB�oWB�`B@�gB��iB�%aB�JSB<LB<LB<LB<LB<LB<LB<LB<LB<LB<LB<LB<LB<LBo�9B)�B�;�A���A1��A���A��B��>B<LB<LB<LB<LB<LB�m?Bu+!B}\�A���A���A���A���A���A���A���A���A���A���A���A�0�A*��A@U�Ac�A�ܯA���A}�AL�A�T�A��Ay��A�B��B�4B��#B:P.B��8BK�BB<LB<LB��KeyAttrFlagsi�KeyAttrDataFloatf

L�KeyAttrRefCountiW��AnimationCurveL��-SAnimCurveS��	DefaultD@��?��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��#�i
KeyValueFloatfW\�L�=�L�=L�=>
?=��?K6^@�@���@�)A��
A��
A��
A��
A��
A��
A��
A��
A��
A��
A��
A��A�d"Ay25A�jCAd�FA�6A��A��
A��
A��
A��
A��
A��
A��
A��
A��
A��
A��
A��
A��
A��A�+�@ڦ�@S�@<�@A�@@%�@^4A��
A��
A��
A��
A��
AjA$��@��@�v�@w�@u�@u�@u�@u�@u�@w�@t�@u�@u�@훝@ac�@	r2@���?�k�>{��L�=+I?޿?��
@�<@PTj@�Q�@�r�@���@?q�@9�@k��@��
A��
AM�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiW)�AnimationCurveL���-SAnimCurveS�	DefaultD���/�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\�,���,���,�����,������+��v������~(��~(��(��~(��~(��~(��~(��~(��~(��~(��~(��<���%u��̦�����	r�d���m��~(��~(��~(��~(��~(��~(��~(��~(��~(��~(��~(��~(��~(��~J��ro��1p��}�9<K��D]u���;�����~(��~(��~(��~(��~(��d���)�A��텿�#��9<B�9<@�9<;�9<6�9<W�9<|�9<��9<�9<��9<MN�����O �j5w�*N�������,��3a��|w���r��1U��� ���־��v�����:s������2
��~(��~(����KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountiW��AnimationCurveL؃�-SAnimCurveS�	DefaultD���B@��KeyVerI�p��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\t6Bt6Bt6B\?Bf�,B,BB!SYBI�nB�)~B*�B*�B*�B*�B*�B*�B*�B*�B*�B*�B*�B�	�B<�B9�Br%�BҶ�B>S�B ^�B*�B*�B*�B*�B*�B*�B*�B*�B*�B*�B*�B*�B*�BhBF(B���A���A~Y�As�BK�?Bg$pB*�B*�B*�B*�B*�BR�pB�-BB\F	BᣱA���A���A���A���A���A���A���A���A���A���AƏA���A�D�A.�A���AyBt6B�9 B~C)B9S2B�g;B�DB-�MB�VBD�_B��hB)rB�{B*�B*�B�KeyAttrFlagsiW�KeyAttrDataFloatf

��KeyAttrRefCountiW�AnimationCurveLȓ�-SAnimCurveS��	DefaultD��!���KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��[i
KeyValueFloatfW\�!��!��!��e��Rʿ�l%�E��>9b�?ͫ@�l@�l@�l@�l@�l@�l@�l@�l@�l@�l@�l@��(@~S@�~@���@Q�@h�@�=@�l@�l@�l@�l@�l@�l@�l@�l@�l@�l@�l@�l@�l@A��?�?���>O;��U>4I?�ʾ?�q@�l@�l@�l@�l@�l@=	@R^�?��S?%H|>,N;�O;�L;=N;�N;�O;DO; O;�O;"P;E��xT��N�x������h����!����A�?���D�п����2
9�!�S�W(�>'�]?)6�?���?�l@�l@�KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountiWaAnimationCurveL8�-SAnimCurveSO	DefaultD�I�?gKeyVerI�@�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\N��?M��?N��?T5�?��;@�
�@;�@{t�@���@��A��A��A��A��A��A��A��A��A��A��A$��@�lw@tٓ>�� �s�M��r�=���@��A��A��A��A��A��A��A��A��A��A��A��A��A���@��)@����_L��P�(Q?y��@A��@��A��A��A��A��Ae\�@�a�@&�P?���_L�_L�_L�_L�_L�_L�_L�_L�_L�_L��?�l��޿��[�5Ib=�&j?M��?�@;W4@��X@D@|@⏏@���@�DZ@���@+��@���@�@��A��A�KeyAttrFlagsi'KeyAttrDataFloatf

TKeyAttrRefCountiW�
AnimationCurveLH��-SAnimCurveS�	DefaultD��_@�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��+
i
KeyValueFloatfW\D�:@D�:@D�:@��A@��R@dgj@��@�@6��@�@�@�@�@�@�@�@�@�@�@�@8��@|ò@S�@>��@�v�@Z��@��@�@�@�@�@�@�@�@�@�@�@�@�@�@���@�+�@��@�@���@~�@�>�@�Z�@�@�@�@�@�@�j�@�q�@Ja�@�ۊ@�@�@�@�@�@�@�@�@�@�@א�@���@��p@�^@Y�M@'�@@D�:@΂;@�K?@%�E@d�N@��Y@2
f@�Vs@瓀@큇@8�@2x�@�@�@U
KeyAttrFlagsi�
KeyAttrDataFloatf

�
KeyAttrRefCountiW1AnimationCurveL(��-SAnimCurveS	DefaultD ��@7KeyVerI��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@Ly%@��@�_@��?�t@3:@F�@��'@�-@�-@�-@�-@�-@F�'@��@�
@7@��?��?��?��?��?��?��?��?��?��?F��?,�@r@�|@X%#@�J*@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�KeyAttrFlagsi�KeyAttrDataFloatf

$KeyAttrRefCountiW�AnimationCurveL��-SAnimCurveS�	DefaultD`��*��KeyVerI�x�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\�V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��V��YN�{�;�c�(�oQ�l3$�Q�1�t�B�M�P��V��V��V��V��V��P��?C���2��%�oQ�oQ�oQ�oQ�oQ�oQ�oQ�oQ�oQ�oQ�Md"�Q*�
&5���@���K��S��V��V��V��V��V��V��V��V��V��V��V��V��V��V�%KeyAttrFlagsi_KeyAttrDataFloatf

�KeyAttrRefCountiWAnimationCurveL�v�-SAnimCurveS�	DefaultD��x�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��ci
KeyValueFloatfW\�������������������������������������������������������������������������������������������������������������������������
�t����%࿚ҿTٿ���i��������������������)�-S�Y]ᅤ�ڿ�ҿ�ҿ�ҿ�ҿ�ҿ�ҿ�ҿ�ҿ�ҿ�ҿãֿy�+�򿠇�
��O��������������������������������������������KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountiWi#AnimationCurveL���-SAnimCurveSW	DefaultD���	@oKeyVerI�H!�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���"i
KeyValueFloatfW\��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@h�J@ZFE@-�?@gP=@��>@~B@�4G@�9K@��L@��L@��L@��L@��L@JK@�dG@��B@+�>@kP=@kP=@jP=@jP=@kP=@kP=@kP=@kP=@kP=@jP=@�+>@b@@ukC@'�F@^�I@�
L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@�"KeyAttrFlagsi/#KeyAttrDataFloatf

\#KeyAttrRefCountiW�(AnimationCurveL���-SAnimCurveS�#	DefaultD`�/��#KeyVerI��&�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��3(i
KeyValueFloatfW\��x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x���x��cv�w�p�J*k�[Xh�d�i��m���r�Dw���x���x���x���x���x�6-w��s�S,n�6j�[Xh�[Xh�[Xh�[Xh�[Xh�[Xh�[Xh�[Xh�[Xh�[Xh�-Ci���k���n�fbr���u��w���x���x���x���x���x���x���x���x���x���x���x���x���x���x�](KeyAttrFlagsi�(KeyAttrDataFloatf

�(KeyAttrRefCountiW9.AnimationCurveL�C�-SAnimCurveS')	DefaultD���?)KeyVerI�,�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���-i
KeyValueFloatfW\t0�t0�u0�u0�v0�x0�y0�{0�|0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0�}0���-��4)��y$��""��W#���&�O�*�?�.�}0�}0�}0�}0�}0���.�+�H�&�1�#��""��""��""��""��""��""��""��""��""��""�T�"��$���'�ӂ*��<-�1=/�t0�t0�u0�v0�w0�w0�y0�z0�{0�|0�}0�}0�}0�}0��-KeyAttrFlagsi�-KeyAttrDataFloatf

,.KeyAttrRefCountiW�3AnimationCurveL(�-SAnimCurveS�.	DefaultD`��@�.KeyVerI��1�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��3i
KeyValueFloatfW\S$�@���@;b�@�!�@�D�@pd�@"�i@"!|@�y�@�O�@Ͼ�@;Z�@�F�@���@AZ�@yz�@��@�Ǝ@�a�@�f�@;+�@��@���@���@K��@�@��@��@� L@�ܙ���#�(Ȁ������R��3�z���L���&��п���O���7/��񦽡G�:a�qk�`�ȼ�FT@���@�A	Z%A��6A�LA��_A�eA$!pAr�|A�tA�r^A)�?A\� A��A���@Tx�@��@���@���@A��@�@�M�@O�m@��d@%T@�0:@Th)@A�@-Z�?�@�\�@".�@��@�y@]Z�@@�o@N;@7�@	I�?���?-3KeyAttrFlagsig3KeyAttrDataFloatf

�3KeyAttrRefCountiW	9AnimationCurveL���-SAnimCurveS�3	DefaultD����4KeyVerI��6�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��k8i
KeyValueFloatfW\����0`��w'�������������j���s��E����60�`Q�B�{���s��������d����N�����
4��E�`�C��*;�%p%��q�IB'��������o��N^@���@ʉ�@�a�@F�@s.5@C�?	���k1���W��������X����/��b.	�u�>�4�f�q�u��.}��au��]q������J���#��Z(������7������_�B14���K������wA�����0���J�������0��1������俧�aܖ�Ю���H�x����4����2t�� ��������o�����<���PV�;�$�E}��8KeyAttrFlagsi�8KeyAttrDataFloatf

�8KeyAttrRefCountiWq>AnimationCurveL��-SAnimCurveS_9	DefaultD �^
�w9KeyVerI�P<�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���=i
KeyValueFloatfW\)�R��m��v�������_}���8�>;$]?L�a?ſ�=��W��Fh��}Y��!��F���?SEy?�:�>}����([�������I�?���?^I<?���>J�>���>s��?�G@��f@$I@�0?@�Cs@��@F��@z4�@�P�@��A�A��A�50A��\A�7�Au��A��AvlNA� �@��?�`��(T��f	�#���,�T3��QF�Y�L�O*9�ZQ+�I�%�T����K�����?���nK������
/��r~��@��N�>��;?r��?�{�?��>5�l�[GJ�2����e����Բ��YB��Э��=��Pg�>+�>$0Y��=KeyAttrFlagsi7>KeyAttrDataFloatf

d>KeyAttrRefCountiW�CAnimationCurveL��-SAnimCurveS�>	DefaultD�M�B@�>KeyVerI��A�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��;Ci
KeyValueFloatfW\lBX��A���Ar�@��9��y��Z8����a��9��nZ=@<�AM.�@?��?��8@>ѝ>�1��1��!���B�}�"�;������T{f@Ř�AL0'B�hTB�@KB�k$B�v-B�7RBeuBd�B�ڃB�fB�3BH��A�vAA�AA�jVk�Gɖ��6���d���F[���5��+������c���������d��m���Bcx��m��60��[�p�$����ÿ�j����!��;�P_!�������@��DA
�JA#�:AÆA�?A �A��A�5BA�%B�,BIB*)Bnx�A�RLAY?�����a/��x>��@�̋��g���j@ȉAW;AeCKeyAttrFlagsi�CKeyAttrDataFloatf

�CKeyAttrRefCountiWAIAnimationCurveL8��-SAnimCurveS/D	DefaultD@�{=@GDKeyVerI� G�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���Hi
KeyValueFloatfW\���Ao�pAQ�@���� xC��zs�ơh��TO�G�.������(.����@9��A��B��)Ba.B��B�Z�A���@*��B��Z���.���:���T_e�p�]�A'R���o������������Z�o����
B���Z��(��*�5���
���D�����͖��������?���1���ր��J��,��Ն�@�����7���d�9*��3���D����������d�cC�@)�@��@�׀@ݕ�@n?�@euMA��A���A��B	�B_�B�BN#BB��Ag:7Aǿ�@˴�?V�?��d@�c�@s�A��A�/;A�\A�HKeyAttrFlagsiIKeyAttrDataFloatf

4IKeyAttrRefCountiW�NAnimationCurveL���-SAnimCurveS�I	DefaultD�z�L��IKeyVerI��L�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��Ni
KeyValueFloatfW\ճg¸�^�l�U�pS��MN�L�>���/€\,�bJ5�8�?�5�J‚c[�T�a��]�	�\��KWµ�E��6� s0�u�!�ʌ�'�>�Qœ[���ȝ� ��ˆK����š������罟��
���I���M��Vљ�#+�����
�·��.���w¶�D›\‰)��;���h���8������]Q��c��
g�![r¼[k�&`��N��8�ץ(��
&�ү-£,=�	�P��Za�\i��*n�B�r���s��/u��t��=nŠ�d»�`���_¼�`�]Te¡�k�azp��rœ�nƒ�j��h��a��T�A�K��7K�mN�ELZº�k�5NKeyAttrFlagsioNKeyAttrDataFloatf

�NKeyAttrRefCountiWTAnimationCurveLX��-SAnimCurveS�N	DefaultD@+R2@OKeyVerI��Q�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��sSi
KeyValueFloatfW\Z��A�ιA_|�A��A9�A��A��B��uB�`A[	Bh:+BTUB�wB�NBz�Af"�A��8A�ZA�1�A��uAs�;A�|�A�`�A�p�BO��B�Q�B�C�p<C�C���B�k�BlM�B�m�B���B�8C4eC�~eC�}WC�MCw�OC�t]CտiC��NCD6UC��]C�TCʢ9C� 4Cc�*CPR-C��<C�$=C�|@C�;C��0C�2C�6C�};C9>C�NC�"RC=D\C��fC�{C��GCĻWC{�[C�[C��YC'�VC��SCQC�PC��PC�<MC��HCͰIC��IC��DC�CC�\HC���C�"aC�bCp�gC'�oC̶~C�SKeyAttrFlagsi�SKeyAttrDataFloatf

TKeyAttrRefCountiWyYAnimationCurveL8�-SAnimCurveSgT	DefaultD�\GQ�TKeyVerI�XW�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���Xi
KeyValueFloatfW\�:�‰�� F�±-�º��EA��U��U��x'��Kg�²=�l����J�"ۀ��ά�|/��h���?-��S���	��jk���P1�@z���{���J�������<��n�”n��LW��1���o���8��¿��…~�‡���������ڬ	����`���b��g�����-�¡��
��*r��ö�#�R)��(ÂO&�% �R��'[ï�ÿ�����x���s�8�RŠTj�-��œ����O�Ä�õì!
����̚��"6�Ž���o!��:0��Ç�
Îc�5��¿&��.U��x��k��L5w–��š��YKeyAttrFlagsi?YKeyAttrDataFloatf

lYKeyAttrRefCountiW�^AnimationCurveL���-SAnimCurveS�Y	DefaultD��,(@�YKeyVerI��\�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��C^i
KeyValueFloatfW\gfAA���@��@y��@va�?x���A���+���M�A1��?����a�#�sK�pS�b,�E����&���w�������r��q1J�p2��%$@��ˆA/���P�Mn��U��X��„h�EG��?¤DT�uK�°�ý�3Ûi9��6�J
4���4��n8�ƈ>�e�ËN(���5�ɻ2��N0�H�0�l0�@�2×+:��A:ÿ!;Ûq9��=7ò�6Ì�6�
,6��\3�?êi<Ä�?��F���\Î�)�Rp9�\
=åw?�A=A���@��>øl<è:Þ9��8æ(:�x@;æ]9�Y7��06�s�3�֫p�Q|B�2D�M�G�lM��k\�m^KeyAttrFlagsi�^KeyAttrDataFloatf

�^KeyAttrRefCountiWIdAnimationCurveL
�-SAnimCurveS7_	DefaultD@�)�O_KeyVerI�(b�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���ci
KeyValueFloatfW\�O��E<�]�$����j���T�n��Ig��n���U�$�a�,+`�}�\��C�ac8���b��Ye�ee���l��be���f���[�X�Q�m�F�5�/��2�$�:�+O�IX:��A4��ԟ�ґ)�$�.��v:�J�.�c��%h���~�d���Ɇ�^��<���Tq�u.J�V�d��x{���g�O�C-u�[[s��l{�T�{�����"��x|��܌c�.2f�UZ|�q}�������Qo�IY�yH��L.��l&�/�]���V�4:��

��Y���Tw��.��s*�?�<�G^O��?R���L��.E�J�X�3y���#�m�>�W�AUV�vH��cKeyAttrFlagsidKeyAttrDataFloatf

<dKeyAttrRefCountiW�iAnimationCurveL���-SAnimCurveS�d	DefaultD�O�ֿ�dKeyVerI��g�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��ii
KeyValueFloatfW\���yy��������ϐ0���x��@��@ё�@ֈ@�{�@C�@��@c'�@�Գ@�J�@�;�@�wAB�
A9hA�;�@�i7@h��@ǎ�@Be�@�y�@�J�@��@��@��@�d�@���@�A�@��@%1A�	A�iA)AZU At#AIV1A��CA?X"A	%�@s�@STA�}=A��*A� Af�>A�g.Aӫ6A�&A?�A4�AܢA�ӈ@0�}�c�����`��3d=��l�>u��?k�?��?��i@�E@?9�?X�?-��?ZK�?Gu�?�r�?��"@�@���? �@6�?�z�?ʇ{@}��@�3�@_�@Nj�@�z�@M��@=iKeyAttrFlagsiwiKeyAttrDataFloatf

�iKeyAttrRefCountiWoAnimationCurveL��-SAnimCurveSj	DefaultD �1@jKeyVerI��l�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��{ni
KeyValueFloatfW\y��A��AZ�A-�gA��=A%� A{�AA�kcA(�3Av��@�?@����LX���.�������j?!Ͱ@oѲ@��@ȴ�@�@�@��@t��?+F��$��6�O�����?�������s-��z���������̨�ܒ&@,OUA��A���A� GA�!�@��?5�@ױ.�7�/��Qu?V�3�Re��Ȧ�������U�|��7j���<���@Q�AtZ3A}>Aa�CA�{eA�{~A�pTA��@�p4@d��=(d�m$��Q��y���8V���B������h���̾�y�?�Ƌ@�?A=.A���@a�@Xg�?/��H��{�x�m����L���nKeyAttrFlagsi�nKeyAttrDataFloatf

oKeyAttrRefCountiW�tAnimationCurveLh]�-SAnimCurveSoo	DefaultD l��oKeyVerI�`r�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���si
KeyValueFloatfW\a+��(���o���N�?�K�?ǞQ?1�>���<_>X��>€?���?ƭ @f�'@ȃ�?i�A<�=Ŀ!
��N��<�?f�'@g�'@f�'@g�'@f�'@g�'@g�'@f�'@f�'@f�'@f�'@f�'@g�'@g�'@g�'@g�'@g�'@g�'@f�'@f�'@f�'@f�'@f�'@f�'@���?3�G�!
�!
�!
�!
� 
�!
� 
� 
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�!
�
tKeyAttrFlagsiGtKeyAttrDataFloatf

ttKeyAttrRefCountiW�yAnimationCurveL8#�-SAnimCurveS�t	DefaultD`�b��tKeyVerI��w�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��Kyi
KeyValueFloatfW\S��p��ϔ�W+��q�������#��V�*����P�/Z������%��V�
�
	���� ��J���w����V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�V�
�kt�����J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���uyKeyAttrFlagsi�yKeyAttrDataFloatf

�yKeyAttrRefCountiWQAnimationCurveLH��-SAnimCurveS?z	DefaultD`�Q��WzKeyVerI�0}�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���~i
KeyValueFloatfW\+�ڿc��Y�'�P���4�N����G��`S�M�r���i�����-�3�Sg�����Nw�	T�-�/�~� �|�;�z�i��������������������������������������������������������������������������o��PH�~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� �~� ��~KeyAttrFlagsiKeyAttrDataFloatf

DKeyAttrRefCountiW��AnimationCurveLM�-SAnimCurveS�	DefaultD@����KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\z�_�����G�?�b�Y��
?��5���j1�%�=U�d��ă�{��j>��i_�a�Y����k֠�	�@�oAvL@9��a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�a�Y�������oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oA�oAE�KeyAttrFlagsi�KeyAttrDataFloatf

��KeyAttrRefCountiW!�AnimationCurveL���-SAnimCurveS�	DefaultD ;�@'�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\��6@p�@p�@Z�@���@�%o@�C�?@��:S�>�n�?%T@�ɝ@pT�@Z�@��@���@���@5��@vT�@!��@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@Z�@�e�@�o�@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@5��@��KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountiW��AnimationCurveLhi�-SAnimCurveSw�	DefaultD��o.���KeyVerI�h��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\N|s���±Ub�dA���Lb°~��G��(�HG�S�Y�BS��+03��i�dA���%���\o�g�U���J���[��y�dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA��dA�–}�
�c���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J���J��KeyAttrFlagsiO�KeyAttrDataFloatf

|�KeyAttrRefCountiW�AnimationCurveL��-SAnimCurveSߏ	DefaultD�^�'@��KeyVerI�В�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��S�i
KeyValueFloatfW\�:>A� DA��1AiS"A`�A���@��E@f�=�G?Bc@���@��A�;AiS"At�A"�A��@���@;�AA�AiS"AiS"AiS"AiS"AiS"AiS"AiS"AiS"AiS"AiS"AiS"AiS"AiS"AiS"AjS"AiS"AiS"AiS"AiS"AiS"AiS"AiS"AiS"AiS"Aw	A6
A���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@}�KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountiWY�AnimationCurveL�r�-SAnimCurveSG�	DefaultD@9�	�_�KeyVerI�8��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\�YN����?���@���@�W�@�k@T��?+!:�x>&��?�L@
Z�@N�@���@5�@nY�@��h@L�B@/��@Ai�@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@���@�4�@��@L�B@L�B@L�B@L�B@K�B@L�B@K�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@K�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@K�B@L�B@L�B@L�B@L�B@L�B@L�B@L�B@�KeyAttrFlagsi�KeyAttrDataFloatf

L�KeyAttrRefCountiW��AnimationCurveL���-SAnimCurveS��	DefaultD@(=3�ǚKeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��#�i
KeyValueFloatfW\B���|�n?l��3��K]g�b
�&�D��nO�O�9�ޝa�t���v;šts��3���Â�(�`�{�:¯�+�>�G��w��3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3�’�}���T¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+¯�+�M�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiW)�AnimationCurveL�k�-SAnimCurveS�	DefaultD ��?/�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\y8<>��@;:�@qIA��A�[�@���?�f���{D?/�I@�"�@��Ar�+A�U&Ax(�@e$j��������{��t��@�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A�U&A-|�@$�ÿ��������������������������������������������������������������������������������������������������������������������������KeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountiW��AnimationCurveLH��-SAnimCurveS�	DefaultD`H�	���KeyVerI�p��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\C�O�����8���M�������=�������V�UU�20����#�u<m�"������ȥ�%�������렁��:��qȞ������������������������������������������������������P��렁�렁�렁�적�렁�렁�렁�렁�렁�렁�렁�렁�렁�적�렁�렁�렁�렁�렁�적�적�적�렁�렁�렁�렁�적�렁�렁�렁�렁�렁�렁�렁�렁�렁�렁�적�렁�렁�렁��KeyAttrFlagsiW�KeyAttrDataFloatf

��KeyAttrRefCountiW��AnimationCurveL���-SAnimCurveS�	DefaultD�h2 ���KeyVerI�ح�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��[�i
KeyValueFloatfW\D������.#>Hd�("D�E���V� ��{R�H��m����� �C���y�P3� e��z�X��J,���9|<�|�u�P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��P3��2�}�:DL����������������������������������������������������������������������������������…�KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountiWa�AnimationCurveL���-SAnimCurveSO�	DefaultD���'�g�KeyVerI�@��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��ôi
KeyValueFloatfW\��?�D�R�&P��*=��$�"��K�>�t�z<݅v��F���,���2��F��*=�B�
���[�6n�?v�]@_"y�����*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=��*=�
!�I�?�v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@v�]@�KeyAttrFlagsi'�KeyAttrDataFloatf

T�KeyAttrRefCountiWɺAnimationCurveL��-SAnimCurveS��	DefaultD �i@ϵKeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��+�i
KeyValueFloatfW\N3@�k����i��7��:'��4�I���v�Z�;�;������^�2��+��r
���7����ֿw)?0�?��&l��7���7���7���7���7���7���7���7���7���7���7���7���7���7���7���7���7���7���7���7���7���7���7���7��x���3���0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?0�?U�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiW1�AnimationCurveL���-SAnimCurveS�	DefaultD�`2�7�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\�������e�e+���~`�>9	��??��%P�>n4�,�Z�i���{�5��3l�e+��Z-~�N`[��=7†�(�)CºIp�e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��e+��̂v�i�O†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(†�(½�KeyAttrFlagsi��KeyAttrDataFloatf

$�KeyAttrRefCountiW��AnimationCurveL���-SAnimCurveS��	DefaultD@��KeyVerI�x��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\� �@�>AJA�	A6��@ֶ@(@z�}<t�.?}�C@^9�@�(�@tA�	A���@I�@��w@��?@�V�@|�@�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	A�	AH�@�!�@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@��?@%�KeyAttrFlagsi_�KeyAttrDataFloatf

��KeyAttrRefCountiW�AnimationCurveLH��-SAnimCurveS��	DefaultD���
@�KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��c�i
KeyValueFloatfW\�m@(�@'q@v�T@�J@��@�Ha?e;T�~>J��?�2@��O@s^@s�T@�A@�@��?S��?vL�?��?@t�T@s�T@t�T@s�T@s�T@s�T@s�T@s�T@s�T@s�T@s�T@s�T@s�T@s�T@s�T@t�T@s�T@s�T@s�T@s�T@s�T@s�T@s�T@s�T@F@�2@T��?T��?T��?T��?R��?S��?R��?S��?S��?S��?T��?T��?T��?T��?T��?S��?T��?T��?S��?S��?T��?T��?S��?S��?S��?S��?T��?S��?S��?S��?S��?S��?S��?S��?T��?T��?T��?S��?S��?S��?T��?��KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiWi�AnimationCurveL�t�-SAnimCurveSW�	DefaultD �
=�o�KeyVerI�H��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\YU��m�7�YW{�+܊��<h�?
�hLD�M�R���E�Lm�M���)�B�^�z�+܊�`	���U�K�%¹C†q7’u�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊�+܊��}��WH¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C¹C���KeyAttrFlagsi/�KeyAttrDataFloatf

\�KeyAttrRefCountiW��AnimationCurveL���-SAnimCurveS��	DefaultD ��@��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��3�i
KeyValueFloatfW\���@
/]@�|�?�	��f-��B@����b����>��?���?���??&�?Ϩ!?�wʾl��/�P���r�&v�?�žͨ!?Ψ!?ͨ!?Ψ!?ͨ!?Ϩ!?Ψ!?ͨ!?ͨ!?ͨ!?ͨ!?ͨ!?ͨ!?Ψ!?Ψ!?Ψ!?Ψ!?Ψ!?ͨ!?ͨ!?ͨ!?ͨ!?ͨ!?ͨ!?��+ᅦ�r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r���r�]�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiW9�AnimationCurveLh��-SAnimCurveS'�	DefaultD�k��?�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\\���1���;�w��Z���(��G{/��@����~��.�JXb��s��8���n
->�'?��/%��s��s��s��s��s��s��s��s��s��s��s��s��s��s��s��s��s��s��s��s��s��s��s��s�{9�v���'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?�'?��KeyAttrFlagsi��KeyAttrDataFloatf

,�KeyAttrRefCountiW��AnimationCurveL���-SAnimCurveS��	DefaultD�!���KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\�������e�*�I�J�:*-�K����	���"���X��H}����>�)�q�l7��'�y���L�2��%�
�Rx0�gk�l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7��l7���us�2�@�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�%�
�-�KeyAttrFlagsig�KeyAttrDataFloatf

��KeyAttrRefCountiW	�AnimationCurveL�-SAnimCurveS��	DefaultD�x���KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��k�i
KeyValueFloatfW\`�ÿz�¿=꯿xO������^j�˅���Q����۽���!�Y��G���j���3������Jv�4�>��%��Y�tE���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3����n��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%��%���KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiWq�AnimationCurveLX��-SAnimCurveS_�	DefaultD@�O�?w�KeyVerI�P��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\�}Z>�C���%=�mj�
5G��0쾴���K﹬�H�bf�������C��s��
��q�i��I1�e��𸾊m�G]��
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���6g��%�������������������������������������������������������������������������������������KeyAttrFlagsi7�KeyAttrDataFloatf

d�KeyAttrRefCountiW��AnimationCurveLX�-SAnimCurveS��	DefaultD�*7���KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��;�i
KeyValueFloatfW\-P��Ip��9`�{y{”BS�S6�O]0���$��O�}=i�����.T;��p¤G��V�z�l�N´v"�/€�2±+l¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�¤G�t¾�B�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�e�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiWA�AnimationCurveL���-SAnimCurveS/�	DefaultD�u.��G�KeyVerI� ��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\�sٿ�#ӿ�W��iŪ�r���e��o�߾�A��a�����K}��Ǟ�:������S���𮀿$�9�æ��^�??����������������������������������������������������������������������������x�æ�¦�æ�æ����æ����æ�¦�æ�æ�æ�æ�¦�æ�æ�æ�¦�Ħ�æ�æ�æ�æ�æ�æ�æ�æ�æ�æ�æ�æ�æ�æ�æ�æ�æ�Ħ�¦�¦�æ�Ħ���KeyAttrFlagsi�KeyAttrDataFloatf

4�KeyAttrRefCountiW��AnimationCurveLX��-SAnimCurveS��	DefaultD@R��?��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\�
�=��߾a0p�+���o��$�^�"��^h�����5���Ro�� ���q������pEF���⾂�������\���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q���q�����]�6�������~���}����������������������������������������������������������~���~����������������������������������������������}������~���������������}���5�KeyAttrFlagsio�KeyAttrDataFloatf

��KeyAttrRefCountiWAnimationCurveLQ�-SAnimCurveS��	DefaultD��K?��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��si
KeyValueFloatfW\\��	�?�2F������R�l‹�حD���$���m�������
��VU��Q��ꉕº��h�V�|��6��,3»Ȁ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�ꉕ�)*��{�H�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6KeyAttrFlagsi�KeyAttrDataFloatf

KeyAttrRefCountiWyAnimationCurveL���-SAnimCurveSg	DefaultD�';@KeyVerI�X�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\?ٱ@n'�@�o�@7)U@Y�@	>�?��>�:�-k?���?�sG@��@�N�@��@ry\@�*�?�H_>�9�?d�?�VQ@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@f�b@a��?�9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9�KeyAttrFlagsi?KeyAttrDataFloatf

lKeyAttrRefCountiW�AnimationCurveLا�-SAnimCurveS�	DefaultD��5@�KeyVerI��	�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��Ci
KeyValueFloatfW\Ϭ	@=p?�4��,���8����I��2W�
#��抭�gPk=|ÿ=�(>2!?�
@U��@4��@=��@�*�@�&@2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?2!?5��?PQ�@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@=��@mKeyAttrFlagsi�KeyAttrDataFloatf

�KeyAttrRefCountiWIAnimationCurveL�]�-SAnimCurveS7	DefaultD���OKeyVerI�(�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\�������ٍ���5ƒ���Ə� K����ǧ���(���+��;;:��g�B�z�/�a�d�)�LO���ֺ�PX	�Z�S�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�B�z�:�]�{�ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��ֺ��KeyAttrFlagsiKeyAttrDataFloatf

<KeyAttrRefCountiW�AnimationCurveL���-SAnimCurveS�	DefaultDe�&��KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��i
KeyValueFloatfW\(C5�K�4���+�:�%�q������!���¼��V�D)]�����S�΃�o��h������p�'���5�������o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o��o���\�y�������������������������������������������������������������������������������������=KeyAttrFlagsiwKeyAttrDataFloatf

�KeyAttrRefCountiWAnimationCurveL2�-SAnimCurveS	DefaultD��W�?KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��{i
KeyValueFloatfW\,��?���*��My�����:�aL/����۾��Կ�2Z�6$���������5Z���Ai�k�ο�ZX��!�D����������������������������������������������������������������������������г��`S��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��ZX��KeyAttrFlagsi�KeyAttrDataFloatf

KeyAttrRefCountiW�!AnimationCurveL���-SAnimCurveSo	DefaultD`a�5��KeyVerI�`�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��� i
KeyValueFloatfW\3��V'�jQ6��^I�5�'��������K��X�SR\������+)žnV�QBi•`Q�Bz��0��P��������D�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�QBi�<�M�h�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���P���P���P���P���P���P���P���P���P���P���P���P���P���
!KeyAttrFlagsiG!KeyAttrDataFloatf

t!KeyAttrRefCountiW�&AnimationCurveL���-SAnimCurveS�!	DefaultD�&2-��!KeyVerI��$�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��K&i
KeyValueFloatfW\6�i�Ye���T�7XM�q�D�.~�Pc������x�����0���-��I1��U+��$"�c`��s� �߿����'0 ��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+��U+���$�X��� �߿ �߿�߿ �߿�߿ �߿�߿�߿ �߿ �߿ �߿�߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿ �߿�߿ �߿ �߿ �߿u&KeyAttrFlagsi�&KeyAttrDataFloatf

�&KeyAttrRefCountiWQ,AnimationCurveLH��-SAnimCurveS?'	DefaultD��5�?W'KeyVerI�0*�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���+i
KeyValueFloatfW\ԭ�>}:B�`�������M��WC��:����
/��7(�sɱ�58��*!�f�&��m��w��Ȅ�pB�}dh���f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&�f�&��9��}��pB�pB�~pB�pB�pB�~pB�~pB�~pB�pB�pB�pB�pB�pB��pB�pB�pB�pB�pB�pB�pB�pB�pB�~pB�pB�pB�pB�pB�pB�pB�pB�pB�pB�pB�pB�pB�pB�pB�pB�pB�pB�~pB��+KeyAttrFlagsi,KeyAttrDataFloatf

D,KeyAttrRefCountiW�1AnimationCurveL��-SAnimCurveS�,	DefaultD@�A��,KeyVerI��/�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��1i
KeyValueFloatfW\�8ª?��Cp�C�¡^R�����c�%�&$�Q=�����\���Bf�FՐ���>i��~&7����E���	�ZMz�������������������������������������������������z��i(�E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E��E1KeyAttrFlagsi1KeyAttrDataFloatf

�1KeyAttrRefCountiW!7AnimationCurveL(��-SAnimCurveS2	DefaultD��!�'2KeyVerI�5�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���6i
KeyValueFloatfW\�!���#�,©?�l@
��?ͧ?h����Fd>��T?6��?�$@U�b@��@Q�@�l@��@�i?�N;��?|�Y@Q�@Q�@Q�@Q�@R�@Q�@Q�@Q�@Q�@Q�@Q�@Q�@S�@Q�@Q�@Q�@Q�@Q�@Q�@Q�@Q�@Q�@Q�@Q�@xl@��?O;&O;gO;�O;M;PO;jP;�O;�O;<O;%O;O;!O;O;O;�N;VO;O;�N;�N;�N;TN; P;�N;�O;$O;�O;O;�N;O;�N;�N;O;�N;�N;�N;N;PP;2P;�N;�N;�6KeyAttrFlagsi�6KeyAttrDataFloatf

7KeyAttrRefCountiW�<AnimationCurveL�-SAnimCurveSw7	DefaultD�I���7KeyVerI�h:�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���;i
KeyValueFloatfW\N�п�#��b������.���~�C�u?t�f@���@"u�@��{@?-_@�nN@r�M@�Q@�N@�L@_L@�K@��L@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@r�M@x�L@B�K@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@_L@<KeyAttrFlagsiO<KeyAttrDataFloatf

|<KeyAttrRefCountiW�AAnimationCurveL��-SAnimCurveS�<	DefaultD��_��<KeyVerI��?�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��SAi
KeyValueFloatfW\D�:������������ȿ:�`@ڑA_�,A'? A���@K�L@%߃��/���v�������#��G�������Y����v���v���v���v���v���v���v���v���v���v���v���v���v���v���v���v���v���v���v���v���v���v���v���v�������A������������������������������������������������������������������������������������}AKeyAttrFlagsi�AKeyAttrDataFloatf

�AKeyAttrRefCountiWYGAnimationCurveL���-SAnimCurveSGB	DefaultD���@_BKeyVerI�8E�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���Fi
KeyValueFloatfW\�-@�-@�-@�-@�@��?ٻV?�	�>��?�Cc?��?Pt�?�@�-@�(@�@��@��?(�	@0� @�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@�-@��#@��@��?��?��?��?
��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?��?�FKeyAttrFlagsiGKeyAttrDataFloatf

LGKeyAttrRefCountiW�LAnimationCurveL8l�-SAnimCurveS�G	DefaultD���*@�GKeyVerI��J�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��#Li
KeyValueFloatfW\�VA�VA�VA�VA
�<A��A9�@#@�]>@fS�@��@:�A��CA�VA��QA�=A�(AsQA;�.A/�HA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA�VA(}LA8�5AsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAsQAMLKeyAttrFlagsi�LKeyAttrDataFloatf

�LKeyAttrRefCountiW)RAnimationCurveL��-SAnimCurveSM	DefaultD��x@/MKeyVerI�P�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���Qi
KeyValueFloatfW\��@��@��@��@���?�ߩ?Uj2?�R�>gu�>��<?�8�?:��?�@��@��@���?Y&�?x�?��?�@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��@��?x�?x�?x�?w�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?w�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?x�?�QKeyAttrFlagsi�QKeyAttrDataFloatf

RKeyAttrRefCountiW�WAnimationCurveL��-SAnimCurveSR	DefaultD���	@�RKeyVerI�pU�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���Vi
KeyValueFloatfW\��L@��L@��L@��L@�{?@d"@d�@���?΍�?��@g�@}"/@�A@��L@؃M@��G@�h@@aP=@/�A@W�H@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@��L@J@��C@cP=@cP=@cP=@dP=@`P=@cP=@lP=@eP=@cP=@cP=@cP=@cP=@cP=@cP=@cP=@cP=@cP=@cP=@cP=@cP=@cP=@bP=@eP=@bP=@dP=@cP=@cP=@cP=@bP=@cP=@cP=@cP=@cP=@cP=@cP=@cP=@cP=@bP=@cP=@bP=@cP=@WKeyAttrFlagsiWWKeyAttrDataFloatf

�WKeyAttrRefCountiW�\AnimationCurveL8]�-SAnimCurveS�W	DefaultD�/@�WKeyVerI��Z�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��[\i
KeyValueFloatfW\��xA��xA��xA��xA٪jA��JA
"*A��Az\A��+A�xAA��XA�!mA��xA��yA�<sA��kA_XhA��lA��tA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xA��xAR�uA&oA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA_XhA�\KeyAttrFlagsi�\KeyAttrDataFloatf

�\KeyAttrRefCountiWabAnimationCurveL8��-SAnimCurveSO]	DefaultD`�@g]KeyVerI�@`�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���ai
KeyValueFloatfW\c0@f0@k0@n0@�$@�Y
@B2�?��?���?�`�?��@ԕ@�&@n0@&�0@�:+@��$@�""@��%@`�,@o0@n0@n0@o0@n0@o0@n0@n0@n0@n0@n0@o0@o0@n0@o0@n0@n0@n0@n0@n0@n0@n0@n0@o0@ck-@�'@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�""@�aKeyAttrFlagsi'bKeyAttrDataFloatf

TbKeyAttrRefCountiW�gAnimationCurveL�0�-SAnimCurveS�b	DefaultD`�F@�bKeyVerI��e�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��+gi
KeyValueFloatfW\�4�@�!�� ��|��	�U�gu�m[u��sd���N�tq<�q6�C> ��	��q����Cj�}�����:������@���I�
,8�	�O��J�A/�%�‹���]8��>��A?��J���8M�Č��Q�7��?��@��@,J�?�%f���W��%��Z.0�xo�P��‹�¿���U���=��z]�[/g�F�����\���f@�W�?�7�J���`�L�o���KR���£��k�������3q�e�R°2������0�w?�dm@���@�YAV�CA��:A�i�@��1��S�0�<�V�gM`�OiR��v6�z���¤���_�UgKeyAttrFlagsi�gKeyAttrDataFloatf

�gKeyAttrRefCountiW1mAnimationCurveL���-SAnimCurveSh	DefaultD�o�7hKeyVerI�k�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���li
KeyValueFloatfW\}��/@~���G��j��Rq���@��|t��@��@a�;@�P�Z����������<��'D�����$���%�\?���x>�@sާA���A��A!��?a������������5����{��T���^��U;��w��$�@8R�@�կ@��@�	�@���@(�@��A�)EA�}aA��CA��6Ak�AA��NA)/A4G�@�7=���IV��H��K4�0�#���?C�L@7@r|:�,�a������J���*@[��?Y+�@+�@?�.X?Csu��H���"!?z d?����-���C���H<����0���ȣ�*���#�?���ߥ��lKeyAttrFlagsi�lKeyAttrDataFloatf

$mKeyAttrRefCountiW�rAnimationCurveLH��-SAnimCurveS�m	DefaultD@��!@�mKeyVerI�xp�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���qi
KeyValueFloatfW\�nA��A���@�lt@t�@�r�@��@+�U�n���HJ)��g
@�ѱ@�(_@
�y?�Կ�d?g��l6����>;؊��u��v(��wl�P��I
�g;)���±���IC�������c���Q}�Ao���C�Z#��5��99��?\��Sq�'���AA��Z"����n�0�.������o��`���Ab���_��D��߷�@��&����Mʆ����C��?�p>?YW��+�"3��"������4�+�|b����1>�y�@��A�=AhgA4��@���@�L�@o0�@ �\@#p>����R��Q�"�9�/@
ؗ?�]2�(J���m����g�����%rKeyAttrFlagsi_rKeyAttrDataFloatf

�rKeyAttrRefCountiWxAnimationCurveL���-SAnimCurveS�r	DefaultD`��K@sKeyVerI��u�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��cwi
KeyValueFloatfW\;�^B���Bd��B��B��B�=�Btp6B�b�A�a�A�&�A�B@RB�gBT}B"�B/�B��B���B���BC6�Bӭ�B�;�B0�RB�mB��A*��AEB4B�*B8EB��eAK�Aܩ�?f3@�	�@���A�H!B�|B>U�B6�B�*�B|��B4F�B��B�%fBVy*B(�rB�)�Bo��B�l�B�egBk�@Br�B�*�A�b1B'r�B[�BQ�B��Cl�Ce��B�޹B1��Bz�Bտ�A:ԼA���A���A�:B@
p��X9Ab�
B�x[B��BK�B�d�B���B���B�C�BY�B��B�!gB���Ay�@�|�?�wA�wKeyAttrFlagsi�wKeyAttrDataFloatf

�wKeyAttrRefCountiWi}AnimationCurveL���-SAnimCurveSWx	DefaultD�U#@oxKeyVerI�H{�KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���|i
KeyValueFloatfW\�ZA��@��G@��>@�e@	�@v��@>1g@r���l����������V�R�G�ô��As��C0�+�E?�҉@!��@*��?�� �6��������}��P�j��_�q�*�H���������^c��Vr�$
���9���
���������F�?hr?{�K�v�o���������$��Q���VG��*�fx���M�X&��m�����O���WI@ޮAZH�@a9
A)��@cί?����:���8���i�/�`�J,�w�@�����f�)b>�A������X�N��@{{>Ao�
A`6J@fSc>�����u5�C���2�:O��^��|KeyAttrFlagsi/}KeyAttrDataFloatf

\}KeyAttrRefCountiWтAnimationCurveLX��-SAnimCurveS�}	DefaultD ,I@�}KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��3�i
KeyValueFloatfW\aIr@���?�G����.��ȍ��]]�'�#@��@RN�?���?��x@�;e@G9�?�2S�	^����O��%y��\�l%c������`�)������������u'����2
���M�r%��8���K���2�����Ȇ.�7���3�������yS��[���H����3�?�?$���-�?p��@-Q�@�@�X4?O����w	���F'�[c��,�9!��w��%��0�m�9�����L������+��n���5�f��?���?��,��4���sD�����\��B���q���{T/�g����H���h�� v���`�u�
�ƿ��K��@]�KeyAttrFlagsi��KeyAttrDataFloatf

ĂKeyAttrRefCountiW9�AnimationCurveL���-SAnimCurveS'�	DefaultD�!)/�?�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\
Iy��kh��MP���.��N����>t"�����]�W"�c�@\�V� N������P<�@��?A�(�@��??˿��7��.��,����@�fCA��A8��A�s
�06V�x|�?��@A&�A^�A��QA��@mʣ@/�?y�?��?���?�J�?���?h��h��ҥ���8��K@�"��c�������e��{K������N�RA�1�A�u�A��A�%�Ak��AshA]y�@p��������\�*�`۠�{�@J���=�Y"�*�UA�2�ABA�YGAM:�A㜙A���Au�AȒ�A�2OĀ�@7Y?@/
�>��=��E?���?�_�@�VAŇKeyAttrFlagsi��KeyAttrDataFloatf

,�KeyAttrRefCountiW��AnimationCurveLX!�-SAnimCurveS��	DefaultD�١����KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\��pտ?���G�����̿�Ͽ�*��̿꧂@�^4@;ru@��]������޾�z�?ZƷ>j/	�����:��91�����P�f��'��V�����?�!^�a7�?���wʿa��)�׿��4�$Q�=c��?�F?�������c�
�u���[���Qg�V���ρ�>F[�?g��?
��d����H@�IC@��?�o�����ڿ�!�T�ſ�>տm�F�
�5�Fa���Ω��C�����J+T?�H�??�??=�?��[����@`�@�H@���?ZI�T�{��H�?{�%?X+��[��ې��a��Ȇ��ŵ�Ɔ��80���{��fFҿj�?-�KeyAttrFlagsig�KeyAttrDataFloatf

��KeyAttrRefCountiW	�AnimationCurveLX��-SAnimCurveS��	DefaultD`l� @�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��k�i
KeyValueFloatfW\c�AN A��YA�;�AR��A3�tA��(A���@�f�@���@o��7������2�����k?�a�@N,�@	g@v!@��U���NR+���A'���0�I��A�L�A��A��7A���@-®�)�F��c�
#x=|�ǿ-q��=�b7m�����L{������8����@AA�)A�߱Aʴ�Ae�A���A��A�axA>�[Av�5Aȭ�@��@k6�@0�	At�@�]�������V��:�����?���@��@�G�����P����~��Џ��AAt��@�:y@>�f�\���������_��-W��q�9�t�C����Pŝ�L5��������9���@��KeyAttrFlagsiϒKeyAttrDataFloatf

��KeyAttrRefCountiWq�AnimationCurveL��-SAnimCurveS_�	DefaultD��w�KeyVerI�P��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��ӗi
KeyValueFloatfW\\������IJ`�1A���9�w�J�s�t��d��f��%��Ge�Ɗ=�4��T��1��ͺ��E��k��L���	���PZ��䀴�Sl��Ʃ��Ώ��/�aM���q�<��:��̿e
��ȴ�*X��8Ɂ�ʍ�u����������
��������T����r����m���h��OY�ʱ���B�>R���[u��*���'��7�N��	������p<������w���"���D�������VŜ�����������:����7?��C��C��8���f���������p'�������:������/��R����]�����jj��M�����t���q<���q���KeyAttrFlagsi7�KeyAttrDataFloatf

d�KeyAttrRefCountiWٝAnimationCurveL�Y�-SAnimCurveSǘ	DefaultD�F��ߘKeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��;�i
KeyValueFloatfW\7��ݿ������"d���G���3Ŀ�s��2��EQ�V�� ���B<y��?ϒ�?vt������[��ET��+�)���/
�Q����;#�P�D���IͿ!�>��I?d�y>/ο3������ݿ����
�qgC�=�X�#%V��j�y�� �A��};���v��Wm�b<Ϳ+��������NZ���?6��=��ÿx�k�˿���R9�=,--�%g6�N#S�۠E��7�7y�����7��]{T��,�����_�
�NĖ?�{���Y�"���3��o���e(���N@�f@�S�@`>�@�C@P�]?)Eh>J�=���������\�e�KeyAttrFlagsi��KeyAttrDataFloatf

̝KeyAttrRefCountiWA�AnimationCurveL(�-SAnimCurveS/�	DefaultD�[Q�?G�KeyVerI� ��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\ފ�?;��?Ⱦ�?�0}?+s?��?���?�P�?�[�?r�@�Z?�.x>�K?��L@{�F@kc�? !�?E1@:H@���?�b�?;�?E��?F	�?���?�S@�?�/<��8������T_?ў�?�?5�?���?Z��?9�?�@�@Ir@�ɐ@%�@@5�?-�?���?��?ԫN?a�?�	@X�Z@\l�@M��@�kZ@�@���?�o�?�W�?י@��@�%@��@��?8k�?@/�?��?�׉?�?;?U�y?���?rw�?��?�<�?`��?9[	@�^7@��@ʅ�>�\y>���>/��>�>H?�??�?/�@s�?3�?��?͢KeyAttrFlagsi�KeyAttrDataFloatf

4�KeyAttrRefCountiW��AnimationCurveL8��-SAnimCurveS��	DefaultD�G���KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\�u8���#ª�������W�Xu"@{!cA�O�AH5lAԍ�@����
���w"��~Dœ�L�{�<›�®����$�p�,�m��;��X��#����q��O�N|-�%U��)rŽ�|�ڣx�w�j�x\�gKS�;$I¥�8�-�(‰vž�� w���س���������@�lA��*Am���Rr����#�kt�#���/�ƒ���V���ν��9�����n���@!{�y>�	gŸJ���)���>��=�Z��G���%�Z�rŠR��~�¤���#e��]oX�1U9�Y�7—�7��8�7&���,r�9w� ��@c�(A���A�:�A��Ag�mA5�KeyAttrFlagsio�KeyAttrDataFloatf

��KeyAttrRefCountiW�AnimationCurveLh��-SAnimCurveS��	DefaultD�Y;��KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��s�i
KeyValueFloatfW\��	�.U�2X��4:?���?������8��զ���@��A�kAA��RA��>AsN%AA` A��A
A��@M������
�W��ħ���^T��Hņ�}����'����5��IR8�;�h��\��<����f�Q��>��?Kd�@KrA�A!/=|�'����>�\H@T��?$��
��p�ſ��@��W?��ٿ$o��R��J#�?SO�4��������r����~����J��3�z�~���� ���[��PU���N	�j���Qt�2&����
���,���7�<$��RC���1���>濦r���5��Σ��Ȇ�۷0@ָ�@�$�@w��?������KeyAttrFlagsi׭KeyAttrDataFloatf

�KeyAttrRefCountiWy�AnimationCurveLH\�-SAnimCurveSg�	DefaultD��z'@�KeyVerI�X��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��۲i
KeyValueFloatfW\��;A4��@_Zi@����$N�����$���%�`|��2���u7�����1��>�Co@��@�9�@%��@koS@��>��[�F�N@��@X�`A�4�A�S�Aok�A��nAP��@����{��B�����0�9��@���A)��A!��A�t5A�Qs@D� �oA��?_�J�e���f�c2O���$�	[�����gO��u����������D�f�eA�,|A��@=�ĿU����:���Y��1|V@�]�@�X�>��������l��V���a��W���T��W������@y�lA���A�fAItAe��@�#?�+@]�@���щ�^ϫ��ݩ?�~V@&e@x��@�KeyAttrFlagsi?�KeyAttrDataFloatf

l�KeyAttrRefCountiW�AnimationCurveL(��-SAnimCurveSϳ	DefaultD ��5@�KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��C�i
KeyValueFloatfW\���Aݔ�A�BR+B�P!BT��A�h�A��A]]IB�A�BV(�B���B=�B&�B�xgBz�B�&XAϾ+Ay�A�uBB/�qBJ~�B�_�B�chB�@B��B�&BUc]B^�B1��B��BY��B�a�B�l�B���B'5�B��_B=B�!�A7B�pB�
�A���A��AZH&A�n�A�cB�x�B�u�B͸�BXF�B+\�B͊�Bda�B��-B.X=Bk!RB�fGB&�/B��B6��Axp�A���AV�
B^�jBگ�B��B�W�BB��B���B�6�B�x�B�'BEc�A��'A��AI�B��0B�/Bh`BJn�A���AHB�B�T:B��dBJ�Bm�KeyAttrFlagsi��KeyAttrDataFloatf

ԸKeyAttrRefCountiWI�AnimationCurveLȁ�-SAnimCurveS7�	DefaultD��Q�?O�KeyVerI�(��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\�=3	@ۛĿr���1���`��@cZA[�8A��A��@�!�?�+@�e�@���@YQ�?�3ƾ��=@�H��Y@�?��?{�6?�E߿����W6��wf���s�9V?H�@��@��@A��@j�@��?�?���@~��@$�*@��|��;��;�*��P����#��B�����3q�;[���p@f�@��@*˶@���@�\�@��?��??��Z��F�>�2"��8���������{���y�E�%@��Y@���>��)@�
@��]@<_�@(ǂ@mh/@���?��?yz�uD�?��!�)����S����1i��=�!�@�]�@�oKAP`jAսKeyAttrFlagsi�KeyAttrDataFloatf

<�KeyAttrRefCountiW��AnimationCurveL8�-SAnimCurveS��	DefaultD�����KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\]����S��{Y�'|~�/c��H��*���?歮@T'A1;A�A��@����\��,��hS]�����ق���cK`�3%������f����7_����Eܰ�m����j�;>�����$��h+���J��߱@�&�@9��?�La��yG������ѐ�h�R�<�0�����%�1jO�Ԭ��7�W��6��D�uQ<�&7�>yf�FA��N�s��C���@��	������N.��6K�3���[�
�/Q������۾�r��1[�������7��Q��H2������F�k��C��������R�'�L���c������du�>�!b@�(A=�KeyAttrFlagsiw�KeyAttrDataFloatf

��KeyAttrRefCountiW�AnimationCurveL>�-SAnimCurveS�	DefaultD�.�%��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��{�i
KeyValueFloatfW\v�,���e��<�7ܯ�7f���t���]D@(�YAWA�Y@A�L�@
��?gP2��Xu�W����]�- �B�-��•A�A�@3|���V��&��MK�����F5z��]�������C����������>I�U�@c�J@�m������u�����z���#�XYj��y��V��@�\�A���A���A�8�Au�A�n*Aw]:@#�&������U��OK�OcV���@�����y������`����oA*ǽA���A���A��A��A�9�AmGA�S�@�[�?�C���Z��x�	�����EM{�]�v�����۶�V;��M?��@�Z�@�Y�@ef�@���@��KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountiW��AnimationCurveLx1�-SAnimCurveSo�	DefaultD�ai(@��KeyVerI�`��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\KCAx�!AQ�QA�a�A�o�A��XAmA&H	@ܽ�?,61@ӄ�@�Q�@a--AR�\A���A��AJ	�A���A)�AO��A}׊A5�bA��=A)1Ab�A�9�Aj-�A)q�A��A�ǥA5F�A��cAM�A�Q�AL��AP��A�ɵA��A�'�A緡A
/�AϷ�AuW�A㕝A�ԘA��A�=�A'd�Ab�A
ԣA"ǤA�'�A�4�AV�A]i�A�ߕAH��A��A-r�A�fA�KAP�`A�>}A��fAnaA��BA�&A�xlA�|AʃA��A��A�}�AI�A�5�A�ςAR�A�$�AD�A>�jA��VAfA*1|A�g�A�]A<T,Ac\�@
�KeyAttrFlagsiG�KeyAttrDataFloatf

t�KeyAttrRefCountiW��AnimationCurveLx��-SAnimCurveS��	DefaultD���	���KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G��K�i
KeyValueFloatfW\w�O��x0=!�@���@
�X@�z������
����?w5K@��@�R�@��@�JA��A�V@=�@�=Ap�OA��@u�ؿ����B(-��U/��T]�Q�%A�XA`�UA��7A��%A��A�2�@�.MAV��AO�AXLJA6�mA͞A�9A��A@��A��A|��AA��.�M���o�u����Z�@��LAj�TA�KfA�1JA>�,A�Q�@&11At At�
A39�@�UX@<Ā�t���v�������3�A�����f���A]c!As2A~��@S��@��@�E��
-��
�����\ʲ�r���l��W���������ۿ����qp@U��@u�KeyAttrFlagsi��KeyAttrDataFloatf

��KeyAttrRefCountiWQ�AnimationCurveL�H�-SAnimCurveS?�	DefaultD@�2�W�KeyVerI�0��KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\:����G�K�:��u������9���W�d�p#�?8�@�@S]
@�'!@:1�?|�����b�ύk�B�o>����#@TQ�@��@���@�ps@8?�?R%�??S�/@u�#@m�@Y�@�@N��?@aU?��G?$�k?b��">`2��|5�v��~b���>2�����-�����CV�>��c?e�g?
*?p�,�D�E�G�.?66y?N��?�I=�Kl@Z/�@T2�@�6�?w��k�H��n��J?��I>�ᄾ��>��%�5ꋾ�=7��>�4j?w}�>H%>���=����O���@�@�X@h0������r�Ծ�<1?Y±���������KeyAttrFlagsi�KeyAttrDataFloatf

D�KeyAttrRefCountiW��AnimationCurveL���-SAnimCurveS��	DefaultD���
@��KeyVerI����KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G���i
KeyValueFloatfW\�T@�\�@0��@���@�!�@�S�?4��>��?���?���?V��?��2?2�>�}�>C���v.�><n�w�}?ۛ@4�}@�u@��t@�k�@r�@� -@�G�e�=X˾�5�<�>��?�?��?Փ>?�>�=�+��
,���W��Q<?�,3@/�a@[S>u%�����gQ��B"I�������j�z��7��> *�>���>�ݽ?~y�ԃ�@Nk@>Yq@i^@}�(@�� >�K�c����}+��Sտ�ѿ����]��jhž?}?Vmr?W�|?@(�?r�q? +?��?��i@﹑@���@ԁ�@�Rd@x��?�~�?��?~��?��>��� �E�KeyAttrFlagsi�KeyAttrDataFloatf

��KeyAttrRefCountiW!�AnimationCurveL���-SAnimCurveS�	DefaultD��'�KeyVerI���KeyTimelW�(�Y�x�9(yx���y 7��yȵg;zp4+�z���z�1�N{h�u�{/9|���a|`,��|��}�)Gu}X�
�}'�,~����~P$U�~��@�!ܛH����cS���&��@�
�蚭f��q8�4���y����Ղ01�ؒB����(��D�����x�P�� X�Ȋ׳�p	���^k��"džh��"��~���lڇ`06�������X}zI��=���z�P��\��w�����K�Hup����ˋ�r�'�@�Y���oߌ���:�8m�����g��j+N�0��g����ua�(e9������xb�t� �А�_G,�p�
��]���ۑ?�hZU������W�R�`֟��Uc
���&f�XR���ѭ��Oqy�P�4Օ�L�0��˻��HJ���BD��G����i
KeyValueFloatfW\�PW��ܤ��\���C��jd��c㿐<O�|�=]�>���=��M>b�>��M>ܙ�$�༚C���L�=�p־��N<�ˍ>�>��>`@�=���M����>�f
?��?i/�>�P�>h��>��`��!��P�<>G->b�>��>E����F�"郾v�����3����=C�u?&N?�#?ܦ
?a�?�?����L�;ʄ=�G>�`>P>�(�A��>5�>�֥�ݣܿb�)�綘���+>�&>S��><��>Nu�>��>Q�=4�4�m�<$����]�i
#�_�e���
�^ڹ>M~>;���/n���"���ؿ�$��� �����hZ����;��KeyAttrFlagsi��KeyAttrDataFloatf

�KeyAttrRefCountiWL�#MotionBuilder_SystemL��9SKTimeWarpManagerS?�Properties70��/PSMoBuTypeNameSKStringSSSBox��/PSMoBuSubTypeNameSKStringSSSH�BPSMoBuObjectFullNameSKStringSSSKTimeWarpManager��.PSMoBuAttrBlindDataSBlobSSI��
BinaryDataRp2�2PSMoBuRelationBlindDataSBlobSSI%�
BinaryDataRp�/MotionBuilder_GenericLhZ�9SFaceTime HD Camera (Display)S�Properties70��1PSMoBuTypeNameSKStringSSSVideo6�3PSMoBuSubTypeNameSKStringSSSLive��UPSMoBuObjectFullNameSKStringSSS#FaceTime HD Camera (Display)VideoG��PS
RecordPathScharptrSSSvC:\Users\bOb\Documents/_27_a_U1_M_P_RunAvoid_ToRight_Both_Fb_p0_No_0_1-FaceTime HD Camera (Display)-VideoRecording.avix�#PSOnlineSboolSSI��)PSResolutionFRSenumSSI��)PSRecordToFileSboolSSI�(PSRecordAudioSboolSSIQ�'PS
CompressorSenumSSI��.PSMoBuAttrBlindDataSBlobSSI����
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI�2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp��0MotionBuilder_GenericL@��9SFaceTime HD Camera (Built-in)S��Properties70��1PSMoBuTypeNameSKStringSSSVideo
�3PSMoBuSubTypeNameSKStringSSSLiven�VPSMoBuObjectFullNameSKStringSSS$FaceTime HD Camera (Built-in)Video��PS
RecordPathScharptrSSSwC:\Users\bOb\Documents/_27_a_U1_M_P_RunAvoid_ToRight_Both_Fb_p0_No_0_1-FaceTime HD Camera (Built-in)-VideoRecording.aviN�#PSOnlineSboolSSI��)PSResolutionFRSenumSSI��)PSRecordToFileSboolSSI��(PSRecordAudioSboolSSI'�'PS
CompressorSenumSSId�.PSMoBuAttrBlindDataSBlobSSI�W��
BinaryDataR�p	UseMipMapI3InputIMSamplingIeFormatI�	PrecisionI�����
InterleaveI�DelayI�OnlineI��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRpz�!MotionBuilder_GenericL��9SVideo Output 1Sm�Properties70��1PSMoBuTypeNameSKStringSSSVideo��5PSMoBuSubTypeNameSKStringSSSOutput(�GPSMoBuObjectFullNameSKStringSSSVideo Output 1Video[�%PSDrawModeSenumSSI��.PSMoBuAttrBlindDataSBlobSSI)��.
BinaryDataR)p	UseMipMapI`�2PSMoBuRelationBlindDataSBlobSSIS�
BinaryDataRpL�!MotionBuilder_SystemL ��9SKVideoRendererS?�Properties70�2PSMoBuTypeNameSKStringSSSObject`�=PSMoBuSubTypeNameSKStringSSSKVideoRenderer��@PSMoBuObjectFullNameSKStringSSSKVideoRenderer��.PSMoBuAttrBlindDataSBlobSSI����
BinaryDataR�p�
RendererTools4VersionIgP	StartTimeS0kStopTimeS0�StepTimeS1�OutputFormatSAVI�
OutputPathSc:\temp\Output.avi�FormatSFrom Camera	FieldModeI,QualityIORendererAntialingIk
ModelsOnlyI�ViewingModeI�StereoDisplayModeI
�RenderAudioI�AudioFormatI ShowCameraLabelI$ShowTimeCodeIBShowSafeAreaIeGlobalViewingModeI�GlobalStereoDisplayModeI2�2PSMoBuRelationBlindDataSBlobSSI%�
BinaryDataRp��!MotionBuilder_SystemL8#�9SKSerialManagerS��Properties70��:PSMoBuTypeNameSKStringSSSKSerialManager,�/PSMoBuSubTypeNameSKStringSSSz�@PSMoBuObjectFullNameSKStringSSSKSerialManager?�.PSMoBuAttrBlindDataSBlobSSI`2�e
BinaryDataR`pS
SerialManager�PortIJTCPPortIhInternalPortI�	IPAddressS0.0.0.0�	IPPortS3001FPortI�TCPPortIInternalPortIBaudRateI�%9
UseHardwareFCI��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp;�#MotionBuilder_SystemL���9SKCharacterHelperS.�Properties70k�0PSMoBuTypeNameSKStringSSSTool��8PSMoBuSubTypeNameSKStringSSS	Character�BPSMoBuObjectFullNameSKStringSSSKCharacterHelpert�.PSMoBuAttrBlindDataSBlobSSIg�
BinaryDataRp!�2PSMoBuRelationBlindDataSBlobSSID�I
BinaryDataRDp7CHARACTER_TOOL9KEYING_MODEISIK_MANIPIqSYMETRY_EDITI�MARKERSET_VISIBILITYI�FLOOR_CONTACT_VISIBILITYI�FINGER_TIPS_VISIBILITYI	REACH_OVERRIDEI*RESIST_OVERRIDEI�MotionBuilder_SystemL(<�9SKNLEManagerS�Properties70��7PSMoBuTypeNameSKStringSSSKNLEManager�/PSMoBuSubTypeNameSKStringSSS`�=PSMoBuObjectFullNameSKStringSSSKNLEManager8.PSMoBuAttrBlindDataSBlobSSIs+x
BinaryDataRspf	GlobalNLE0VersionIY	EditSEdite	IsCurrentI}ModelsI`ResultTrack�TakeNameSNoTake�	StartL��s;�����	StopL�FI�BGhostI*TDDDSRDD�DyIsLocalI�StartRefTrackIdxI�����StopRefTrackIdxI�����	
StartRatioD�?�		StopRatioD�?
KeepActiveI2	StartLL	StopLp6��5�2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRp$MotionBuilder_SystemLȈ�9SConstraintsSProperties70a2PSMoBuTypeNameSKStringSSSFolder�7PSMoBuSubTypeNameSKStringSSSCategory�EPSMoBuObjectFullNameSKStringSSSConstraintsFolder�.PSMoBuAttrBlindDataSBlobSSI5�:
BinaryDataR5p(
FolderTypeSConstraints
2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRpY
 MotionBuilder_SystemL���9S
KAudioManagerSL
Properties70�9PSMoBuTypeNameSKStringSSS
KAudioManager/PSMoBuSubTypeNameSKStringSSSO?PSMoBuObjectFullNameSKStringSSS
KAudioManager�	.PSMoBuAttrBlindDataSBlobSSI�	
BinaryDataRp�
AudioInputHNameSMicrophone (Display Audio)`FormatI xOnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD�
AudioInputK.NameS)Microphone (Cirrus Logic CS4206A (AB 29))cFormatI {OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD
AudioInputZ:NameS5Digital Audio (S/PDIF) (Cirrus Logic CS4206A (AB 29))rFormatI �OnlineI�RecordI�
RecordPathS�DestinationS�		LiveDelayD?
2PSMoBuRelationBlindDataSBlobSSI2

BinaryDataRp�(MotionBuilder_SystemL��9SKMotionTriggerManagerS�Properties70
APSMoBuTypeNameSKStringSSSKMotionTriggerManagerG/PSMoBuSubTypeNameSKStringSSS�GPSMoBuObjectFullNameSKStringSSSKMotionTriggerManager+.PSMoBuAttrBlindDataSBlobSSI*/
BinaryDataR*p
KEEPACTIVEI�2PSMoBuRelationBlindDataSBlobSSI�
BinaryDataRp8"MotionBuilder_SystemL�x�9S
Story rootS+"Properties70V
5PSMoBuTypeNameSKStringSSS	TimelineX�
/PSMoBuSubTypeNameSKStringSSS�
FPSMoBuObjectFullNameSKStringSSSStory rootTimeline"PSMutedSboolSSIH#PSSoloedSboolSSI�.PSRecordClipPathScharptrSSS� PSTracksSobjectSS�#PS	TimelinesSobjectSS#2PSQuaternionInterpolateSboolSSI{JPSRotationOffsetSColorRGBSColorSDDD�IPS
RotationPivotSColorRGBSColorSDDD)IPS
ScalingOffsetSColorRGBSColorSDDDHPSScalingPivotSColorRGBSColorSDDD�.PSTranslationActiveSboolSSIJPSTranslationMinSColorRGBSColorSDDDkJPSTranslationMaxSColorRGBSColorSDDD�,PSTranslationMinXSboolSSI�,PSTranslationMinYSboolSSI,PSTranslationMinZSboolSSIS,PSTranslationMaxXSboolSSI�,PSTranslationMaxYSboolSSI�,PSTranslationMaxZSboolSSI�*PS
RotationOrderSenumSSIC6PSRotationSpaceForLimitOnlySboolSSI�;PSRotationStiffnessXSdoubleSNumberSD�;PSRotationStiffnessYSdoubleSNumberSD;PSRotationStiffnessZSdoubleSNumberSD\0PSAxisLenSdoubleSNumberSD$@�GPSPreRotationSColorRGBSColorSDDDHPSPostRotationSColorRGBSColorSDDD@+PSRotationActiveSboolSSI�GPSRotationMinSColorRGBSColorSDDD�GPSRotationMaxSColorRGBSColorSDDD!)PSRotationMinXSboolSSIX)PSRotationMinYSboolSSI�)PSRotationMinZSboolSSI�)PSRotationMaxXSboolSSI�)PSRotationMaxYSboolSSI4)PSRotationMaxZSboolSSIj(PSInheritTypeSenumSSI�*PS
ScalingActiveSboolSSI�FPS
ScalingMinSColorRGBSColorSDDDJFPS
ScalingMaxSColorRGBSColorSD�?D�?D�?�(PSScalingMinXSboolSSI�(PSScalingMinYSboolSSI�(PSScalingMinZSboolSSI"(PSScalingMaxXSboolSSIX(PSScalingMaxYSboolSSI�(PSScalingMaxZSboolSSI�PPSGeometricTranslationSColorRGBSColorSDDDGMPSGeometricRotationSColorRGBSColorSDDD�LPSGeometricScalingSColorRGBSColorSD�?D�?D�?�6PS
MinDampRangeXSdoubleSNumberSD)6PS
MinDampRangeYSdoubleSNumberSDm6PS
MinDampRangeZSdoubleSNumberSD�6PS
MaxDampRangeXSdoubleSNumberSD�6PS
MaxDampRangeYSdoubleSNumberSD96PS
MaxDampRangeZSdoubleSNumberSD�9PSMinDampStrengthXSdoubleSNumberSD�9PSMinDampStrengthYSdoubleSNumberSD9PSMinDampStrengthZSdoubleSNumberSDU9PSMaxDampStrengthXSdoubleSNumberSD�9PSMaxDampStrengthYSdoubleSNumberSD�9PSMaxDampStrengthZSdoubleSNumberSD(7PSPreferedAngleXSdoubleSNumberSDm7PSPreferedAngleYSdoubleSNumberSD�7PSPreferedAngleZSdoubleSNumberSD�!PSShowSboolSSI'8PSNegativePercentShapeSupportSboolSSI�KPSLcl TranslationSColorRGBSColorSDDD�HPSLcl RotationSColorRGBSColorSDDD+ GPSLcl ScalingSColorRGBSColorSD�?D�?D�?l 3PS
VisibilitySdoubleSNumberSD�?�!.PSMoBuAttrBlindDataSBlobSSI��!�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI"2PSMoBuRelationBlindDataSBlobSSI"
BinaryDataRp�7MotionBuilder_SystemL`��9S	Edit rootS�7Properties70�"5PSMoBuTypeNameSKStringSSS	TimelineX#/PSMoBuSubTypeNameSKStringSSSa#EPSMoBuObjectFullNameSKStringSSSEdit rootTimeline�#"PSMutedSboolSSI�##PSSoloedSboolSSI�#.PSRecordClipPathScharptrSSS,$ PSTracksSobjectSS]$#PS	TimelinesSobjectSS�$2PSQuaternionInterpolateSboolSSI�$JPSRotationOffsetSColorRGBSColorSDDDL%IPS
RotationPivotSColorRGBSColorSDDD�%IPS
ScalingOffsetSColorRGBSColorSDDD�%HPSScalingPivotSColorRGBSColorSDDD5&.PSTranslationActiveSboolSSI�&JPSTranslationMinSColorRGBSColorSDDD�&JPSTranslationMaxSColorRGBSColorSDDD',PSTranslationMinXSboolSSIY',PSTranslationMinYSboolSSI�',PSTranslationMinZSboolSSI�',PSTranslationMaxXSboolSSI(,PSTranslationMaxYSboolSSIA(,PSTranslationMaxZSboolSSIy(*PS
RotationOrderSenumSSI�(6PSRotationSpaceForLimitOnlySboolSSI);PSRotationStiffnessXSdoubleSNumberSDO);PSRotationStiffnessYSdoubleSNumberSD�);PSRotationStiffnessZSdoubleSNumberSD�)0PSAxisLenSdoubleSNumberSD$@+*GPSPreRotationSColorRGBSColorSDDD�*HPSPostRotationSColorRGBSColorSDDD�*+PSRotationActiveSboolSSI+GPSRotationMinSColorRGBSColorSDDDd+GPSRotationMaxSColorRGBSColorSDDD�+)PSRotationMinXSboolSSI�+)PSRotationMinYSboolSSI	,)PSRotationMinZSboolSSI@,)PSRotationMaxXSboolSSIw,)PSRotationMaxYSboolSSI�,)PSRotationMaxZSboolSSI�,(PSInheritTypeSenumSSI-*PS
ScalingActiveSboolSSIp-FPS
ScalingMinSColorRGBSColorSDDD�-FPS
ScalingMaxSColorRGBSColorSD�?D�?D�?�-(PSScalingMinXSboolSSI0.(PSScalingMinYSboolSSIf.(PSScalingMinZSboolSSI�.(PSScalingMaxXSboolSSI�.(PSScalingMaxYSboolSSI/(PSScalingMaxZSboolSSIf/PPSGeometricTranslationSColorRGBSColorSDDD�/MPSGeometricRotationSColorRGBSColorSDDD0LPSGeometricScalingSColorRGBSColorSD�?D�?D�?_06PS
MinDampRangeXSdoubleSNumberSD�06PS
MinDampRangeYSdoubleSNumberSD�06PS
MinDampRangeZSdoubleSNumberSD+16PS
MaxDampRangeXSdoubleSNumberSDo16PS
MaxDampRangeYSdoubleSNumberSD�16PS
MaxDampRangeZSdoubleSNumberSD�19PSMinDampStrengthXSdoubleSNumberSDA29PSMinDampStrengthYSdoubleSNumberSD�29PSMinDampStrengthZSdoubleSNumberSD�29PSMaxDampStrengthXSdoubleSNumberSD39PSMaxDampStrengthYSdoubleSNumberSD]39PSMaxDampStrengthZSdoubleSNumberSD�37PSPreferedAngleXSdoubleSNumberSD�37PSPreferedAngleYSdoubleSNumberSD,47PSPreferedAngleZSdoubleSNumberSD[4!PSShowSboolSSI�48PSNegativePercentShapeSupportSboolSSI�4KPSLcl TranslationSColorRGBSColorSDDDP5HPSLcl RotationSColorRGBSColorSDDD�5GPSLcl ScalingSColorRGBSColorSD�?D�?D�?�53PS
VisibilitySdoubleSNumberSD�?!7.PSMoBuAttrBlindDataSBlobSSI�7�
BinaryDataR�p1Display Time SpanLL[Vertical Scroll PositionIrStateI�
ViewMinimizedI�IsEditI�TimelineHeightI�72PSMoBuRelationBlindDataSBlobSSI�7
BinaryDataRp�:$MotionBuilder_SystemL���9SKTimelineXManagerS�:Properties70[8=PSMoBuTypeNameSKStringSSSKTimelineXManager�8/PSMoBuSubTypeNameSKStringSSS�8CPSMoBuObjectFullNameSKStringSSSKTimelineXManager9:.PSMoBuAttrBlindDataSBlobSSI�,:�
BinaryDataR�p�GlobalTimelineX3MuteIVTimeDiscontinuityIwTimeReferentialI�EditStartEndLLp6��5�EditZoomStartEndLLp6��5�:2PSMoBuRelationBlindDataSBlobSSI�:
BinaryDataRp=MotionBuilder_SystemL���9SPosesS=Properties70\;2PSMoBuTypeNameSKStringSSSFolder�;7PSMoBuSubTypeNameSKStringSSSCategory�;?PSMoBuObjectFullNameSKStringSSS
PosesFolder�<.PSMoBuAttrBlindDataSBlobSSI/u<4
BinaryDataR/p"

FolderTypeSPoses�<2PSMoBuRelationBlindDataSBlobSSI�<
BinaryDataRp\?MotionBuilder_SystemL��9STakesSO?Properties70�=2PSMoBuTypeNameSKStringSSSFolder�=7PSMoBuSubTypeNameSKStringSSSCategory7>?PSMoBuObjectFullNameSKStringSSS
TakesFolder�>.PSMoBuAttrBlindDataSBlobSSI/�>4
BinaryDataR/p"

FolderTypeSTakesB?2PSMoBuRelationBlindDataSBlobSSI5?
BinaryDataRpACMotionBuilder_SystemL��9SGlobal LightS4CProperties70�?9PSMoBuTypeNameSKStringSSS
GlobalShading>@4PSMoBuSubTypeNameSKStringSSSLight�@>PSMoBuObjectFullNameSKStringSSSGlobal Light�@BPS
Ambient ColorSColorSSAD����?D����?D����?&A>PS	Fog ColorSColorSSAD�?D�?D�?aA-PS	Fog BeginSNumberSSAD@33�?�A+PSFog EndSNumberSSAD@�@�A/PSFog DensitySNumberSSAD@	B$PSFogModeSenumSSI=B&PS	FogEnableSboolSSI�B.PSMoBuAttrBlindDataSBlobSSI�B
BinaryDataRp'C2PSMoBuRelationBlindDataSBlobSSIC
BinaryDataRp�HMotionBuilder_SystemL 
�9SRendererS�HProperties70�C4PSMoBuTypeNameSKStringSSSRendererD6PSMoBuSubTypeNameSKStringSSSDefaultnDDPSMoBuObjectFullNameSKStringSSSRendererRenderer�D+PSFrustumCullingSboolSSI�D*PS
DisplayNormalSboolSSIE/PSDisplayBoundingBoxSboolSSIeE;PSDisplayHierarchicalBoundingBoxSboolSSI�E,PSIDBufferPickingSboolSSI�E=PSIDBufferPickingAlphaSdoubleSNumberSD�?$F,PSIDBufferDisplaySboolSSI`F.PSSelectionOverrideSboolSSI�FFPSSelectionOverrideTransparencySdoubleSNumberSD�?GRPSSelectionOverrideColorSColorRGBSColorSD�������?D�?D�������?YG7PSCurrentCallbackIndexSintSIntegerSI�����G1PSAdvancedMaterialModeSboolSSIH.PSMoBuAttrBlindDataSBlobSSI�G
BinaryDataRp�H2PSMoBuRelationBlindDataSBlobSSIuH
BinaryDataRpgQ&MotionBuilder_SystemL�M�9SPython Tool ManagerSZQProperties70>I4PSMoBuTypeNameSKStringSSS__FBTool{I/PSMoBuSubTypeNameSKStringSSS�IEPSMoBuObjectFullNameSKStringSSSPython Tool ManagerJ'PSCaptionScharptrSSS5J$PSEnabledSboolSSIhJ%PSReadOnlySboolSSI�J$PSVisibleSboolSSI�J'PSLeftSintSIntegerSIK&PSTopSintSIntegerSI9K(PSWidthSintSIntegerSIpK)PSHeightSintSIntegerSI�K*PSAnchorsSintSIntegerSI�K(PSSkinContextSenumSSIL$PSHintScharptrSSSGL)PS	HintMouseScharptrSSS�L0PS
HintMouseLeftSintSIntegerSI�����L/PSHintMouseTopSintSIntegerSI����M1PSHintMouseWidthSintSIntegerSI����AM2PSHintMouseHeightSintSIntegerSI�����M1PSHintIsTextCompletionSboolSSI�M#PSActiveSboolSSI�M'PS
ActiveControlSobjectSS N,PSBackgroundBrushSenumSSI\N.PSBorderStyleSintSIntegerSI�N+PSPositionSintSIntegerSI�N-PS
StartWSizeSintSIntegerSI�O-PS
StartHSizeSintSIntegerSI�DO+PSMaxWSizeSintSIntegerSI����}O+PSMaxHSizeSintSIntegerSI�����O+PSMinWSizeSintSIntegerSI��O+PSMinHSizeSintSIntegerSI����)P,PS	StartXPosSintSIntegerSI����cP,PS	StartYPosSintSIntegerSI�����P.PSMoBuAttrBlindDataSBlobSSI�P
BinaryDataRpMQ2PSMoBuRelationBlindDataSBlobSSI@Q
BinaryDataRp6Z(MotionBuilder_SystemLp��9SBatch Tool (scripted)S)ZProperties70R4PSMoBuTypeNameSKStringSSS__FBToolHR/PSMoBuSubTypeNameSKStringSSS�RGPSMoBuObjectFullNameSKStringSSSBatch Tool (scripted)�R'PSCaptionScharptrSSSS$PSEnabledSboolSSI7S%PSReadOnlySboolSSIiS$PSVisibleSboolSSI�S'PSLeftSintSIntegerSI�S&PSTopSintSIntegerSIT(PSWidthSintSIntegerSI?T)PSHeightSintSIntegerSIwT*PSAnchorsSintSIntegerSI�T(PSSkinContextSenumSSI�T$PSHintScharptrSSSU)PS	HintMouseScharptrSSSTU0PS
HintMouseLeftSintSIntegerSI�����U/PSHintMouseTopSintSIntegerSI�����U1PSHintMouseWidthSintSIntegerSI����V2PSHintMouseHeightSintSIntegerSI����OV1PSHintIsTextCompletionSboolSSI�V#PSActiveSboolSSI�V'PS
ActiveControlSobjectSS�V,PSBackgroundBrushSenumSSI+W.PSBorderStyleSintSIntegerSIdW+PSPositionSintSIntegerSI�W-PS
StartWSizeSintSIntegerSI�W-PS
StartHSizeSintSIntegerSImX+PSMaxWSizeSintSIntegerSI����LX+PSMaxHSizeSintSIntegerSI�����X+PSMinWSizeSintSIntegerSI��X+PSMinHSizeSintSIntegerSI�����X,PS	StartXPosSintSIntegerSI����2Y,PS	StartYPosSintSIntegerSI�����Y.PSMoBuAttrBlindDataSBlobSSI�Y
BinaryDataRpZ2PSMoBuRelationBlindDataSBlobSSIZ
BinaryDataRpc3MotionBuilder_SystemLpt�9S Character Selection/Key ControlsScProperties70�Z4PSMoBuTypeNameSKStringSSS__FBTool"[/PSMoBuSubTypeNameSKStringSSS�[RPSMoBuObjectFullNameSKStringSSS Character Selection/Key Controls�['PSCaptionScharptrSSS�[$PSEnabledSboolSSI\%PSReadOnlySboolSSIN\$PSVisibleSboolSSI�\'PSLeftSintSIntegerSI�\&PSTopSintSIntegerSI�\(PSWidthSintSIntegerSI$])PSHeightSintSIntegerSI\]*PSAnchorsSintSIntegerSI�](PSSkinContextSenumSSI�]$PSHintScharptrSSS�])PS	HintMouseScharptrSSS9^0PS
HintMouseLeftSintSIntegerSI����v^/PSHintMouseTopSintSIntegerSI�����^1PSHintMouseWidthSintSIntegerSI�����^2PSHintMouseHeightSintSIntegerSI����4_1PSHintIsTextCompletionSboolSSIe_#PSActiveSboolSSI�_'PS
ActiveControlSobjectSS�_,PSBackgroundBrushSenumSSI`.PSBorderStyleSintSIntegerSII`+PSPositionSintSIntegerSI�`-PS
StartWSizeSintSIntegerSI��`-PS
StartHSizeSintSIntegerSIx�`+PSMaxWSizeSintSIntegerSI����1a+PSMaxHSizeSintSIntegerSI����ja+PSMinWSizeSintSIntegerSI��a+PSMinHSizeSintSIntegerSI�����a,PS	StartXPosSintSIntegerSI����b,PS	StartYPosSintSIntegerSI�����b.PSMoBuAttrBlindDataSBlobSSI}b
BinaryDataRpc2PSMoBuRelationBlindDataSBlobSSI�b
BinaryDataRp�kMotionBuilder_SystemL�#�9S
FBX ExportS�kProperties70�c4PSMoBuTypeNameSKStringSSS__FBTool�c/PSMoBuSubTypeNameSKStringSSS;d<PSMoBuObjectFullNameSKStringSSS
FBX Exportpd'PSCaptionScharptrSSS�d$PSEnabledSboolSSI�d%PSReadOnlySboolSSIe$PSVisibleSboolSSI<e'PSLeftSintSIntegerSIpe&PSTopSintSIntegerSI�e(PSWidthSintSIntegerSI�e)PSHeightSintSIntegerSIf*PSAnchorsSintSIntegerSIKf(PSSkinContextSenumSSI}f$PSHintScharptrSSS�f)PS	HintMouseScharptrSSS�f0PS
HintMouseLeftSintSIntegerSI����/g/PSHintMouseTopSintSIntegerSI����ng1PSHintMouseWidthSintSIntegerSI�����g2PSHintMouseHeightSintSIntegerSI�����g1PSHintIsTextCompletionSboolSSIh#PSActiveSboolSSISh'PS
ActiveControlSobjectSS�h,PSBackgroundBrushSenumSSI�h.PSBorderStyleSintSIntegerSIi+PSPositionSintSIntegerSI=i-PS
StartWSizeSintSIntegerSI^xi-PS
StartHSizeSintSIntegerSI��i+PSMaxWSizeSintSIntegerSI�����i+PSMaxHSizeSintSIntegerSI����#j+PSMinWSizeSintSIntegerSI�\j+PSMinHSizeSintSIntegerSI�����j,PS	StartXPosSintSIntegerSI�����j,PS	StartYPosSintSIntegerSI����Ck.PSMoBuAttrBlindDataSBlobSSI6k
BinaryDataRp�k2PSMoBuRelationBlindDataSBlobSSI�k
BinaryDataRp�� MotionBuilder_SystemLP��9S
HierarchyViewS��Properties70wl;PSMoBuTypeNameSKStringSSSKtHierarchyView�l/PSMoBuSubTypeNameSKStringSSSm?PSMoBuObjectFullNameSKStringSSS
HierarchyView#�.PSMoBuAttrBlindDataSBlobSSI�&��&
BinaryDataR�&p�&
HierarchyView5ShowGridI�&ObjectsAttributes�NameSReferenceModel�	XDO@�	YD�p@�ExpandedIENameSPivotModel	XDO@	YD�s@8ExpandedI�NameSRootModel}	XDO@�	YD�v@�ExpandedI1NameSHipsModel�	XDO@
	YDz@$ExpandedI�NameSSpineModelj	XD�u��	YD }@�ExpandedINameSChestModel�	XD@x��	YD �@ExpandedI�NameSNeckModelW	XDd��n	YD��@�ExpandedINameSHeadModel�	XD����	YD@�@�ExpandedI�NameSLeftEyeModelF	XD��]	YDP�@wExpandedI�NameSRightEyeModel�	XDl���	YDЄ@�ExpandedIsNameS
JawModel5	XD~��L	YDP�@fExpandedI�NameSTongueBackModel�	XD֧��	YD��@�ExpandedIjNameSTongueTipModel,	XD@��C	YD`�@]ExpandedI�NameSLeftLipLowerModel�	XD����	YD��@�ExpandedI`NameS
JawENDModel"	XD��9	YD`�@SExpandedI�NameSRightLipLowerModel�	XD~���	YD��@�ExpandedI_NameSRightLipCornerModel!	XD��8	YD`�@RExpandedI�NameSLeftLipCornerModel�	XDR���	YD��@�ExpandedI\	NameSLeftLipUpperModel		XD���5		YDЄ@O	ExpandedI�	NameSLeftNostrilModel�		XD����		YDP�@�	ExpandedIT
NameSLeftCheekModel
	XDd��-
	YDЄ@G
ExpandedI�
NameSLeftEyelidLowerModel�
	XD��
	YDP�@�
ExpandedIVNameSLeftEyelidUpperModel	XD8��/	YDЄ@IExpandedI�NameSLeftInnerBrowModel�	XDD���	YDP�@�ExpandedIUNameSLeftIOuterBrowModel	XD��.	YDЄ@HExpandedI�NameSRightInnerBrowModel�	XD���	YDP�@�ExpandedIV
NameSRightIOuterBrowModel
	XD���/
	YDЄ@I
ExpandedI�
NameSRightEyelidUpperModel�
	XD����
	YDP�@�
ExpandedIZNameSRightEyelidLowerModel	XDh��3	YDЄ@MExpandedI�NameSRightCheekModel�	XD<���	YDP�@�ExpandedITNameSRightNostrilModel	XD��-	YDЄ@GExpandedI�NameSRightLipUpperModel�	XD���	YDP�@�ExpandedIRNameSRightShoulderModel	XD�m�+	YD0�@EExpandedI�NameSRightArmModel�	XD@q��	YD��@�ExpandedIJNameSRightForeArmModel	XD�s�#	YDP�@=ExpandedI�NameSRightHandModel�	XD�u��	YD��@�ExpandedIFNameSRightHandPinky1Model	XD���	YDp�@9ExpandedI�NameSRightHandPinky2Model�	XD���	YD�@�ExpandedIHNameSRightHandPinky3Model
	XD���!	YD��@;ExpandedI�NameSRightHandRing1Model�	XD����	YD��@�ExpandedIHNameSRightHandRing2Model
	XD���!	YD��@;ExpandedI�NameSRightHandRing3Model�	XD؇��	YD�@�ExpandedIJNameSRightHandMiddle1Model	XD@x�#	YDp�@=ExpandedI�NameSRightHandMiddle2Model�	XD�z��	YD�@�ExpandedINNameSRightHandMiddle3Model	XD�|�'	YD��@AExpandedI�NameSRightHandIndex1Model�	XDV��	YD��@�ExpandedIPNameSRightHandIndex2Model	XD�_�)	YD��@CExpandedI�NameSRightHandIndex3Model�	XD`d��	YD�@�ExpandedIRNameSRightHandThumb1Model	XD�j@+	YDp�@EExpandedI�NameSRightHandThumb2Model�	XD�e@�	YD�@�ExpandedITNameSRightHandThumb3Model	XD a@-	YD��@GExpandedI�NameSLeftShoulderModel�	XD��@�	YD0�@�ExpandedIKNameSLeftArmModel
	XD��@$	YD��@>ExpandedI�NameSLeftForeArmModel�	XDh�@�	YDP�@�ExpandedIBNameSLeftHandModel	XDЗ@	YD��@5ExpandedI�NameSLeftHandPinky1Model�	XD��@�	YDp�@�ExpandedIBNameSLeftHandPinky2Model	XD��@	YD�@5ExpandedI�NameSLeftHandPinky3Model�	XD`�@�	YD��@�ExpandedIANameSLeftHandRing1Model	XD��@	YD��@4ExpandedI�NameSLeftHandRing2Model�	XD��@�	YD��@�ExpandedI?NameSLeftHandRing3Model	XD`�@	YD�@2ExpandedI�NameSLeftHandMiddle1Model�	XD<�@�	YDp�@�ExpandedIANameSLeftHandMiddle2Model	XD��@	YD�@4ExpandedI�NameSLeftHandMiddle3Model�	XD�@�	YD��@�ExpandedIB NameSLeftHandIndex1Model 	XD�@ 	YD��@5 ExpandedI� NameSLeftHandIndex2Model� 	XDT�@� 	YD��@� ExpandedIB!NameSLeftHandIndex3Model!	XD��@!	YD�@5!ExpandedI�!NameSLeftHandThumb1Model�!	XDN�@�!	YDp�@�!ExpandedIB"NameSLeftHandThumb2Model"	XD�@"	YD�@5"ExpandedI�"NameSLeftHandThumb3Model�"	XDp�@�"	YD��@�"ExpandedI>#NameSRightUpLegModel#	XDޥ@#	YD ~@1#ExpandedI�#NameSRightLegModelz#	XD��@�#	YD��@�#ExpandedI3$NameSRightFootModel�#	XDH�@$	YD0�@&$ExpandedI�$NameSRightToesModelp$	XD��@�$	YD��@�$ExpandedI)%NameSLeftUpLegModel�$	XDb�@%	YD ~@%ExpandedI�%NameSLeftLegModeld%	XD�@{%	YD��@�%ExpandedI&NameSLeftFootModel�%	XD̨@�%	YD0�@&ExpandedI�&NameSLeftToesModelX&	XD��@o&	YD��@�&ExpandedI��2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp�MotionBuilder_SystemL�}�9S	TransportSםProperties70D�,PSMoBuTypeNameSKStringSSS��/PSMoBuSubTypeNameSKStringSSSʕ;PSMoBuObjectFullNameSKStringSSS	Transport��'PSCaptionScharptrSSS1�$PSEnabledSboolSSId�%PSReadOnlySboolSSI��$PSVisibleSboolSSI˖'PSLeftSintSIntegerSI��&PSTopSintSIntegerSI5�(PSWidthSintSIntegerSIl�)PSHeightSintSIntegerSI��*PSAnchorsSintSIntegerSIڗ(PSSkinContextSenumSSI�$PSHintScharptrSSSC�)PS	HintMouseScharptrSSS��0PS
HintMouseLeftSintSIntegerSI������/PSHintMouseTopSintSIntegerSI������1PSHintMouseWidthSintSIntegerSI����=�2PSHintMouseHeightSintSIntegerSI����|�1PSHintIsTextCompletionSboolSSI��#PSActiveSboolSSI�'PS
ActiveControlSobjectSS�,PSBackgroundBrushSenumSSIX�.PSBorderStyleSintSIntegerSI��+PSPositionSintSIntegerSIS�.PSMoBuAttrBlindDataSBlobSSI]F�b
BinaryDataR]pPTransport Tool Settings�ZoomBar Settings�/_27_a_U1_M_P_RunAvoid_ToRight_Both_Fb_p0_No_0_1�ZoomWindowModeI�ZoomWindowTimeLLp6��5�Audio Display Settings&AudioDisplayIE
AudioClipNameSeAudioTrackNameS�AudioLeftChannelActiveI�AudioRightChannelActiveICSettings�
TimeFormatISnapOnFramesI6ReferenceTimeIndexI����ʝ2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp��MotionBuilder_SystemL��9SFCurveS�Properties70q�,PSMoBuTypeNameSKStringSSS��/PSMoBuSubTypeNameSKStringSSS��8PSMoBuObjectFullNameSKStringSSSFCurve)�'PSCaptionScharptrSSS[�$PSEnabledSboolSSI��%PSReadOnlySboolSSI��$PSVisibleSboolSSI��'PSLeftSintSIntegerSI)�&PSTopSintSIntegerSI_�(PSWidthSintSIntegerSI��)PSHeightSintSIntegerSIΠ*PSAnchorsSintSIntegerSI�(PSSkinContextSenumSSI6�$PSHintScharptrSSSm�)PS	HintMouseScharptrSSS��0PS
HintMouseLeftSintSIntegerSI�����/PSHintMouseTopSintSIntegerSI����'�1PSHintMouseWidthSintSIntegerSI����g�2PSHintMouseHeightSintSIntegerSI������1PSHintIsTextCompletionSboolSSIע#PSActiveSboolSSI�'PS
ActiveControlSobjectSSF�,PSBackgroundBrushSenumSSI��.PSBorderStyleSintSIntegerSI��+PSPositionSintSIntegerSIj�.PSMoBuAttrBlindDataSBlobSSIJ]�O
BinaryDataRJp=FCurve Tool Settings0FCurve Editor Settings#Audio Display Settings�AudioDisplayI�
AudioClipNameS�AudioTrackNameS�AudioLeftChannelActiveIAudioRightChannelActiveI�2PSMoBuRelationBlindDataSBlobSSIԥ
BinaryDataRp�MotionBuilder_GenericL���9S
GlobalInfoS�Properties70��5PSMoBuTypeNameSKStringSSS	SceneInfoۦ7PSMoBuSubTypeNameSKStringSSSUserData0�GPSMoBuObjectFullNameSKStringSSSGlobalInfoSceneInfo��.PSMoBuAttrBlindDataSBlobSSI���
BinaryDataR�pVersionId�MetaDataHVersionId_TitleSxSubjectS�AuthorS�KeywordsS�RevisionS�CommentS�2PSMoBuRelationBlindDataSBlobSSI��
BinaryDataRp��Connectionsi�CSOOL@zy:L��CSOOL���9L�v)��CSOOL��:L�v)ީCSOOL��:L$v)�CSOOL ��:L)v),�CSOOL��:L.v)S�CSOOL0��:L�v)z�CSOOL(��:LPVv)��CSOOL���9L8uy:ȪCSOOL���:LX��9�CSOOL�'�:LX��9�CSOOL�
�:LX��9=�CSOOL`K�:LX��9d�CSOOLz�:LX��9��CSOOL���:LX��9��CSOOL�ȅ:LX��9٫CSOOL(k�:LX��9�CSOOL��:LX��9'�CSOOLh��:LX��9N�CSOOL؇�:LX��9u�CSOOL��:LX��9��CSOOL��:LX��9ìCSOOL�c�:LX��9�CSOOL��:LX��9�CSOOLP��:LX��98�CSOOL�ۅ:LX��9_�CSOOL8��:LX��9��CSOOLۅ:LX��9��CSOOL�;�:LX��9ԭCSOOL���:LX��9��CSOOL I�:LX��9"�CSOOL [�:LX��9I�CSOOL���:LX��9p�CSOOL��:LX��9��CSOOL�m�:LX��9��CSOOL�z�:LX��9�CSOOL�e�:LX��9�CSOOL�*�:LX��93�CSOOL/�9LX��9Z�CSOOL�'�9LX��9��CSOOL�!�9LX��9��CSOOLX�9LX��9ϯCSOOL�9LX��9��CSOOL�
�9LX��9�CSOOL��9LX��9D�CSOOLX�9LX��9k�CSOOLx.�9LX��9��CSOOL�)�9LX��9��CSOOL�$�9LX��9�CSOOL  �9LX��9�CSOOL��9LX��9.�CSOOLH�9LX��9U�CSOOL��9LX��9|�CSOOLp�9LX��9��CSOOL�9LX��9ʱCSOOL��9LX��9�CSOOL@3�9LX��9�CSOOL�5�9LX��9?�CSOOL�8�9LX��9f�CSOOLh;�9LX��9��CSOOL8>�9LX��9��CSOOLHb�-L@zy:۲CSOOLHy:L@zy:�CSOOL���-LHy:)�CSOOLP�y:LHy:P�CSOOLH��-LP�y:w�CSOOLX�y:LP�y:��CSOOL���-LX�y:ųCSOOL`�y:LX�y:�CSOOL�,w:LX�y:�CSOOL��:LX�y:N�-CSOPL���:LX�y:SLcl Translation��*CSOPL�'�:LX�y:SLcl Rotation��CSOOL�r�-L`�y:ԴCSOOLh�y:L`�y:�*CSOPL�
�:L`�y:SLcl Rotation3�CSOOLH��-Lh�y:Z�CSOOLp�y:Lh�y:��CSOOL��:Lh�y:��CSOOLpM<;Lh�y:�*CSOPL`K�:Lh�y:SLcl Rotation�CSOOL:�-Lp�y:.�CSOOLx�y:Lp�y:f�*CSOPLz�:Lp�y:SLcl Rotation��CSOOL�!�-Lx�y:��CSOOL��y:Lx�y:۶CSOOL��y:Lx�y:�CSOOL��y:Lx�y:)�CSOOL@�:Lx�y:P�CSOOLH�:Lx�y:w�CSOOLP�:Lx�y:��CSOOLX�:Lx�y:ŷCSOOL`�:Lx�y:�CSOOL�ە:Lx�y:�CSOOL���:Lx�y::�CSOOL��:Lx�y:a�CSOOL��:Lx�y:��CSOOL��:Lx�y:��CSOOL���:Lx�y:ָCSOOL���:Lx�y:��CSOOL���:Lx�y:$�CSOOL��:Lx�y:\�*CSOPL���:Lx�y:SLcl Rotation��CSOOLH��-L��y:��CSOOLHE�-L��y:ѹCSOOL>�-L��y:��CSOOL�:L��y:�CSOOL�:L��y:F�CSOOL�:L��y:m�CSOOL �:L��y:��CSOOL(�:L��y:��CSOOL0�:L��y:�CSOOL8�:L��y:	�CSOOLHL�-L�:0�CSOOLH!�-L�:W�CSOOLȦ�-L�:~�CSOOLH	�-L �:��CSOOL�+�-L(�:̻CSOOL�V�-L0�:�CSOOLH��-L8�:�CSOOLȘ�-L@�:A�CSOOL�9�-LH�:h�CSOOL��-LP�:��CSOOL<�-LX�:��CSOOLH��-L`�:ݼCSOOL���-L�ە:�CSOOL���-L���:+�CSOOL�l�-L��:R�CSOOLH��-L��:y�CSOOLH��-L��:��CSOOLH��-L���:ǽCSOOL�2�-L���:�CSOOL��-L���:�CSOOL���-L��:<�CSOOLH�-L��:c�CSOOL�
�:L��:��*CSOPL�ȅ:L��:SLcl Rotation¾CSOOL���-L�
�:�CSOOL��:L�
�:!�*CSOPL(k�:L�
�:SLcl RotationH�CSOOLH8�-L��:o�CSOOL�T�:L��:��*CSOPL��:L��:SLcl RotationοCSOOL��-L�T�:��CSOOL�Y�:L�T�:�CSOOL�h�:L�T�:C�CSOOL�w�:L�T�:j�CSOOL��:L�T�:��CSOOLX><;L�T�:��*CSOPLh��:L�T�:SLcl Rotation��CSOOL���-L�Y�:�CSOOL�^�:L�Y�:O�*CSOPL؇�:L�Y�:SLcl Rotationv�CSOOL���-L�^�:��CSOOL�c�:L�^�:��*CSOPL��:L�^�:SLcl Rotation��CSOOL��-L�c�:4�*CSOPL��:L�c�:SLcl Rotation[�CSOOL��-L�h�:��CSOOL�m�:L�h�:��*CSOPL�c�:L�h�:SLcl Rotation��CSOOL�
�-L�m�:�CSOOL�r�:L�m�:@�*CSOPL��:L�m�:SLcl Rotationg�CSOOL	�-L�r�:��*CSOPLP��:L�r�:SLcl Rotation��CSOOLH��-L�w�:��CSOOL�|�:L�w�:%�*CSOPL�ۅ:L�w�:SLcl RotationL�CSOOL:�-L�|�:s�CSOOL���:L�|�:��*CSOPL8��:L�|�:SLcl Rotation��CSOOL�-L���:
�*CSOPLۅ:L���:SLcl Rotation1�CSOOLH��-L��:X�CSOOL���:L��:��*CSOPL�;�:L��:SLcl Rotation��CSOOL���-L���:��CSOOLP9<;L���:�*CSOPL���:L���:SLcl Rotation=�CSOOL�-LP9<;u�*CSOPL I�:LP9<;SLcl Rotation��CSOOL��-LX><;��CSOOL`C<;LX><;��*CSOPL [�:LX><;SLcl Rotation"�CSOOL�,�-L`C<;I�CSOOLhH<;L`C<;��*CSOPL���:L`C<;SLcl Rotation��CSOOL���-LhH<;��*CSOPL��:LhH<;SLcl Rotation�CSOOLȌ�-LpM<;.�CSOOLxR<;LpM<;f�*CSOPL�m�:LpM<;SLcl Rotation��CSOOL�-LxR<;��CSOOL�W<;LxR<;��*CSOPL�z�:LxR<;SLcl Rotation�CSOOLȩ�-L�W<;:�CSOOL�\<;L�W<;r�*CSOPL�e�:L�W<;SLcl Rotation��CSOOL���-L�\<;��CSOOL�a<;L�\<;��CSOOL�p<;L�\<;�CSOOLH�v:L�\<;5�CSOOL`w:L�\<;\�CSOOLxw:L�\<;��*CSOPL�*�:L�\<;SLcl Rotation��CSOOL�{�-L�a<;��CSOOL�f<;L�a<;�*CSOPL/�9L�a<;SLcl RotationA�CSOOL��-L�f<;h�CSOOL�k<;L�f<;��*CSOPL�'�9L�f<;SLcl Rotation��CSOOLȨ�-L�k<;��*CSOPL�!�9L�k<;SLcl Rotation&�CSOOLH��-L�p<;M�CSOOL8�v:L�p<;��*CSOPLX�9L�p<;SLcl Rotation��CSOOLH��-L8�v:��CSOOL@�v:L8�v:�*CSOPL�9L8�v:SLcl Rotation2�CSOOLHd�-L@�v:j�*CSOPL�
�9L@�v:SLcl Rotation��CSOOL��-LH�v:��CSOOLPw:LH�v:��*CSOPL��9LH�v:SLcl Rotation�CSOOLȤ�-LPw:>�CSOOLX	w:LPw:v�*CSOPLX�9LPw:SLcl Rotation��CSOOLHG�-LX	w:��*CSOPLx.�9LX	w:SLcl Rotation��CSOOL�w�-L`w:#�CSOOLhw:L`w:[�*CSOPL�)�9L`w:SLcl Rotation��CSOOL��-Lhw:��CSOOLpw:Lhw:��*CSOPL�$�9Lhw:SLcl Rotation�CSOOLH\�-Lpw:@�*CSOPL  �9Lpw:SLcl Rotationg�CSOOL�-Lxw:��CSOOL�"w:Lxw:��*CSOPL��9Lxw:SLcl Rotation��CSOOLH�-L�"w:�CSOOL�'w:L�"w:L�*CSOPLH�9L�"w:SLcl Rotations�CSOOLHO�-L�'w:��*CSOPL��9L�'w:SLcl Rotation��CSOOLș�-L�,w:��CSOOL���:L�,w:1�*CSOPLp�9L�,w:SLcl RotationX�CSOOL��-L���:�CSOOL���:L���:��*CSOPL�9L���:SLcl Rotation��CSOOL?�-L���:�CSOOL���:L���:=�*CSOPL��9L���:SLcl Rotationd�CSOOLH��-L���:��*CSOPL@3�9L���:SLcl Rotation��CSOOL��-L��:��CSOOL��:L��:"�*CSOPL�5�9L��:SLcl RotationI�CSOOL��-L��:p�CSOOL��:L��:��*CSOPL�8�9L��:SLcl Rotation��CSOOL��-L��:��CSOOL��:L��:.�*CSOPLh;�9L��:SLcl RotationU�CSOOL� �-L��:��*CSOPL8>�9L��:SLcl Rotation��CSOOLX��9L��Z:��CSOOL���9L��Z:
�!CSOPLH��-L���:Sd|X9�!CSOPLX�-L���:Sd|Yh�!CSOPL���-L���:Sd|Z��!CSOPL�q�-L�'�:Sd|X��!CSOPL�B�-L�'�:Sd|Y��!CSOPLX�-L�'�:Sd|Z$�!CSOPL���-L�
�:Sd|XS�!CSOPL�@�-L�
�:Sd|Y��!CSOPL���-L�
�:Sd|Z��!CSOPL(X�-L`K�:Sd|X��!CSOPL��-L`K�:Sd|Y�!CSOPLX��-L`K�:Sd|Z>�!CSOPL���-Lz�:Sd|Xm�!CSOPLS�-Lz�:Sd|Y��!CSOPL �-Lz�:Sd|Z��!CSOPLx�-L���:Sd|X��!CSOPL��-L���:Sd|Y)�!CSOPL�a�-L���:Sd|ZX�!CSOPL�T�-L�ȅ:Sd|X��!CSOPLX��-L�ȅ:Sd|Y��!CSOPL��-L�ȅ:Sd|Z��!CSOPLx4�-L(k�:Sd|X�!CSOPL��-L(k�:Sd|YC�!CSOPL�T�-L(k�:Sd|Zr�!CSOPL�o�-L��:Sd|X��!CSOPLn�-L��:Sd|Y��!CSOPL�	�-L��:Sd|Z��!CSOPLX��-Lh��:Sd|X.�!CSOPL([�-Lh��:Sd|Y]�!CSOPL8��-Lh��:Sd|Z��!CSOPL�x�-L؇�:Sd|X��!CSOPLx.�-L؇�:Sd|Y��!CSOPL���-L؇�:Sd|Z�!CSOPL���-L��:Sd|XH�!CSOPLX��-L��:Sd|Yw�!CSOPL���-L��:Sd|Z��!CSOPL���-L��:Sd|X��!CSOPL��-L��:Sd|Y�!CSOPLx��-L��:Sd|Z3�!CSOPL���-L�c�:Sd|Xb�!CSOPL8��-L�c�:Sd|Y��!CSOPLx��-L�c�:Sd|Z��!CSOPL���-L��:Sd|X��!CSOPL�N�-L��:Sd|Y�!CSOPL���-L��:Sd|ZM�!CSOPL���-LP��:Sd|X|�!CSOPL���-LP��:Sd|Y��!CSOPLX��-LP��:Sd|Z��!CSOPL���-L�ۅ:Sd|X	�!CSOPL�v�-L�ۅ:Sd|Y8�!CSOPL8��-L�ۅ:Sd|Zg�!CSOPL���-L8��:Sd|X��!CSOPL���-L8��:Sd|Y��!CSOPL(��-L8��:Sd|Z��!CSOPLX��-Lۅ:Sd|X#�!CSOPL�i�-Lۅ:Sd|YR�!CSOPL(��-Lۅ:Sd|Z��!CSOPL���-L�;�:Sd|X��!CSOPL�K�-L�;�:Sd|Y��!CSOPL���-L�;�:Sd|Z�!CSOPL�g�-L���:Sd|X=�!CSOPL�r�-L���:Sd|Yl�!CSOPL(�-L���:Sd|Z��!CSOPL��-L I�:Sd|X��!CSOPL���-L I�:Sd|Y��!CSOPL؃�-L I�:Sd|Z(�!CSOPLȓ�-L [�:Sd|XW�!CSOPL8�-L [�:Sd|Y��!CSOPLH��-L [�:Sd|Z��!CSOPL(��-L���:Sd|X��!CSOPL��-L���:Sd|Y�!CSOPL�v�-L���:Sd|ZB�!CSOPL���-L��:Sd|Xq�!CSOPL���-L��:Sd|Y��!CSOPL�C�-L��:Sd|Z��!CSOPL(�-L�m�:Sd|X��!CSOPL���-L�m�:Sd|Y-�!CSOPL��-L�m�:Sd|Z\�!CSOPL��-L�z�:Sd|X��!CSOPL8��-L�z�:Sd|Y��!CSOPL���-L�z�:Sd|Z��!CSOPLX��-L�e�:Sd|X�!CSOPL8�-L�e�:Sd|YG�!CSOPL���-L�e�:Sd|Zv�!CSOPL
�-L�*�:Sd|X��!CSOPL���-L�*�:Sd|Y��!CSOPL��-L�*�:Sd|Z�!CSOPLh]�-L/�9Sd|X2�!CSOPL8#�-L/�9Sd|Ya�!CSOPLH��-L/�9Sd|Z��!CSOPLM�-L�'�9Sd|X��!CSOPL���-L�'�9Sd|Y��!CSOPLhi�-L�'�9Sd|Z�!CSOPL��-L�!�9Sd|XL�!CSOPL�r�-L�!�9Sd|Y{�!CSOPL���-L�!�9Sd|Z��!CSOPL�k�-LX�9Sd|X��!CSOPLH��-LX�9Sd|Y�!CSOPL���-LX�9Sd|Z7�!CSOPL���-L�9Sd|Xf�!CSOPL��-L�9Sd|Y��!CSOPL���-L�9Sd|Z��!CSOPL���-L�
�9Sd|X��!CSOPLH��-L�
�9Sd|Y"�!CSOPL�t�-L�
�9Sd|ZQ�!CSOPL���-L��9Sd|X��!CSOPLh��-L��9Sd|Y��!CSOPL���-L��9Sd|Z��!CSOPL�-LX�9Sd|X
�!CSOPLX��-LX�9Sd|Y<�!CSOPLX�-LX�9Sd|Zk�!CSOPL���-Lx.�9Sd|X��!CSOPLX��-Lx.�9Sd|Y��!CSOPLQ�-Lx.�9Sd|Z��!CSOPL���-L�)�9Sd|X'�!CSOPLا�-L�)�9Sd|YV�!CSOPL�]�-L�)�9Sd|Z��!CSOPL���-L�$�9Sd|X��!CSOPL2�-L�$�9Sd|Y��!CSOPL���-L�$�9Sd|Z�!CSOPL���-L  �9Sd|XA�!CSOPLH��-L  �9Sd|Yp�!CSOPL��-L  �9Sd|Z��!CSOPL(��-L��9Sd|X��!CSOPL�-L��9Sd|Y��!CSOPL��-L��9Sd|Z,�!CSOPL���-LH�9Sd|X[�!CSOPL8l�-LH�9Sd|Y��!CSOPL��-LH�9Sd|Z��!CSOPL��-L��9Sd|X��!CSOPL8]�-L��9Sd|Y�!CSOPL8��-L��9Sd|ZF�!CSOPL�0�-Lp�9Sd|Xu�!CSOPL���-Lp�9Sd|Y��!CSOPLH��-Lp�9Sd|Z��!CSOPL���-L�9Sd|X�!CSOPL���-L�9Sd|Y1�!CSOPLX��-L�9Sd|Z`�!CSOPL���-L��9Sd|X��!CSOPLX!�-L��9Sd|Y��!CSOPLX��-L��9Sd|Z��!CSOPL��-L@3�9Sd|X�!CSOPL�Y�-L@3�9Sd|YK�!CSOPL(�-L@3�9Sd|Zz�!CSOPL8��-L�5�9Sd|X��!CSOPLh��-L�5�9Sd|Y��!CSOPLH\�-L�5�9Sd|Z�!CSOPL(��-L�8�9Sd|X6�!CSOPLȁ�-L�8�9Sd|Ye�!CSOPL8�-L�8�9Sd|Z��!CSOPL>�-Lh;�9Sd|X��!CSOPLx1�-Lh;�9Sd|Y��!CSOPLx��-Lh;�9Sd|Z!�!CSOPL�H�-L8>�9Sd|XP�!CSOPL���-L8>�9Sd|Y�!CSOPL���-L8>�9Sd|Z��Takes��4CurrentS/_27_a_U1_M_P_RunAvoid_ToRight_Both_Fb_p0_No_0_1��4TakeS/_27_a_U1_M_P_RunAvoid_ToRight_Both_Fb_p0_No_0_1x�8FileNameS3_27_a_U1_M_P_RunAvoid_ToRight_Both_Fb_p0_No_0_1.tak��	LocalTimeL(�Y�xL�G����
ReferenceTimeL(�Y�xL�G��������e�~��#p��Z�j���~���u�)

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

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